summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlastair Tse <liquidx@gentoo.org>2003-04-28 23:46:18 +0000
committerAlastair Tse <liquidx@gentoo.org>2003-04-28 23:46:18 +0000
commit1a5cbf28f75fe4379d7ac02d112c0aed4e3af90a (patch)
tree4cfd928461c765eae76c56a6b555854f06046328 /net-libs/soup
parentspring cleaning! and bump 1.1.10 to stable x86 (diff)
downloadhistorical-1a5cbf28f75fe4379d7ac02d112c0aed4e3af90a.tar.gz
historical-1a5cbf28f75fe4379d7ac02d112c0aed4e3af90a.tar.bz2
historical-1a5cbf28f75fe4379d7ac02d112c0aed4e3af90a.zip
clean old ebuilds. bumped 0.7.11 to stable x86
Diffstat (limited to 'net-libs/soup')
-rw-r--r--net-libs/soup/ChangeLog5
-rw-r--r--net-libs/soup/Manifest7
-rw-r--r--net-libs/soup/files/digest-soup-0.5.1-r21
-rw-r--r--net-libs/soup/files/digest-soup-0.7.41
-rw-r--r--net-libs/soup/soup-0.5.1-r2.ebuild47
-rw-r--r--net-libs/soup/soup-0.7.11.ebuild4
-rw-r--r--net-libs/soup/soup-0.7.4.ebuild51
7 files changed, 13 insertions, 103 deletions
diff --git a/net-libs/soup/ChangeLog b/net-libs/soup/ChangeLog
index e3508416bc8e..20b341d1f5d3 100644
--- a/net-libs/soup/ChangeLog
+++ b/net-libs/soup/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/soup
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/soup/ChangeLog,v 1.16 2003/04/10 06:17:55 vladimir Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/soup/ChangeLog,v 1.17 2003/04/28 23:45:54 liquidx Exp $
+
+ 29 Apr 2003; Alastair Tse <liquidx@gentoo.org> soup-0.7.11.ebuild:
+ bump 0.7.11 to stable
*soup-0.7.11 (04 Mar 2003)
diff --git a/net-libs/soup/Manifest b/net-libs/soup/Manifest
new file mode 100644
index 000000000000..5cc9d8b96308
--- /dev/null
+++ b/net-libs/soup/Manifest
@@ -0,0 +1,7 @@
+MD5 33995f35a1e6de1561bc3e9906092521 ChangeLog 1793
+MD5 950ba25cb5178b4689554d23cad70503 soup-0.7.10.ebuild 1130
+MD5 b3e73defb6365c0ae296ca543e7d1e7f soup-0.7.4-r1.ebuild 1124
+MD5 7327685b6e4a413c111aae7155470a40 soup-0.7.11.ebuild 1130
+MD5 f55a1da1657ca61048fb28258f3a4aef files/digest-soup-0.7.10 126
+MD5 291975cff852179904f6f3d1db52aead files/digest-soup-0.7.4-r1 63
+MD5 37f9be1ab2386e2eed241a1d0ea33dfd files/digest-soup-0.7.11 64
diff --git a/net-libs/soup/files/digest-soup-0.5.1-r2 b/net-libs/soup/files/digest-soup-0.5.1-r2
deleted file mode 100644
index d1929e6f90a8..000000000000
--- a/net-libs/soup/files/digest-soup-0.5.1-r2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 3890d3ea50a61e4eb576b18e60668dc0 soup-0.5.1.tar.gz 346718
diff --git a/net-libs/soup/files/digest-soup-0.7.4 b/net-libs/soup/files/digest-soup-0.7.4
deleted file mode 100644
index 3fe03db237c2..000000000000
--- a/net-libs/soup/files/digest-soup-0.7.4
+++ /dev/null
@@ -1 +0,0 @@
-MD5 848ccf5e7616cd897593bab72bbc9b5a soup-0.7.4.tar.bz2 309489
diff --git a/net-libs/soup/soup-0.5.1-r2.ebuild b/net-libs/soup/soup-0.5.1-r2.ebuild
deleted file mode 100644
index d8a83c435b87..000000000000
--- a/net-libs/soup/soup-0.5.1-r2.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/soup/soup-0.5.1-r2.ebuild,v 1.11 2003/02/13 14:21:52 vapier Exp $
-
-IUSE="ssl doc perl"
-
-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 )"
-
-SLOT="0"
-LICENSE="GPL-2 | LGPL-2"
-KEYWORDS="x86 sparc ppc"
-
-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"
-
- econf \
- ${myconf} \
- --with-libxml=2 || die
-
- emake || die
-}
-
-src_install() {
- einstall || die
-
- dodoc AUTHORS ABOUT-NLS COPYING* ChangeLog README* INSTALL NEWS TODO
-}
diff --git a/net-libs/soup/soup-0.7.11.ebuild b/net-libs/soup/soup-0.7.11.ebuild
index 0f4e940fec91..3429d6127ae7 100644
--- a/net-libs/soup/soup-0.7.11.ebuild
+++ b/net-libs/soup/soup-0.7.11.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/soup/soup-0.7.11.ebuild,v 1.1 2003/03/04 18:35:19 liquidx Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/soup/soup-0.7.11.ebuild,v 1.2 2003/04/28 23:45:54 liquidx Exp $
IUSE="ssl doc"
@@ -19,7 +19,7 @@ DEPEND=">=dev-util/pkgconfig-0.12.0
LICENSE="GPL-2 | LGPL-2"
SLOT="0"
-KEYWORDS="~x86 ~sparc ~ppc ~alpha"
+KEYWORDS="x86 ~sparc ~ppc ~alpha"
src_compile() {
elibtoolize
diff --git a/net-libs/soup/soup-0.7.4.ebuild b/net-libs/soup/soup-0.7.4.ebuild
deleted file mode 100644
index 9461f8ec8c64..000000000000
--- a/net-libs/soup/soup-0.7.4.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/soup/soup-0.7.4.ebuild,v 1.7 2003/02/13 14:22:10 vapier Exp $
-
-IUSE="ssl doc"
-
-inherit gnome.org libtool
-
-S=${WORKDIR}/${P}
-DESCRIPTION="Soup is a SOAP implementation"
-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 )
- doc? ( >=dev-util/gtk-doc-0.9-r2 )"
-
-LICENSE="GPL-2 | LGPL-2"
-SLOT="0"
-KEYWORDS="x86 sparc ppc"
-
-src_compile() {
- elibtoolize
-
- 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.....
-
- econf \
- ${myconf} \
- --with-libxml=2 || die
-
- # dont always work with -j4 -- <azarah@gentoo.org> 9 Nov 2002
- make || die
-}
-
-src_install() {
- einstall || die
-
- dodoc AUTHORS ABOUT-NLS COPYING* ChangeLog README* INSTALL NEWS TODO
-}
-