diff options
author | Aaron Walker <ka0ttic@gentoo.org> | 2005-06-22 15:58:58 +0000 |
---|---|---|
committer | Aaron Walker <ka0ttic@gentoo.org> | 2005-06-22 15:58:58 +0000 |
commit | 0c4290eac9ec201c3e40e2ec002fb3a699d6f979 (patch) | |
tree | e0de45f51431218a6afeec2e1120bdf9e5d1e3e0 /dev-libs/libevent/libevent-1.1a.ebuild | |
parent | Added to ~ppc (diff) | |
download | historical-0c4290eac9ec201c3e40e2ec002fb3a699d6f979.tar.gz historical-0c4290eac9ec201c3e40e2ec002fb3a699d6f979.tar.bz2 historical-0c4290eac9ec201c3e40e2ec002fb3a699d6f979.zip |
Version bump for bug 96700; Don't waste time building tests/examples. Also added a src_test so that the tests are actually run.
Package-Manager: portage-2.0.51.22-r1
Diffstat (limited to 'dev-libs/libevent/libevent-1.1a.ebuild')
-rw-r--r-- | dev-libs/libevent/libevent-1.1a.ebuild | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/dev-libs/libevent/libevent-1.1a.ebuild b/dev-libs/libevent/libevent-1.1a.ebuild new file mode 100644 index 000000000000..1682ea59aa3c --- /dev/null +++ b/dev-libs/libevent/libevent-1.1a.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-1.1a.ebuild,v 1.1 2005/06/22 15:58:58 ka0ttic Exp $ + +DESCRIPTION="A library to execute a function when a specific event occurs on a file descriptor" +HOMEPAGE="http://monkey.org/~provos/libevent/" +SRC_URI="http://monkey.org/~provos/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" +IUSE="" + +pkg_setup() { + prevver=$(best_version ${CATEGORY}/${PN}) +} + +src_unpack() { + unpack ${A} + cd ${S} + # don't waste time building tests/samples + sed -i 's|^\(SUBDIRS =.*\)sample test\(.*\)$|\1\2|' Makefile.in || \ + die "sed Makefile.in failed" +} + +src_test() { + einfo "Building tests" + cd test + make test || die "failed to build tests" + + einfo "Running tests" + ./test.sh > ${T}/tests + cat ${T}/tests + grep FAILED ${T}/tests &>/dev/null && die "1 or more tests failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + dodoc README +} + +pkg_postinst() { + local ver="${prevver##*/}" + if [[ -n "${ver}" ]] && [[ ${ver//[a-zA-Z-]} != "${PV//[a-zA-Z]}" ]] ; then + ewarn + ewarn "You will need to run revdep-rebuild (included with app-portage/gentoolkit)" + ewarn "to rebuild all packages that were built with libevent-1.0x." + ewarn + ewarn "Run the following to see which packages will be rebuilt:" + ewarn " revdep-rebuild --soname ${ver}.so.1 -p" + ewarn + ewarn "If you are satisfied with the output, re-run without the '-p' to rebuild." + ewarn + fi + unset prevver +} |