summaryrefslogtreecommitdiff
blob: 5baf45d611308285bd49ce8087e17e61fa49ae39 (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.23.ebuild,v 1.1 2003/06/10 13:50:53 liquidx 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
}