diff options
author | Jeroen Roovers <jer@gentoo.org> | 2012-11-17 17:56:03 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2012-11-17 17:56:03 +0000 |
commit | c8688438c7916b82c1497a07f5b1fe8ec0579d3c (patch) | |
tree | d73e75a02b8c978c7eb4a3b57bd7c01e7eb3911a /dev-libs/libevent | |
parent | tidy last commit (diff) | |
download | gentoo-2-c8688438c7916b82c1497a07f5b1fe8ec0579d3c.tar.gz gentoo-2-c8688438c7916b82c1497a07f5b1fe8ec0579d3c.tar.bz2 gentoo-2-c8688438c7916b82c1497a07f5b1fe8ec0579d3c.zip |
Old.
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'dev-libs/libevent')
-rw-r--r-- | dev-libs/libevent/ChangeLog | 5 | ||||
-rw-r--r-- | dev-libs/libevent/libevent-2.0.18.ebuild | 53 |
2 files changed, 4 insertions, 54 deletions
diff --git a/dev-libs/libevent/ChangeLog b/dev-libs/libevent/ChangeLog index 3258cf5dd8aa..95f0dc8e48cb 100644 --- a/dev-libs/libevent/ChangeLog +++ b/dev-libs/libevent/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/libevent # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v 1.242 2012/11/16 22:15:02 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v 1.243 2012/11/17 17:56:03 jer Exp $ + + 17 Nov 2012; Jeroen Roovers <jer@gentoo.org> -libevent-2.0.18.ebuild: + Old. 16 Nov 2012; Agostino Sarubbo <ago@gentoo.org> libevent-2.0.20.ebuild: Stable for amd64, wrt bug #437766 diff --git a/dev-libs/libevent/libevent-2.0.18.ebuild b/dev-libs/libevent/libevent-2.0.18.ebuild deleted file mode 100644 index 1ec3c50beda7..000000000000 --- a/dev-libs/libevent/libevent-2.0.18.ebuild +++ /dev/null @@ -1,53 +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/libevent/libevent-2.0.18.ebuild,v 1.10 2012/06/17 17:59:25 armin76 Exp $ - -EAPI="2" - -inherit eutils libtool - -MY_P="${P}-stable" - -DESCRIPTION="A library to execute a function when a specific event occurs on a file descriptor" -HOMEPAGE="http://monkey.org/~provos/libevent/" -SRC_URI="mirror://sourceforge/levent/files/${MY_P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" -IUSE="+ssl static-libs test" - -DEPEND="ssl? ( dev-libs/openssl )" -RDEPEND=" - ${DEPEND} - !<=dev-libs/9libs-1.0 -" - -S=${WORKDIR}/${MY_P} - -src_prepare() { - elibtoolize - - # don't waste time building tests/samples - sed -i \ - -e 's|^\(SUBDIRS =.*\)sample test\(.*\)$|\1\2|' \ - Makefile.in || die "sed Makefile.in failed" -} - -src_configure() { - econf \ - $(use_enable static-libs static) \ - $(use_enable ssl openssl) -} - -src_test() { - emake -C test check | tee "${T}"/tests -} - -src_install() { - emake DESTDIR="${D}" install || die "make install failed" - dodoc README ChangeLog - if ! use static-libs; then - rm -f "${D}"/usr/lib*/libevent*.la - fi -} |