summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Popov <pinkbyte@gentoo.org>2013-07-23 10:31:37 +0000
committerSergey Popov <pinkbyte@gentoo.org>2013-07-23 10:31:37 +0000
commit27f6ccbf15a9c53cb20a74c1f6a9698633a71481 (patch)
tree65f702222441f6254e7845ed5dbb4eab57df2add /dev-libs/libcoyotl
parentImport support for kmod tmpfiles.d static device node creation wrt #477856 by... (diff)
downloadgentoo-2-27f6ccbf15a9c53cb20a74c1f6a9698633a71481.tar.gz
gentoo-2-27f6ccbf15a9c53cb20a74c1f6a9698633a71481.tar.bz2
gentoo-2-27f6ccbf15a9c53cb20a74c1f6a9698633a71481.zip
Drop old revision
(Portage version: 2.2.0_alpha188/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
Diffstat (limited to 'dev-libs/libcoyotl')
-rw-r--r--dev-libs/libcoyotl/ChangeLog5
-rw-r--r--dev-libs/libcoyotl/libcoyotl-3.1.0.ebuild43
2 files changed, 4 insertions, 44 deletions
diff --git a/dev-libs/libcoyotl/ChangeLog b/dev-libs/libcoyotl/ChangeLog
index fe778d4dfb26..804593e6bef4 100644
--- a/dev-libs/libcoyotl/ChangeLog
+++ b/dev-libs/libcoyotl/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libcoyotl
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcoyotl/ChangeLog,v 1.19 2013/07/22 20:38:30 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcoyotl/ChangeLog,v 1.20 2013/07/23 10:31:37 pinkbyte Exp $
+
+ 23 Jul 2013; Sergey Popov <pinkbyte@gentoo.org> -libcoyotl-3.1.0.ebuild:
+ Drop old revision
22 Jul 2013; Agostino Sarubbo <ago@gentoo.org> libcoyotl-3.1.0-r2.ebuild:
Stable for ppc, wrt bug #474166
diff --git a/dev-libs/libcoyotl/libcoyotl-3.1.0.ebuild b/dev-libs/libcoyotl/libcoyotl-3.1.0.ebuild
deleted file mode 100644
index 526f03556430..000000000000
--- a/dev-libs/libcoyotl/libcoyotl-3.1.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcoyotl/libcoyotl-3.1.0.ebuild,v 1.5 2011/01/09 18:50:21 flameeyes Exp $
-
-inherit eutils autotools
-
-DESCRIPTION="A collection of portable C++ classes."
-HOMEPAGE="http://www.coyotegulch.com/products/libcoyotl/"
-SRC_URI="http://www.coyotegulch.com/distfiles/${P}.tar.gz"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="doc"
-
-RDEPEND="media-libs/libpng"
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen )"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}/${PV}-gcc-4.3.patch"
-
- eautoreconf
-}
-
-src_compile() {
- ac_cv_prog_HAVE_DOXYGEN="false" econf || die "econf failed"
- emake || die "emake failed"
-
- if use doc ; then
- cd docs
- doxygen libcoyotl.doxygen || die "generating docs failed"
- fi
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc AUTHORS ChangeLog NEWS README
- if use doc ; then
- dohtml docs/html/* || die
- fi
-}