diff options
Diffstat (limited to 'net-libs/libwww/libwww-5.3.2-r1.ebuild')
-rw-r--r-- | net-libs/libwww/libwww-5.3.2-r1.ebuild | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/net-libs/libwww/libwww-5.3.2-r1.ebuild b/net-libs/libwww/libwww-5.3.2-r1.ebuild deleted file mode 100644 index a7c945830647..000000000000 --- a/net-libs/libwww/libwww-5.3.2-r1.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-libs/libwww/libwww-5.3.2-r1.ebuild,v 1.3 2002/06/19 20:37:04 seemant Exp $ - -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}.tar.gz" -HOMEPAGE="http://www.w3.org/Library/" - -SLOT="" - -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" - - use ssl && myconf="${myconf} --with-ssl" - - ./configure \ - --with-zlib \ - --with-md5 \ - --with-expat \ - ${myconf} || die - - emake || die - -} - -src_install () { - - make prefix=${D}/usr install || die - dodoc COPYRIGH ChangeLog - dohtml -r . - -} |