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/libisoburn/
Date: Mon, 23 Oct 2017 19:04:44
Message-Id: 1508785473.ebaa052c362d98e6ba1c58ee15d7643d3ea1dae3.billie@gentoo
1 commit: ebaa052c362d98e6ba1c58ee15d7643d3ea1dae3
2 Author: Daniel Pielmeier <billie <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 23 19:04:33 2017 +0000
4 Commit: Daniel Pielmeier <billie <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 23 19:04:33 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebaa052c
7
8 dev-libs/libisoburn: 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/libisoburn/libisoburn-1.4.8-r1.ebuild | 60 ++++++++++++++++++++++++++
13 1 file changed, 60 insertions(+)
14
15 diff --git a/dev-libs/libisoburn/libisoburn-1.4.8-r1.ebuild b/dev-libs/libisoburn/libisoburn-1.4.8-r1.ebuild
16 new file mode 100644
17 index 00000000000..a6dd1dac39e
18 --- /dev/null
19 +++ b/dev-libs/libisoburn/libisoburn-1.4.8-r1.ebuild
20 @@ -0,0 +1,60 @@
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="Creation/expansion of ISO-9660 filesystems on CD/DVD media supported by libburn"
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 GPL-3"
31 +SLOT="0"
32 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
33 +IUSE="acl debug external-filters external-filters-setuid frontend-optional
34 + launch-frontend launch-frontend-setuid libedit readline static-libs xattr zlib"
35 +
36 +REQUIRED_USE="frontend-optional? ( || ( launch-frontend launch-frontend-setuid ) )"
37 +
38 +RDEPEND=">=dev-libs/libburn-1.4.8
39 + >=dev-libs/libisofs-1.4.8
40 + readline? ( sys-libs/readline:0= )
41 + !readline? ( libedit? ( dev-libs/libedit ) )
42 + acl? ( virtual/acl )
43 + xattr? ( sys-apps/attr )
44 + zlib? ( sys-libs/zlib )
45 + launch-frontend? ( dev-lang/tcl:0 dev-lang/tk:0 )
46 + launch-frontend-setuid? ( dev-lang/tcl:0 dev-lang/tk:0 )
47 + frontend-optional? ( dev-tcltk/bwidget )"
48 +DEPEND="${RDEPEND}
49 + virtual/pkgconfig"
50 +
51 +src_configure() {
52 + econf \
53 + $(use_enable static-libs static) \
54 + $(use_enable readline libreadline) \
55 + $(usex readline --disable-libedit $(use_enable libedit)) \
56 + $(use_enable acl libacl) \
57 + $(use_enable xattr) \
58 + $(use_enable zlib) \
59 + --disable-libjte \
60 + $(use_enable external-filters) \
61 + $(use_enable external-filters-setuid) \
62 + $(use_enable launch-frontend) \
63 + $(use_enable launch-frontend-setuid) \
64 + --disable-ldconfig-at-install \
65 + --enable-pkg-check-modules \
66 + $(use_enable debug)
67 +}
68 +
69 +src_install() {
70 + default
71 +
72 + dodoc CONTRIBUTORS doc/{comments,*.wiki,startup_file.txt}
73 +
74 + docinto frontend
75 + dodoc frontend/README-tcltk
76 + docinto xorriso
77 + dodoc xorriso/{changelog.txt,README_gnu_xorriso}
78 +
79 + find "${D}" -name '*.la' -delete || die
80 +}