blob: 25e43f00bd6a95e25623f423b64dcd143bf9fa11 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/libsoup-1.99.22.ebuild,v 1.4 2003/09/11 01:25:54 msterret Exp $
#IUSE="ssl"
IUSE=""
inherit gnome.org libtool
S="${WORKDIR}/${P}"
DESCRIPTION="Soup is a SOAP implementation"
HOMEPAGE="http://www.gnome.org/"
SLOT="2"
RDEPEND=">=dev-libs/glib-2.0
dev-libs/openssl"
DEPEND=">=dev-util/pkgconfig-0.12.0
dev-libs/popt
${RDEPEND}"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="x86 ~sparc ~ppc ~alpha"
src_compile() {
elibtoolize
local myconf=""
# current build system deems ssl as NOT AN OPTION.
# use ssl && myconf="--enable-ssl --enable-openssl"
econf ${myconf} || die
emake || die
}
src_install() {
einstall || die
dodoc AUTHORS COPYING* ChangeLog README* TODO
}
|