diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-07-17 06:28:54 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-07-17 06:28:54 +0000 |
commit | 2d2c2792ae7c7f159a2c3a24ebf90a0c67a0ac3c (patch) | |
tree | afd43ccd76ef8f84363647461d9d440a39b372ff /net-libs/soup/soup-0.5.1-r2.ebuild | |
parent | added php virtual (diff) | |
download | historical-2d2c2792ae7c7f159a2c3a24ebf90a0c67a0ac3c.tar.gz historical-2d2c2792ae7c7f159a2c3a24ebf90a0c67a0ac3c.tar.bz2 historical-2d2c2792ae7c7f159a2c3a24ebf90a0c67a0ac3c.zip |
repoman'd
Diffstat (limited to 'net-libs/soup/soup-0.5.1-r2.ebuild')
-rw-r--r-- | net-libs/soup/soup-0.5.1-r2.ebuild | 42 |
1 files changed, 22 insertions, 20 deletions
diff --git a/net-libs/soup/soup-0.5.1-r2.ebuild b/net-libs/soup/soup-0.5.1-r2.ebuild index 85a2e9fee907..aa0d6933f4b2 100644 --- a/net-libs/soup/soup-0.5.1-r2.ebuild +++ b/net-libs/soup/soup-0.5.1-r2.ebuild @@ -1,6 +1,6 @@ # 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 $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/soup/soup-0.5.1-r2.ebuild,v 1.4 2002/07/17 06:28:54 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="Soup is a SOAP implementation" @@ -8,26 +8,33 @@ 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 )" + =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 )" + +SLOT="0" +LICENSE="GPL-2 | LGPL-2" +KEYWORDS="x86" src_compile() { local myconf - use ssl && myconf="--enable-ssl" || myconf="--disable-ssl" - use doc && myconf="${myconf} --enable-gtk-doc" || myconf="${myconf} --disable-gtk-doc" + 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 + + econf \ + ${myconf} \ + --with-libxml=2 || die + emake || die } @@ -40,8 +47,3 @@ src_install() { dodoc AUTHORS ABOUT-NLS COPYING* ChangeLog README* INSTALL NEWS TODO } - - - - - |