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: Sun, 07 Oct 2018 14:37:36
Message-Id: 1538923042.a160981b7c86ec6357468ebaf4211ef534faaf49.billie@gentoo
1 commit: a160981b7c86ec6357468ebaf4211ef534faaf49
2 Author: Daniel Pielmeier <billie <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 7 14:37:22 2018 +0000
4 Commit: Daniel Pielmeier <billie <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 7 14:37:22 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a160981b
7
8 dev-libs/libisoburn: Version bump to 1.5.0. Switch to EAPI 7.
9
10 Signed-off-by: Daniel Pielmeier <billie <AT> gentoo.org>
11 Package-Manager: Portage-2.3.49, Repoman-2.3.11
12
13 dev-libs/libisoburn/Manifest | 1 +
14 dev-libs/libisoburn/libisoburn-1.5.0.ebuild | 66 +++++++++++++++++++++++++++++
15 2 files changed, 67 insertions(+)
16
17 diff --git a/dev-libs/libisoburn/Manifest b/dev-libs/libisoburn/Manifest
18 index 75b4a09b5e9..63366ab389f 100644
19 --- a/dev-libs/libisoburn/Manifest
20 +++ b/dev-libs/libisoburn/Manifest
21 @@ -1 +1,2 @@
22 DIST libisoburn-1.4.8.tar.gz 1537097 BLAKE2B 569684a115ac09506aa2fe6439f4dd80424ba7a5fb539b587e618a2a618c18512099117892ed0abc7268bb258c80a1ce8c2e4535f4eef963a14a5f8285806e23 SHA512 26dd6f6884d98d9d3f54bf18b529a688d28aa0ff54b7fe6fe7926c7765755a1c7f7b2d0ef02ca6ea2bdac9ddf6f928c01c89a3547aea1e9f0b47346b160d0d46
23 +DIST libisoburn-1.5.0.tar.gz 1550656 BLAKE2B 447c383b3847b7ca0c4aca73f5317dec03ef79b34debc3ad2149fae4e7216f29c4a0dd918271087b530fb6c476b219430159e1515bec4bcf51c47d5b2ee05d89 SHA512 c74a9e2887244c28c82abe70d2603dbcd49b639c370e5b7fea03aabce59ff2b361345cd6ec88fe8152727e8a416d4759b88d91e2b5aec8a697408e00b7dc9e4d
24
25 diff --git a/dev-libs/libisoburn/libisoburn-1.5.0.ebuild b/dev-libs/libisoburn/libisoburn-1.5.0.ebuild
26 new file mode 100644
27 index 00000000000..a43cbf92690
28 --- /dev/null
29 +++ b/dev-libs/libisoburn/libisoburn-1.5.0.ebuild
30 @@ -0,0 +1,66 @@
31 +# Copyright 1999-2018 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.0
53 + >=dev-libs/libisofs-1.5.0
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 +}