blob: 85a2e9fee907dc306b4fa8de7d2aa6c2e64cc06d (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-libs/soup/soup-0.5.1-r2.ebuild,v 1.3 2002/07/11 06:30:47 drobbins Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Soup is a SOAP implementation"
SRC_URI="ftp://ftp.gnome.org/pub/gnome/unstable/sources/soup/${P}.tar.gz"
HOMEPAGE="http://www.gnome.org/"
DEPEND=">=dev-util/pkgconfig-0.12.0
=dev-libs/glib-1.2*
>=dev-libs/libxml2-2.4.16
dev-libs/popt
ssl? ( dev-libs/openssl )
perl? ( >=dev-util/gtk-doc-0.9-r2 )"
src_compile() {
local myconf
use ssl && myconf="--enable-ssl" || myconf="--disable-ssl"
use doc && myconf="${myconf} --enable-gtk-doc" || myconf="${myconf} --disable-gtk-doc"
# there is a --enable-apache here.....
CFLAGS="${CFLAGS} -I/usr/include/libxml2/libxml"
CXXFLAGS="${CXXFLAGS} -I/usr/include/libxml2/libxml"
./configure --host=${CHOST} \
--prefix=/usr \
--sysconfdir=/etc \
--with-libxml=2 \
${myconf} \
--infodir=/usr/share/info \
--mandir=/usr/share/man || die
emake || die
}
src_install() {
make prefix=${D}/usr \
sysconfdir=${D}/etc \
infodir=${D}/usr/share/info \
mandir=${D}/usr/share/man \
install || die
dodoc AUTHORS ABOUT-NLS COPYING* ChangeLog README* INSTALL NEWS TODO
}
|