Gentoo Archives: gentoo-commits

From: Daniel Pielmeier <billie@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libburn/
Date: Mon, 23 Oct 2017 19:03:33
Message-Id: 1508785400.6e95b4d1bec607238ad51cbd37646f1302010769.billie@gentoo
1 commit: 6e95b4d1bec607238ad51cbd37646f1302010769
2 Author: Daniel Pielmeier <billie <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 23 19:03:20 2017 +0000
4 Commit: Daniel Pielmeier <billie <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 23 19:03:20 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e95b4d1
7
8 dev-libs/libburn: Disable the use of cdio as recommended by upstream.
9
10 Package-Manager: Portage-2.3.8, Repoman-2.3.3
11
12 dev-libs/libburn/libburn-1.4.8-r1.ebuild | 38 ++++++++++++++++++++++++++++++++
13 1 file changed, 38 insertions(+)
14
15 diff --git a/dev-libs/libburn/libburn-1.4.8-r1.ebuild b/dev-libs/libburn/libburn-1.4.8-r1.ebuild
16 new file mode 100644
17 index 00000000000..f07d9a34228
18 --- /dev/null
19 +++ b/dev-libs/libburn/libburn-1.4.8-r1.ebuild
20 @@ -0,0 +1,38 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +
26 +DESCRIPTION="Open-source library for reading, mastering and writing optical discs"
27 +HOMEPAGE="https://dev.lovelyhq.com/libburnia/web/wikis/home"
28 +SRC_URI="http://files.libburnia-project.org/releases/${P}.tar.gz"
29 +
30 +LICENSE="GPL-2"
31 +SLOT="0"
32 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
33 +IUSE="debug static-libs track-src-odirect"
34 +
35 +RDEPEND=""
36 +DEPEND="$RDEPEND
37 + virtual/pkgconfig"
38 +
39 +src_configure() {
40 + econf \
41 + $(use_enable static-libs static) \
42 + $(use_enable track-src-odirect) \
43 + --disable-ldconfig-at-install \
44 + $(use_enable debug)
45 +}
46 +
47 +src_install() {
48 + default
49 +
50 + dodoc CONTRIBUTORS doc/{comments,*.txt}
51 +
52 + docinto cdrskin
53 + dodoc cdrskin/{*.txt,README}
54 + docinto cdrskin/html
55 + dodoc cdrskin/cdrskin_eng.html
56 +
57 + find "${D}" -name '*.la' -delete || die
58 +}