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/libburn: libburn-1.1.8.ebuild ChangeLog libburn-1.1.4.ebuild
Date: Mon, 21 Nov 2011 17:31:38
Message-Id: 20111121173115.908E62004B@flycatcher.gentoo.org
1 billie 11/11/21 17:31:15
2
3 Modified: ChangeLog
4 Added: libburn-1.1.8.ebuild
5 Removed: libburn-1.1.4.ebuild
6 Log:
7 Version bump. Remove old.
8
9 (Portage version: 2.1.10.36/cvs/Linux i686)
10
11 Revision Changes Path
12 1.102 dev-libs/libburn/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libburn/ChangeLog?rev=1.102&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libburn/ChangeLog?rev=1.102&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libburn/ChangeLog?r1=1.101&r2=1.102
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libburn/ChangeLog,v
21 retrieving revision 1.101
22 retrieving revision 1.102
23 diff -u -r1.101 -r1.102
24 --- ChangeLog 18 Oct 2011 18:41:04 -0000 1.101
25 +++ ChangeLog 21 Nov 2011 17:31:15 -0000 1.102
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-libs/libburn
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libburn/ChangeLog,v 1.101 2011/10/18 18:41:04 billie Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libburn/ChangeLog,v 1.102 2011/11/21 17:31:15 billie Exp $
31 +
32 +*libburn-1.1.8 (21 Nov 2011)
33 +
34 + 21 Nov 2011; Daniel Pielmeier <billie@g.o> -libburn-1.1.4.ebuild,
35 + +libburn-1.1.8.ebuild:
36 + Version bump. Remove old.
37
38 *libburn-1.1.6 (18 Oct 2011)
39
40
41
42
43 1.1 dev-libs/libburn/libburn-1.1.8.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libburn/libburn-1.1.8.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libburn/libburn-1.1.8.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libburn-1.1.8.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libburn/libburn-1.1.8.ebuild,v 1.1 2011/11/21 17:31:15 billie Exp $
53
54 EAPI=4
55
56 DESCRIPTION="Libburn 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="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
63 IUSE="debug static-libs track-src-odirect"
64 #IUSE="cdio debug static-libs track-src-odirect"
65 #Supports libcdio but needs version >=0.83 which is not yet released.
66
67 RDEPEND=""
68 #RDEPEND="cdio? ( >=dev-libs/libcdio-0.83 )"
69 DEPEND="dev-util/pkgconfig"
70
71 src_configure() {
72 econf \
73 $(use_enable static-libs static) \
74 $(use_enable track-src-odirect) \
75 --disable-libcdio \
76 --disable-ldconfig-at-install \
77 $(use_enable debug)
78 # $(use_enable cdio libcdio) \
79 }
80
81 src_install() {
82 default
83
84 dodoc CONTRIBUTORS doc/comments
85
86 cd "${S}"/cdrskin
87 docinto cdrskin
88 dodoc changelog.txt README wiki_plain.txt
89 docinto cdrskin/html
90 dohtml cdrskin_eng.html
91
92 find "${D}" -name '*.la' -exec rm -rf '{}' '+' || die "la removal failed"
93 }