blob: e6037edb7c08334f03c4442adefd075a87189b45 (
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
|
# Copyright 1999-2004 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.28.ebuild,v 1.3 2004/04/28 12:42:15 foser Exp $
inherit gnome.org libtool eutils
DESCRIPTION="Soup is a SOAP implementation"
HOMEPAGE="http://www.gnome.org/"
IUSE="gnutls"
SLOT="0"
LICENSE="LGPL-2"
KEYWORDS="x86 ~sparc ~ppc ~alpha ~hppa ~ia64 ~amd64"
RDEPEND=">=dev-libs/glib-2.0
!gnutls? ( dev-libs/openssl )
gnutls? ( net-libs/gnutls )"
DEPEND=">=dev-util/pkgconfig-0.12.0
dev-libs/popt
sys-devel/automake
sys-devel/autoconf
${RDEPEND}"
src_unpack() {
unpack ${A}
EPATCH_OPTS="-d ${S}" epatch ${FILESDIR}/${PN}-1.99.26-msn.patch
EPATCH_OPTS="-d ${S}" epatch ${FILESDIR}/${PN}-1.99.26-gnutls_1.0.patch
# added --with-ssl=openssl|gnutls to choose between the two.
export WANT_AUTOCONF=1.4
EPATCH_OPTS="-d ${S}" epatch ${FILESDIR}/${PN}-1.99.26-with_ssl.patch
cd ${S}; autoconf
}
src_compile() {
local myconf
elibtoolize
# current build system deems ssl as NOT AN OPTION.
# use ssl && myconf="--enable-ssl --enable-openssl"
use gnutls \
&& myconf="${myconf} --with-ssl=gnutls" \
|| myconf="${myconf} --with-ssl=openssl"
econf ${myconf} || die "configure failed"
emake || die "make failed"
}
src_install() {
einstall || die "install failed"
dodoc AUTHORS COPYING* ChangeLog README* TODO
}
|