summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeinrich Wendel <lanius@gentoo.org>2004-08-02 08:01:40 +0000
committerHeinrich Wendel <lanius@gentoo.org>2004-08-02 08:01:40 +0000
commitf42384761a42c8c7715cb4edfdaf08cfbdcddcf0 (patch)
tree5b449ea5a70f8259b58385af8df088fb82f194e9 /dev-cpp
parentadd xmms trackpos patch again, bug #57985 (diff)
downloadhistorical-f42384761a42c8c7715cb4edfdaf08cfbdcddcf0.tar.gz
historical-f42384761a42c8c7715cb4edfdaf08cfbdcddcf0.tar.bz2
historical-f42384761a42c8c7715cb4edfdaf08cfbdcddcf0.zip
emove old ebuilds; fix html documentation installation, bug #58063
Diffstat (limited to 'dev-cpp')
-rw-r--r--dev-cpp/commoncpp2/ChangeLog4
-rw-r--r--dev-cpp/commoncpp2/Manifest8
-rw-r--r--dev-cpp/commoncpp2/commoncpp2-1.0.12.ebuild45
-rw-r--r--dev-cpp/commoncpp2/commoncpp2-1.0.13.ebuild4
-rw-r--r--dev-cpp/commoncpp2/commoncpp2-1.0.9.ebuild45
-rw-r--r--dev-cpp/commoncpp2/files/digest-commoncpp2-1.0.121
-rw-r--r--dev-cpp/commoncpp2/files/digest-commoncpp2-1.0.91
7 files changed, 8 insertions, 100 deletions
diff --git a/dev-cpp/commoncpp2/ChangeLog b/dev-cpp/commoncpp2/ChangeLog
index e4ca8da50128..6d62c0dc0bb0 100644
--- a/dev-cpp/commoncpp2/ChangeLog
+++ b/dev-cpp/commoncpp2/ChangeLog
@@ -2,6 +2,10 @@
# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
# $Header:
+ 02 Aug 2004; Heinrich Wendel <lanius@gentoo.org> commoncpp2-1.0.12.ebuild,
+ commoncpp2-1.0.13.ebuild, commoncpp2-1.0.9.ebuild:
+ remove old ebuilds; fix html documentation installation, bug #58063
+
15 Mar 2004; Daniel Ahlberg <aliz@gentoo.org> commoncpp2-1.0.13.ebuild:
x86 unmask.
diff --git a/dev-cpp/commoncpp2/Manifest b/dev-cpp/commoncpp2/Manifest
index c7c47582959d..d65b00820faa 100644
--- a/dev-cpp/commoncpp2/Manifest
+++ b/dev-cpp/commoncpp2/Manifest
@@ -1,7 +1,3 @@
-MD5 84357e101819147aa0bfbacacaf254a7 commoncpp2-1.0.13.ebuild 1121
-MD5 8531f4cdb6e2f139a3bf77cc8eb15d00 commoncpp2-1.0.9.ebuild 1109
-MD5 143416c9b37f160b417826854efdae72 commoncpp2-1.0.12.ebuild 1121
-MD5 c5551468f0a5e11d0435b7f1947de9c1 ChangeLog 1326
-MD5 7c9a86d8c669237c73dc6a5427daf856 files/digest-commoncpp2-1.0.9 68
-MD5 4414fd7500e4bd6537c60b97372c3500 files/digest-commoncpp2-1.0.12 69
+MD5 58f592d2397f9eee18547c9a6207e8ec commoncpp2-1.0.13.ebuild 1118
+MD5 503b48166a00b6ac452cd038c32d5ab9 ChangeLog 1527
MD5 781ce9f97c4496dcb0ec078a74cba8d2 files/digest-commoncpp2-1.0.13 69
diff --git a/dev-cpp/commoncpp2/commoncpp2-1.0.12.ebuild b/dev-cpp/commoncpp2/commoncpp2-1.0.12.ebuild
deleted file mode 100644
index 7bf7d3c36348..000000000000
--- a/dev-cpp/commoncpp2/commoncpp2-1.0.12.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.0.12.ebuild,v 1.3 2004/06/24 21:47:53 agriffis Exp $
-
-IUSE="doc xml2"
-
-DESCRIPTION="GNU Common C++ is a C++ framework offering portable support for\
-threading, sockets, file access, daemons, persistence, serial I/O, XML parsing,\
-and system services"
-SRC_URI="mirror://gnu/commonc++/${P}.tar.gz"
-HOMEPAGE="http://www.gnu.org/software/commonc++/"
-
-DEPEND="xml2? ( dev-libs/libxml2 )
- doc? ( app-doc/doxygen )"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="x86"
-
-src_compile() {
- local myconf=""
-
- use xml2 \
- && myconf="${myconf} --with-xml" \
- || myconf="${myconf} --without-xml"
-
- econf ${myconf} --with-ftp || die "./configure failed"
-
- emake || die
-
- # kdoc disabled for now, it errors out
- use doc && make doxy
-}
-
-src_install () {
-
- einstall || die
-
- dodoc AUTHORS INSTALL NEWS ChangeLog README\
- THANKS TODO COPYING COPYING.addendum
-
- # Only install html docs
- # man and latex available, but seems a little wasteful
- use doc && dohtml docs/html/*
-}
diff --git a/dev-cpp/commoncpp2/commoncpp2-1.0.13.ebuild b/dev-cpp/commoncpp2/commoncpp2-1.0.13.ebuild
index dc77c6deeee6..16f3708a9165 100644
--- a/dev-cpp/commoncpp2/commoncpp2-1.0.13.ebuild
+++ b/dev-cpp/commoncpp2/commoncpp2-1.0.13.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.0.13.ebuild,v 1.4 2004/06/24 21:47:53 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.0.13.ebuild,v 1.5 2004/08/02 08:01:40 lanius Exp $
IUSE="doc xml2"
@@ -41,5 +41,5 @@ src_install () {
# Only install html docs
# man and latex available, but seems a little wasteful
- use doc && dohtml docs/html/*
+ use doc && dohtml doc/html/*
}
diff --git a/dev-cpp/commoncpp2/commoncpp2-1.0.9.ebuild b/dev-cpp/commoncpp2/commoncpp2-1.0.9.ebuild
deleted file mode 100644
index efbf696c8e17..000000000000
--- a/dev-cpp/commoncpp2/commoncpp2-1.0.9.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.0.9.ebuild,v 1.3 2004/06/24 21:47:53 agriffis Exp $
-
-IUSE="doc xml2"
-
-DESCRIPTION="GNU Common C++ is a C++ framework offering portable support for\
-threading, sockets, file access, daemons, persistence, serial I/O, XML parsing,\
-and system services"
-SRC_URI="mirror://gnu/commonc++/${P}.tar.gz"
-HOMEPAGE="http://www.gnu.org/software/commonc++/"
-
-DEPEND="xml2? ( dev-libs/libxml2 )
- doc? ( app-doc/doxygen )"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="x86"
-
-src_compile() {
- local myconf=""
-
- use xml2 \
- && myconf="${myconf} --with-xml" \
- || myconf="${myconf} --without-xml"
-
- econf ${myconf} || die "./configure failed"
-
- emake || die
-
- # kdoc disabled for now, it errors out
- use doc && make doxy
-}
-
-src_install () {
-
- einstall || die
-
- dodoc AUTHORS INSTALL NEWS ChangeLog README\
- THANKS TODO COPYING COPYING.addendum
-
- # Only install html docs
- # man and latex available, but seems a little wasteful
- use doc && dohtml docs/html/*
-}
diff --git a/dev-cpp/commoncpp2/files/digest-commoncpp2-1.0.12 b/dev-cpp/commoncpp2/files/digest-commoncpp2-1.0.12
deleted file mode 100644
index 3cb0cc8c03a1..000000000000
--- a/dev-cpp/commoncpp2/files/digest-commoncpp2-1.0.12
+++ /dev/null
@@ -1 +0,0 @@
-MD5 82ab4b53ca42490a5f06def587fc347d commoncpp2-1.0.12.tar.gz 719754
diff --git a/dev-cpp/commoncpp2/files/digest-commoncpp2-1.0.9 b/dev-cpp/commoncpp2/files/digest-commoncpp2-1.0.9
deleted file mode 100644
index 0b2a56379c96..000000000000
--- a/dev-cpp/commoncpp2/files/digest-commoncpp2-1.0.9
+++ /dev/null
@@ -1 +0,0 @@
-MD5 a2df94db6ef66312cc6dae513aa160dc commoncpp2-1.0.9.tar.gz 696130