Gentoo Archives: gentoo-commits

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