summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Alfredsen <loki_val@gentoo.org>2009-04-27 12:46:44 +0000
committerPeter Alfredsen <loki_val@gentoo.org>2009-04-27 12:46:44 +0000
commit6831b77b12267fbfe2f9451d04dd62620490607a (patch)
tree6c42b7c3cb5074e05381453b160caf408ba1f2d3 /dev-libs/libisofs
parentAdd a new revision of flickr using a manually-forged tarball, and add a fix f... (diff)
downloadgentoo-2-6831b77b12267fbfe2f9451d04dd62620490607a.tar.gz
gentoo-2-6831b77b12267fbfe2f9451d04dd62620490607a.tar.bz2
gentoo-2-6831b77b12267fbfe2f9451d04dd62620490607a.zip
Re-enable tests. This bump was supposed to have been for 0.6.18, but that version fails tests, see http://libburnia-project.org/ticket/147
(Portage version: 2.2_rc28/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/libisofs')
-rw-r--r--dev-libs/libisofs/ChangeLog9
-rw-r--r--dev-libs/libisofs/libisofs-0.6.16-r1.ebuild34
2 files changed, 42 insertions, 1 deletions
diff --git a/dev-libs/libisofs/ChangeLog b/dev-libs/libisofs/ChangeLog
index 46ff270959f7..7828b74cd1c5 100644
--- a/dev-libs/libisofs/ChangeLog
+++ b/dev-libs/libisofs/ChangeLog
@@ -1,6 +1,13 @@
# 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.29 2009/03/19 13:15:45 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libisofs/ChangeLog,v 1.30 2009/04/27 12:46:44 loki_val Exp $
+
+*libisofs-0.6.16-r1 (27 Apr 2009)
+
+ 27 Apr 2009; Peter Alfredsen <loki_val@gentoo.org>
+ +libisofs-0.6.16-r1.ebuild:
+ Re-enable tests. This bump was supposed to have been for 0.6.18, but that
+ version fails tests, see http://libburnia-project.org/ticket/147
19 Mar 2009; Brent Baude <ranger@gentoo.org> libisofs-0.6.12.ebuild:
Marking libisofs-0.6.12 ppc for bug 254947
diff --git a/dev-libs/libisofs/libisofs-0.6.16-r1.ebuild b/dev-libs/libisofs/libisofs-0.6.16-r1.ebuild
new file mode 100644
index 000000000000..8960650a02f4
--- /dev/null
+++ b/dev-libs/libisofs/libisofs-0.6.16-r1.ebuild
@@ -0,0 +1,34 @@
+# 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.16-r1.ebuild,v 1.1 2009/04/27 12:46:44 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="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"
+}