diff options
author | Jeroen Roovers <jer@gentoo.org> | 2015-01-16 09:12:08 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2015-01-16 09:12:08 +0000 |
commit | d65568f1d6d38a7b7662b34067c93f1515e987fa (patch) | |
tree | 3c1c8a5880591afbd2eded260b17d472a9dc7d0e /dev-libs/libevent | |
parent | alpha/ia64/sparc/x86 stable wrt #524436 (diff) | |
download | gentoo-2-d65568f1d6d38a7b7662b34067c93f1515e987fa.tar.gz gentoo-2-d65568f1d6d38a7b7662b34067c93f1515e987fa.tar.bz2 gentoo-2-d65568f1d6d38a7b7662b34067c93f1515e987fa.zip |
Old.
(Portage version: 2.2.15/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.21-r1.ebuild | 60 |
2 files changed, 4 insertions, 61 deletions
diff --git a/dev-libs/libevent/ChangeLog b/dev-libs/libevent/ChangeLog index c33b4937184d..9bf868c4bda5 100644 --- a/dev-libs/libevent/ChangeLog +++ b/dev-libs/libevent/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/libevent # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v 1.292 2015/01/16 08:08:37 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v 1.293 2015/01/16 09:12:08 jer Exp $ + + 16 Jan 2015; Jeroen Roovers <jer@gentoo.org> -libevent-2.0.21-r1.ebuild: + Old. 16 Jan 2015; Agostino Sarubbo <ago@gentoo.org> libevent-2.0.22.ebuild: Stable for ia64, wrt bug #535774 diff --git a/dev-libs/libevent/libevent-2.0.21-r1.ebuild b/dev-libs/libevent/libevent-2.0.21-r1.ebuild deleted file mode 100644 index b1330f440aac..000000000000 --- a/dev-libs/libevent/libevent-2.0.21-r1.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.21-r1.ebuild,v 1.13 2015/01/06 10:39:56 jer Exp $ - -EAPI=5 -inherit eutils libtool multilib-minimal - -MY_P="${P}-stable" - -DESCRIPTION="A library to execute a function when a specific event occurs on a file descriptor" -HOMEPAGE="http://libevent.org/" -SRC_URI="mirror://sourceforge/levent/files/${MY_P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" -IUSE="+ssl static-libs test +threads" - -DEPEND="ssl? ( >=dev-libs/openssl-1.0.1h-r2[${MULTILIB_USEDEP}] )" -RDEPEND=" - ${DEPEND} - !<=dev-libs/9libs-1.0 -" - -MULTILIB_WRAPPED_HEADERS=( - /usr/include/event2/event-config.h -) - -S=${WORKDIR}/${MY_P} - -DOCS=( README ChangeLog ) - -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" -} - -multilib_src_configure() { - ECONF_SOURCE="${S}" \ - econf \ - $(use_enable ssl openssl) \ - $(use_enable static-libs static) \ - $(use_enable threads thread-support) -} - -src_test() { - # The test suite doesn't quite work (see bug #406801 for the latest - # installment in a riveting series of reports). - : - # emake -C test check | tee "${T}"/tests -} - -multilib_src_install_all() { - einstalldocs - prune_libtool_files -} |