Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
ssuominen 09/08/21 20:14:54
Modified: blib-1.1.7-r1.ebuild
Log:
quoting
(Portage version: 2.2_rc38/cvs/Linux x86_64)
Revision Changes Path
1.4 media-libs/blib/blib-1.1.7-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/blib/blib-1.1.7-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/blib/blib-1.1.7-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/blib/blib-1.1.7-r1.ebuild?r1=1.3&r2=1.4
Index: blib-1.1.7-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/blib/blib-1.1.7-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- blib-1.1.7-r1.ebuild 28 Apr 2006 04:00:21 -0000 1.3
+++ blib-1.1.7-r1.ebuild 21 Aug 2009 20:14:54 -0000 1.4
@@ -1,6 +1,8 @@
-# Copyright 1999-2006 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/blib/blib-1.1.7-r1.ebuild,v 1.3 2006/04/28 04:00:21 tsunam Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/blib/blib-1.1.7-r1.ebuild,v 1.4 2009/08/21 20:14:54 ssuominen Exp $
+
+EAPI=2
DESCRIPTION="blib is a library full of useful things to hack the Blinkenlights"
HOMEPAGE="http://www.blinkenlights.de"
@@ -11,24 +13,21 @@
KEYWORDS="amd64 x86"
IUSE="aalib gtk directfb"
-RDEPEND="dev-libs/glib
+RDEPEND=">=dev-libs/glib-2
aalib? ( >=media-libs/aalib-1.4_rc4-r2 )
directfb? ( >=dev-libs/DirectFB-0.9.20-r1 )
- gtk? ( >=x11-libs/gtk+-2.4.4 )"
+ gtk? ( >=x11-libs/gtk+-2.4.4:2 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
-src_compile() {
+src_configure() {
econf \
$(use_enable aalib) \
$(use_enable directfb) \
- $(use_enable gtk gtk2) \
- || die "econf failed"
- emake || die "emake failed"
+ $(use_enable gtk gtk2)
}
src_install() {
- make DESTDIR=${D} install || die "make install failed"
-
+ emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog NEWS README
}
|
|