summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEray Aslan <eras@gentoo.org>2014-06-16 09:59:29 +0000
committerEray Aslan <eras@gentoo.org>2014-06-16 09:59:29 +0000
commite5c41774a69593198992d6c0f84cf4064d85e4ad (patch)
tree09a088fdb615db5c59af616ecdea2b2524d4f3ed /dev-libs/libverto
parentfix #486186 (diff)
downloadgentoo-2-e5c41774a69593198992d6c0f84cf4064d85e4ad.tar.gz
gentoo-2-e5c41774a69593198992d6c0f84cf4064d85e4ad.tar.bz2
gentoo-2-e5c41774a69593198992d6c0f84cf4064d85e4ad.zip
Remove old
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x77F1F175586A3B1F)
Diffstat (limited to 'dev-libs/libverto')
-rw-r--r--dev-libs/libverto/ChangeLog5
-rw-r--r--dev-libs/libverto/libverto-0.2.4.ebuild60
2 files changed, 4 insertions, 61 deletions
diff --git a/dev-libs/libverto/ChangeLog b/dev-libs/libverto/ChangeLog
index ea3a711d35c6..cb82fe1137e2 100644
--- a/dev-libs/libverto/ChangeLog
+++ b/dev-libs/libverto/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libverto
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libverto/ChangeLog,v 1.25 2014/06/16 09:55:22 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libverto/ChangeLog,v 1.26 2014/06/16 09:59:29 eras Exp $
+
+ 16 Jun 2014; Eray Aslan <eras@gentoo.org> -libverto-0.2.4.ebuild:
+ Remove old
*libverto-0.2.6 (16 Jun 2014)
diff --git a/dev-libs/libverto/libverto-0.2.4.ebuild b/dev-libs/libverto/libverto-0.2.4.ebuild
deleted file mode 100644
index 8f68b7a74819..000000000000
--- a/dev-libs/libverto/libverto-0.2.4.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libverto/libverto-0.2.4.ebuild,v 1.6 2012/11/30 08:09:46 eras Exp $
-
-EAPI=4
-inherit autotools
-
-DESCRIPTION="Main event loop abstraction library"
-HOMEPAGE="https://fedorahosted.org/libverto/"
-SRC_URI="https://fedorahosted.org/releases/l/i/libverto/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~x86 ~amd64-fbsd"
-IUSE="glib +libev libevent tevent +threads static-libs"
-
-# file collisions
-DEPEND="!=app-crypt/mit-krb5-1.10.1-r0
- !=app-crypt/mit-krb5-1.10.1-r1
- !=app-crypt/mit-krb5-1.10.1-r2
- glib? ( >=dev-libs/glib-2.29 )
- libev? ( >=dev-libs/libev-4.11 )
- libevent? ( >=dev-libs/libevent-2.0 )
- tevent? ( sys-libs/tevent )"
-
-RDEPEND="${DEPEND}"
-
-REQUIRED_USE="|| ( glib libev libevent tevent ) "
-
-src_prepare() {
- if ! use static-libs; then
- sed -i -e 's/libverto.a/libverto.so/' tests/Makefile.{am,in} || die
- fi
- sed -i -e '/^AC_CHECK_LIB/i PKG_PROG_PKG_CONFIG' configure.ac || die
-
- # known problem uptream with tevent write test. tevent does not fire a
- # callback on error, but we explicitly test for this behaviour. Do not run
- # tevent tests for now.
- sed -i -e 's/def HAVE_TEVENT/ 0/' tests/test.h || die
-
- eautoreconf
-}
-
-src_configure() {
- econf \
- $(use_with glib) \
- $(use_with libev) \
- $(use_with libevent) \
- $(use_with tevent) \
- $(use_with threads pthread) \
- $(use_enable static-libs static)
-}
-
-src_install() {
- emake DESTDIR="${D}" install
-
- dodoc AUTHORS ChangeLog NEWS INSTALL README
-
- use static-libs || find "${D}" -name '*.la' -delete
-}