diff options
author | Peter Alfredsen <loki_val@gentoo.org> | 2009-04-27 19:36:45 +0000 |
---|---|---|
committer | Peter Alfredsen <loki_val@gentoo.org> | 2009-04-27 19:36:45 +0000 |
commit | b452195b50fda14a5b132c9ab057f637d6ee2c5d (patch) | |
tree | d540aea665255bf31df3815b0c5dee3134e0b252 /dev-libs/libisofs | |
parent | remove --strict, gentoolkit-dev downgraded and doesn't know this option anymore (diff) | |
download | gentoo-2-b452195b50fda14a5b132c9ab057f637d6ee2c5d.tar.gz gentoo-2-b452195b50fda14a5b132c9ab057f637d6ee2c5d.tar.bz2 gentoo-2-b452195b50fda14a5b132c9ab057f637d6ee2c5d.zip |
Good to bump w/out working tests per http://libburnia-project.org/ticket/147#comment:4. Thanks to Daniel Pielmeier for judicious use of the cattle-prod.
(Portage version: 2.2_rc28/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/libisofs')
-rw-r--r-- | dev-libs/libisofs/ChangeLog | 10 | ||||
-rw-r--r-- | dev-libs/libisofs/libisofs-0.6.18.ebuild | 44 |
2 files changed, 53 insertions, 1 deletions
diff --git a/dev-libs/libisofs/ChangeLog b/dev-libs/libisofs/ChangeLog index 7828b74cd1c5..63a8ccfaa9b2 100644 --- a/dev-libs/libisofs/ChangeLog +++ b/dev-libs/libisofs/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for dev-libs/libisofs # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libisofs/ChangeLog,v 1.30 2009/04/27 12:46:44 loki_val Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libisofs/ChangeLog,v 1.31 2009/04/27 19:36:45 loki_val Exp $ + +*libisofs-0.6.18 (27 Apr 2009) + + 27 Apr 2009; Peter Alfredsen <loki_val@gentoo.org> + +libisofs-0.6.18.ebuild: + Good to bump w/out working tests per + http://libburnia-project.org/ticket/147#comment:4. Thanks to Daniel + Pielmeier for judicious use of the cattle-prod. *libisofs-0.6.16-r1 (27 Apr 2009) diff --git a/dev-libs/libisofs/libisofs-0.6.18.ebuild b/dev-libs/libisofs/libisofs-0.6.18.ebuild new file mode 100644 index 000000000000..7122d83f31d9 --- /dev/null +++ b/dev-libs/libisofs/libisofs-0.6.18.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libisofs/libisofs-0.6.18.ebuild,v 1.1 2009/04/27 19:36:45 loki_val Exp $ + +EAPI=2 + +DESCRIPTION="libisofs is an open-source library for reading, mastering and writing optical discs." +HOMEPAGE="http://libburnia-project.org/" +SRC_URI="http://files.libburnia-project.org/releases/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="" +#IUSE="test" + +# http://libburnia-project.org/ticket/147#comment:4 +# Currently the tests are outdated. The time needed to repair the problematic code +# in test_rockridge.c would be better invested in re-arranging the test suit +# around the official libisofs API. Everybody seems busy with other things, +# though. +# +# So it is best to disable test/test until its fate is decided. +RESTRICT="test" + +RDEPEND="" +DEPEND="${RDEPEND} + dev-util/pkgconfig" +# test? ( >=dev-util/cunit-2.1 )" + +src_configure() { + econf --disable-static +} + +src_test() { + emake check || die "building tests failed" + test/test || die "running tests failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS README NEWS Roadmap TODO + find "${D}" -name '*.la' -exec rm -rf '{}' '+' || die "la removal failed" +} |