diff options
author | Stuart Herbert <stuart@gentoo.org> | 2004-08-15 15:41:43 +0000 |
---|---|---|
committer | Stuart Herbert <stuart@gentoo.org> | 2004-08-15 15:41:43 +0000 |
commit | ae9e19ce8567dcd5ba1333f55c2984d48d5b1154 (patch) | |
tree | 6a005a659612c226adcaeaef8969f4147fb77300 /www-apps/swish-e/swish-e-2.2.2-r1.ebuild | |
parent | Moved from net-www/scgi to www-apps/scgi (diff) | |
download | historical-ae9e19ce8567dcd5ba1333f55c2984d48d5b1154.tar.gz historical-ae9e19ce8567dcd5ba1333f55c2984d48d5b1154.tar.bz2 historical-ae9e19ce8567dcd5ba1333f55c2984d48d5b1154.zip |
Moved from net-www/swish-e to www-apps/swish-e.
Diffstat (limited to 'www-apps/swish-e/swish-e-2.2.2-r1.ebuild')
-rw-r--r-- | www-apps/swish-e/swish-e-2.2.2-r1.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/www-apps/swish-e/swish-e-2.2.2-r1.ebuild b/www-apps/swish-e/swish-e-2.2.2-r1.ebuild new file mode 100644 index 000000000000..296af6c94e89 --- /dev/null +++ b/www-apps/swish-e/swish-e-2.2.2-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apps/swish-e/swish-e-2.2.2-r1.ebuild,v 1.1 2004/08/15 15:41:43 stuart Exp $ + +use perl && inherit perl-module + +DESCRIPTION="Simple Web Indexing System for Humans - Enhanced" +HOMEPAGE="http://www.swish-e.org/" +SRC_URI="http://www.swish-e.org/Download/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" +IUSE="perl" + +DEPEND=">=sys-libs/zlib-1.1.3 + dev-libs/libxml2 + dev-perl/libwww-perl" + +src_compile() { + econf || die "configuration failed" + emake || die "emake failed" + + # closing stdin causes e-swish build system use a + # non-interactive mode <mkennedy@gentoo.org> + use perl && cd perl \ + && exec <&- \ + && perl-module_src_compile +} + +src_install() { + dobin src/swish-e || die + dodoc INSTALL README + use perl && cd perl \ + && perl-module_src_install +} |