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: Wed, 13 Nov 2019 20:04:08
Message-Id: 1573675429.a93a5fec27a78e9d90fb4bcc6fa806b4be573284.billie@gentoo
1 commit: a93a5fec27a78e9d90fb4bcc6fa806b4be573284
2 Author: Daniel Pielmeier <billie <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 13 20:03:49 2019 +0000
4 Commit: Daniel Pielmeier <billie <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 13 20:03:49 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a93a5fec
7
8 dev-libs/libisoburn: Version bump libisoburn-1.5.2.
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.16
11 Signed-off-by: Daniel Pielmeier <billie <AT> gentoo.org>
12
13 dev-libs/libisoburn/Manifest | 1 +
14 dev-libs/libisoburn/libisoburn-1.5.2.ebuild | 66 +++++++++++++++++++++++++++++
15 2 files changed, 67 insertions(+)
16
17 diff --git a/dev-libs/libisoburn/Manifest b/dev-libs/libisoburn/Manifest
18 index 71643a29329..12d0cc3b29f 100644
19 --- a/dev-libs/libisoburn/Manifest
20 +++ b/dev-libs/libisoburn/Manifest
21 @@ -1 +1,2 @@
22 DIST libisoburn-1.5.0.tar.gz 1550656 BLAKE2B 447c383b3847b7ca0c4aca73f5317dec03ef79b34debc3ad2149fae4e7216f29c4a0dd918271087b530fb6c476b219430159e1515bec4bcf51c47d5b2ee05d89 SHA512 c74a9e2887244c28c82abe70d2603dbcd49b639c370e5b7fea03aabce59ff2b361345cd6ec88fe8152727e8a416d4759b88d91e2b5aec8a697408e00b7dc9e4d
23 +DIST libisoburn-1.5.2.tar.gz 1564700 BLAKE2B 5c7a77f427adff46923f9dc8833f40db36f6ac1ee3b0e58d0111a03ee5c7ae5cc60d613f47d4bb64b848feeb24599b424284cffdbe5c1eebcf7b5e3c58b19b53 SHA512 b481aa5ff20bb35ab0ab19f3f4f3ebc4f2baa8366a14a5afe4f262788441679b6501e140e182f4e80045c747f1cf48db40832d8d5cd064e58a02de2882536897
24
25 diff --git a/dev-libs/libisoburn/libisoburn-1.5.2.ebuild b/dev-libs/libisoburn/libisoburn-1.5.2.ebuild
26 new file mode 100644
27 index 00000000000..7142387b37c
28 --- /dev/null
29 +++ b/dev-libs/libisoburn/libisoburn-1.5.2.ebuild
30 @@ -0,0 +1,66 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +DESCRIPTION="Creation/expansion of ISO-9660 filesystems on CD/DVD media supported by libburn"
37 +HOMEPAGE="https://dev.lovelyhq.com/libburnia/web/wikis/home"
38 +SRC_URI="http://files.libburnia-project.org/releases/${P}.tar.gz"
39 +
40 +LICENSE="GPL-2 GPL-3"
41 +SLOT="0"
42 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
43 +IUSE="acl debug external-filters external-filters-setuid frontend-optional
44 + launch-frontend launch-frontend-setuid libedit readline static-libs xattr zlib"
45 +
46 +REQUIRED_USE="frontend-optional? ( || ( launch-frontend launch-frontend-setuid ) )"
47 +
48 +BDEPEND="
49 + virtual/pkgconfig
50 +"
51 +RDEPEND="
52 + >=dev-libs/libburn-1.5.2
53 + >=dev-libs/libisofs-1.5.2
54 + readline? ( sys-libs/readline:0= )
55 + !readline? ( libedit? ( dev-libs/libedit ) )
56 + acl? ( virtual/acl )
57 + xattr? ( sys-apps/attr )
58 + zlib? ( sys-libs/zlib )
59 + launch-frontend? ( dev-lang/tcl:0 dev-lang/tk:0 )
60 + launch-frontend-setuid? ( dev-lang/tcl:0 dev-lang/tk:0 )
61 + frontend-optional? ( dev-tcltk/bwidget )
62 +"
63 +DEPEND="
64 + ${RDEPEND}
65 +"
66 +
67 +src_configure() {
68 + econf \
69 + $(use_enable static-libs static) \
70 + $(use_enable readline libreadline) \
71 + $(usex readline --disable-libedit $(use_enable libedit)) \
72 + $(use_enable acl libacl) \
73 + $(use_enable xattr) \
74 + $(use_enable zlib) \
75 + --disable-libjte \
76 + $(use_enable external-filters) \
77 + $(use_enable external-filters-setuid) \
78 + $(use_enable launch-frontend) \
79 + $(use_enable launch-frontend-setuid) \
80 + --disable-ldconfig-at-install \
81 + --enable-pkg-check-modules \
82 + $(use_enable debug)
83 +}
84 +
85 +src_install() {
86 + default
87 +
88 + dodoc CONTRIBUTORS doc/{comments,*.wiki,startup_file.txt}
89 +
90 + docinto frontend
91 + dodoc frontend/README-tcltk
92 + docinto xorriso
93 + dodoc xorriso/{changelog.txt,README_gnu_xorriso}
94 +
95 + find "${D}" -name '*.la' -delete || die
96 +}