Gentoo Archives: gentoo-commits

From: "Peter Alfredsen (loki_val)" <loki_val@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libisofs: libisofs-0.6.18.ebuild ChangeLog
Date: Mon, 27 Apr 2009 19:36:47
Message-Id: E1LyWdB-00070T-D5@stork.gentoo.org
1 loki_val 09/04/27 19:36:45
2
3 Modified: ChangeLog
4 Added: libisofs-0.6.18.ebuild
5 Log:
6 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.
7 (Portage version: 2.2_rc28/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.31 dev-libs/libisofs/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libisofs/ChangeLog?rev=1.31&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libisofs/ChangeLog?rev=1.31&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libisofs/ChangeLog?r1=1.30&r2=1.31
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libisofs/ChangeLog,v
19 retrieving revision 1.30
20 retrieving revision 1.31
21 diff -u -r1.30 -r1.31
22 --- ChangeLog 27 Apr 2009 12:46:44 -0000 1.30
23 +++ ChangeLog 27 Apr 2009 19:36:45 -0000 1.31
24 @@ -1,6 +1,14 @@
25 # ChangeLog for dev-libs/libisofs
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libisofs/ChangeLog,v 1.30 2009/04/27 12:46:44 loki_val Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libisofs/ChangeLog,v 1.31 2009/04/27 19:36:45 loki_val Exp $
29 +
30 +*libisofs-0.6.18 (27 Apr 2009)
31 +
32 + 27 Apr 2009; Peter Alfredsen <loki_val@g.o>
33 + +libisofs-0.6.18.ebuild:
34 + Good to bump w/out working tests per
35 + http://libburnia-project.org/ticket/147#comment:4. Thanks to Daniel
36 + Pielmeier for judicious use of the cattle-prod.
37
38 *libisofs-0.6.16-r1 (27 Apr 2009)
39
40
41
42
43 1.1 dev-libs/libisofs/libisofs-0.6.18.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libisofs/libisofs-0.6.18.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libisofs/libisofs-0.6.18.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libisofs-0.6.18.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $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 $
53
54 EAPI=2
55
56 DESCRIPTION="libisofs is an open-source library for reading, mastering and writing optical discs."
57 HOMEPAGE="http://libburnia-project.org/"
58 SRC_URI="http://files.libburnia-project.org/releases/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
63 IUSE=""
64 #IUSE="test"
65
66 # http://libburnia-project.org/ticket/147#comment:4
67 # Currently the tests are outdated. The time needed to repair the problematic code
68 # in test_rockridge.c would be better invested in re-arranging the test suit
69 # around the official libisofs API. Everybody seems busy with other things,
70 # though.
71 #
72 # So it is best to disable test/test until its fate is decided.
73 RESTRICT="test"
74
75 RDEPEND=""
76 DEPEND="${RDEPEND}
77 dev-util/pkgconfig"
78 # test? ( >=dev-util/cunit-2.1 )"
79
80 src_configure() {
81 econf --disable-static
82 }
83
84 src_test() {
85 emake check || die "building tests failed"
86 test/test || die "running tests failed"
87 }
88
89 src_install() {
90 emake DESTDIR="${D}" install || die "emake install failed"
91 dodoc AUTHORS README NEWS Roadmap TODO
92 find "${D}" -name '*.la' -exec rm -rf '{}' '+' || die "la removal failed"
93 }