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:08:05
Message-Id: 1508785676.a87318a445af0e949266da92589627dac2fbafaa.billie@gentoo
1 commit: a87318a445af0e949266da92589627dac2fbafaa
2 Author: Daniel Pielmeier <billie <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 23 19:07:56 2017 +0000
4 Commit: Daniel Pielmeier <billie <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 23 19:07:56 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a87318a4
7
8 dev-libs/libisoburn: Remove old.
9
10 Package-Manager: Portage-2.3.8, Repoman-2.3.3
11
12 dev-libs/libisoburn/libisoburn-1.4.8.ebuild | 62 -----------------------------
13 1 file changed, 62 deletions(-)
14
15 diff --git a/dev-libs/libisoburn/libisoburn-1.4.8.ebuild b/dev-libs/libisoburn/libisoburn-1.4.8.ebuild
16 deleted file mode 100644
17 index ed2e3658e50..00000000000
18 --- a/dev-libs/libisoburn/libisoburn-1.4.8.ebuild
19 +++ /dev/null
20 @@ -1,62 +0,0 @@
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 cdio 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 - cdio? ( >=dev-libs/libcdio-0.83 )
46 - launch-frontend? ( dev-lang/tcl:0 dev-lang/tk:0 )
47 - launch-frontend-setuid? ( dev-lang/tcl:0 dev-lang/tk:0 )
48 - frontend-optional? ( dev-tcltk/bwidget )"
49 -DEPEND="${RDEPEND}
50 - virtual/pkgconfig"
51 -
52 -src_configure() {
53 - econf \
54 - $(use_enable static-libs static) \
55 - $(use_enable readline libreadline) \
56 - $(usex readline --disable-libedit $(use_enable libedit)) \
57 - $(use_enable acl libacl) \
58 - $(use_enable xattr) \
59 - $(use_enable zlib) \
60 - --disable-libjte \
61 - $(use_enable cdio libcdio) \
62 - $(use_enable external-filters) \
63 - $(use_enable external-filters-setuid) \
64 - $(use_enable launch-frontend) \
65 - $(use_enable launch-frontend-setuid) \
66 - --disable-ldconfig-at-install \
67 - --enable-pkg-check-modules \
68 - $(use_enable debug)
69 -}
70 -
71 -src_install() {
72 - default
73 -
74 - dodoc CONTRIBUTORS doc/{comments,*.wiki,startup_file.txt}
75 -
76 - docinto frontend
77 - dodoc frontend/README-tcltk
78 - docinto xorriso
79 - dodoc xorriso/{changelog.txt,README_gnu_xorriso}
80 -
81 - find "${D}" -name '*.la' -delete || die
82 -}