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, 12 Feb 2018 19:12:39
Message-Id: 1518462743.55b96c727287728374a11de48028112417dbded5.billie@gentoo
1 commit: 55b96c727287728374a11de48028112417dbded5
2 Author: Daniel Pielmeier <billie <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 12 19:11:59 2018 +0000
4 Commit: Daniel Pielmeier <billie <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 12 19:12:23 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55b96c72
7
8 dev-libs/libburn: Revision bump.
9
10 Remove the track-src-odirect USE flag. This flag causes burn failures
11 when reading from a data file.
12 More information at https://bugs.kde.org/show_bug.cgi?id=257602
13
14 Package-Manager: Portage-2.3.19, Repoman-2.3.6
15 RepoMan-Options: --force
16
17 dev-libs/libburn/libburn-1.4.8-r2.ebuild | 37 ++++++++++++++++++++++++++++++++
18 1 file changed, 37 insertions(+)
19
20 diff --git a/dev-libs/libburn/libburn-1.4.8-r2.ebuild b/dev-libs/libburn/libburn-1.4.8-r2.ebuild
21 new file mode 100644
22 index 00000000000..e18746798c9
23 --- /dev/null
24 +++ b/dev-libs/libburn/libburn-1.4.8-r2.ebuild
25 @@ -0,0 +1,37 @@
26 +# Copyright 1999-2018 Gentoo Foundation
27 +# Distributed under the terms of the GNU General Public License v2
28 +
29 +EAPI=6
30 +
31 +DESCRIPTION="Open-source library for reading, mastering and writing optical discs"
32 +HOMEPAGE="https://dev.lovelyhq.com/libburnia/web/wikis/home"
33 +SRC_URI="http://files.libburnia-project.org/releases/${P}.tar.gz"
34 +
35 +LICENSE="GPL-2"
36 +SLOT="0"
37 +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86"
38 +IUSE="debug static-libs"
39 +
40 +RDEPEND=""
41 +DEPEND="$RDEPEND
42 + virtual/pkgconfig"
43 +
44 +src_configure() {
45 + econf \
46 + $(use_enable static-libs static) \
47 + --disable-ldconfig-at-install \
48 + $(use_enable debug)
49 +}
50 +
51 +src_install() {
52 + default
53 +
54 + dodoc CONTRIBUTORS doc/{comments,*.txt}
55 +
56 + docinto cdrskin
57 + dodoc cdrskin/{*.txt,README}
58 + docinto cdrskin/html
59 + dodoc cdrskin/cdrskin_eng.html
60 +
61 + find "${D}" -name '*.la' -delete || die
62 +}