Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libnjb/
Date: Tue, 02 Aug 2022 04:45:39
Message-Id: 1659415527.5c087f22eead06e2bdb512e8fd5fa087df754f4a.fordfrog@gentoo
1 commit: 5c087f22eead06e2bdb512e8fd5fa087df754f4a
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 2 04:45:27 2022 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 2 04:45:27 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c087f22
7
8 media-libs/libnjb: dropped obsolete 2.2.7
9
10 Bug: https://bugs.gentoo.org/862627
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 media-libs/libnjb/libnjb-2.2.7.ebuild | 50 -----------------------------------
14 1 file changed, 50 deletions(-)
15
16 diff --git a/media-libs/libnjb/libnjb-2.2.7.ebuild b/media-libs/libnjb/libnjb-2.2.7.ebuild
17 deleted file mode 100644
18 index 4149c8448297..000000000000
19 --- a/media-libs/libnjb/libnjb-2.2.7.ebuild
20 +++ /dev/null
21 @@ -1,50 +0,0 @@
22 -# Copyright 1999-2022 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -inherit libtool udev
28 -
29 -DESCRIPTION="Library for communicating with the Creative Nomad JukeBox digital audio player"
30 -HOMEPAGE="http://libnjb.sourceforge.net"
31 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
32 -
33 -LICENSE="BSD"
34 -SLOT="0"
35 -KEYWORDS="amd64 ppc ppc64 x86"
36 -IUSE="doc static-libs"
37 -
38 -RDEPEND="virtual/libusb:0"
39 -DEPEND="${RDEPEND}
40 - doc? ( app-doc/doxygen )"
41 -
42 -PATCHES=( "${FILESDIR}"/${P}-exclude-samples.patch )
43 -
44 -src_prepare() {
45 - default
46 - elibtoolize
47 -}
48 -
49 -src_configure() {
50 - use doc || export ac_cv_prog_HAVE_DOXYGEN=false
51 -
52 - econf \
53 - $(use_enable static-libs static)
54 -}
55 -
56 -src_install() {
57 - default
58 -
59 - udev_newrules "${FILESDIR}"/${PN}.rules 80-${PN}.rules
60 -
61 - # package provides .pc files
62 - find "${D}" -name '*.la' -delete || die
63 -}
64 -
65 -pkg_postinst() {
66 - udev_reload
67 -}
68 -
69 -pkg_postrm() {
70 - udev_reload
71 -}