diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-03-07 20:55:19 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-03-07 20:55:19 +0000 |
commit | 80689e9dae7f5d18b6f1cc8b077482fbedbc4595 (patch) | |
tree | 263e5212a4ad97c65a58c3548f847bbcd9412d5e /net-libs/libwww | |
parent | move to stable (diff) | |
download | historical-80689e9dae7f5d18b6f1cc8b077482fbedbc4595.tar.gz historical-80689e9dae7f5d18b6f1cc8b077482fbedbc4595.tar.bz2 historical-80689e9dae7f5d18b6f1cc8b077482fbedbc4595.zip |
cleanup
Diffstat (limited to 'net-libs/libwww')
-rw-r--r-- | net-libs/libwww/files/digest-libwww-5.4.0 | 1 | ||||
-rw-r--r-- | net-libs/libwww/libwww-5.4.0.ebuild | 56 |
2 files changed, 0 insertions, 57 deletions
diff --git a/net-libs/libwww/files/digest-libwww-5.4.0 b/net-libs/libwww/files/digest-libwww-5.4.0 deleted file mode 100644 index f875bc95b421..000000000000 --- a/net-libs/libwww/files/digest-libwww-5.4.0 +++ /dev/null @@ -1 +0,0 @@ -MD5 c3734ca6caa405707e134cc8c6d7e422 w3c-libwww-5.4.0.tgz 1129121 diff --git a/net-libs/libwww/libwww-5.4.0.ebuild b/net-libs/libwww/libwww-5.4.0.ebuild deleted file mode 100644 index 3fea29db3f42..000000000000 --- a/net-libs/libwww/libwww-5.4.0.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libwww/libwww-5.4.0.ebuild,v 1.10 2003/02/13 14:20:21 vapier Exp $ - -IUSE="ssl mysql" - -inherit libtool - -MY_P=w3c-${P} -S=${WORKDIR}/${MY_P} -DESCRIPTION="A general-purpose client side WEB API" -SRC_URI="http://www.w3.org/Library/Distribution/${MY_P}.tgz" -HOMEPAGE="http://www.w3.org/Library/" - -SLOT="0" -LICENSE="W3C" -KEYWORDS="x86 ppc sparc " - - -DEPEND="sys-devel/perl - >=sys-libs/zlib-1.1.4 - mysql? ( >=dev-db/mysql-3.23.26 ) - ssl? ( >=dev-libs/openssl-0.9.6 )" - -src_compile() { - - local myconf - - use mysql \ - && myconf="--with-mysql" \ - || myconf="--without-mysql" - - use ssl \ - && myconf="${myconf} --with-ssl" \ - || myconf="${myconf} --without-ssl" - - elibtoolize - - ./configure \ - --with-prefix=/usr \ - --with-zlib \ - --with-md5 \ - --with-expat \ - ${myconf} || die - - emake || die - -} - -src_install () { - - make prefix=${D}/usr install || die - dodoc COPYRIGH ChangeLog - dohtml -r . - -} |