Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/blib/
Date: Sun, 25 Feb 2018 16:00:21
Message-Id: 1519573181.a1fcd3a1ae20db492324d86136b4b0ed581ee6f3.pacho@gentoo
1 commit: a1fcd3a1ae20db492324d86136b4b0ed581ee6f3
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 25 15:39:41 2018 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 25 15:39:41 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1fcd3a1
7
8 media-libs/blib: Drop old
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 media-libs/blib/blib-1.1.7-r1.ebuild | 41 ------------------------------------
13 1 file changed, 41 deletions(-)
14
15 diff --git a/media-libs/blib/blib-1.1.7-r1.ebuild b/media-libs/blib/blib-1.1.7-r1.ebuild
16 deleted file mode 100644
17 index 22a1dc1b36d..00000000000
18 --- a/media-libs/blib/blib-1.1.7-r1.ebuild
19 +++ /dev/null
20 @@ -1,41 +0,0 @@
21 -# Copyright 1999-2012 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=2
25 -
26 -DESCRIPTION="blib is a library full of useful things to hack the Blinkenlights"
27 -HOMEPAGE="http://www.blinkenlights.de"
28 -SRC_URI="http://www.blinkenlights.de/dist/${P}.tar.gz"
29 -
30 -LICENSE="GPL-2"
31 -SLOT="0"
32 -KEYWORDS="amd64 x86"
33 -IUSE="aalib gtk directfb"
34 -
35 -RDEPEND=">=dev-libs/glib-2
36 - aalib? ( >=media-libs/aalib-1.4_rc4-r2 )
37 - directfb? ( >=dev-libs/DirectFB-0.9.20-r1 )
38 - gtk? ( >=x11-libs/gtk+-2.4.4:2 )"
39 -DEPEND="${RDEPEND}
40 - virtual/pkgconfig"
41 -
42 -src_prepare() {
43 - # Drop DEPRECATED flags, bug #391105
44 - sed -i -e 's:-D[A-Z_]*DISABLE_DEPRECATED:$(NULL):g' \
45 - blib/Makefile.am blib/Makefile.in \
46 - gfx/Makefile.am gfx/Makefile.in \
47 - modules/Makefile.am modules/Makefile.in \
48 - test/modules/Makefile.am test/modules/Makefile.in || die
49 -}
50 -
51 -src_configure() {
52 - econf \
53 - $(use_enable aalib) \
54 - $(use_enable directfb) \
55 - $(use_enable gtk gtk2)
56 -}
57 -
58 -src_install() {
59 - emake DESTDIR="${D}" install || die "emake install failed"
60 - dodoc AUTHORS ChangeLog NEWS README
61 -}