# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/clearsilver/clearsilver-0.10.2.ebuild,v 1.2 2006/06/26 03:19:13 the_paya Exp $ # Please note: apache, java, mono and ruby support disabled for now. # Fill a bug if you need it. # # dju@gentoo.org, 4th July 2005 inherit eutils perl-app DESCRIPTION="Clearsilver is a fast, powerful, and language-neutral HTML template system." HOMEPAGE="http://www.clearsilver.net/" SRC_URI="http://www.clearsilver.net/downloads/${P}.tar.gz" LICENSE="CS-1.0" SLOT="0" KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd" IUSE="perl python zlib" DEPEND="python? ( dev-lang/python ) perl? ( dev-lang/perl ) zlib? ( sys-libs/zlib )" # ruby? ( dev-lang/ruby ) # java? ( virtual/jdk ) DOCS="README INSTALL" if use python ; then DOCS="${DOCS} README.python" fi src_unpack () { unpack ${A} cd ${S} # fix typo in configure sed -i s,\$\?PYTHON_SITE,\$PYTHON_SITE, configure || die "sed failed" epatch "${FILESDIR}"/clearsilver-0.10.2-r1-python-2.5-compat.patch } src_compile() { econf \ $(use_enable perl) \ $(use_enable python) \ $(use_enable zlib compression) \ "--disable-apache" \ "--disable-ruby" \ "--disable-java" \ "--disable-csharp" \ || die "./configure failed" emake || die "emake failed" } src_install () { cd ${S} make DESTDIR=${D} install || die "make install failed" dodoc ${DOCS} || die "dodoc failed" if use perl ; then fixlocalpod || die "fixlocalpod failed" fi }