blob: 71b7bd6a50a3b9ef777a8d17942e2f6da457280f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# 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-r1.ebuild,v 1.15 2003/10/02 10:08:47 usata 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 alpha hppa amd64"
RDEPEND="dev-lang/perl
>=sys-libs/zlib-1.1.4
mysql? ( >=dev-db/mysql-3.23.26 )
ssl? ( >=dev-libs/openssl-0.9.6 )"
DEPEND="!dev-libs/9libs
>=sys-devel/autoconf-2.13
${RDEPEND}"
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${P}-gentoo.diff
}
src_compile() {
local myconf
use mysql \
&& myconf="--with-mysql" \
|| myconf="--without-mysql"
use ssl \
&& myconf="${myconf} --with-ssl" \
|| myconf="${myconf} --without-ssl"
elibtoolize
./configure \
--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 .
}
|