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: libisofs-0.6.22.ebuild ChangeLog
Date: Wed, 02 Sep 2009 12:37:03
Message-Id: E1Mittv-00045a-TZ@stork.gentoo.org
1 billie 09/09/02 17:45:43
2
3 Modified: ChangeLog
4 Added: libisofs-0.6.22.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.1.6.13/cvs/Linux i686)
8
9 Revision Changes Path
10 1.38 dev-libs/libisofs/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libisofs/ChangeLog?rev=1.38&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libisofs/ChangeLog?rev=1.38&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libisofs/ChangeLog?r1=1.37&r2=1.38
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libisofs/ChangeLog,v
19 retrieving revision 1.37
20 retrieving revision 1.38
21 diff -u -r1.37 -r1.38
22 --- ChangeLog 30 Aug 2009 16:14:58 -0000 1.37
23 +++ ChangeLog 2 Sep 2009 17:45:43 -0000 1.38
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.37 2009/08/30 16:14:58 klausman Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libisofs/ChangeLog,v 1.38 2009/09/02 17:45:43 billie Exp $
29 +
30 +*libisofs-0.6.22 (02 Sep 2009)
31 +
32 + 02 Sep 2009; Pielmeier Daniel <billie@g.o> +libisofs-0.6.22.ebuild:
33 + Version bump.
34
35 30 Aug 2009; Tobias Klausmann <klausman@g.o>
36 libisofs-0.6.20-r1.ebuild:
37
38
39
40 1.1 dev-libs/libisofs/libisofs-0.6.22.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libisofs/libisofs-0.6.22.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libisofs/libisofs-0.6.22.ebuild?rev=1.1&content-type=text/plain
44
45 Index: libisofs-0.6.22.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.22.ebuild,v 1.1 2009/09/02 17:45:43 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 ~hppa ~ppc ~ppc64 ~x86"
60 IUSE="acl xattr zlib"
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="acl? ( virtual/acl )
73 xattr? ( sys-apps/attr )
74 zlib? ( sys-libs/zlib )"
75 DEPEND="${RDEPEND}
76 dev-util/pkgconfig"
77 # test? ( >=dev-util/cunit-2.1 )"
78
79 src_configure() {
80 econf --disable-static \
81 $(use_enable acl libacl) \
82 $(use_enable xattr) \
83 $(use_enable zlib)
84 }
85
86 src_test() {
87 emake check || die "building tests failed"
88 test/test || die "running tests failed"
89 }
90
91 src_install() {
92 emake DESTDIR="${D}" install || die "emake install failed"
93 dodoc AUTHORS README NEWS Roadmap TODO
94 find "${D}" -name '*.la' -exec rm -rf '{}' '+' || die "la removal failed"
95 }