diff options
author | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-12-16 06:45:16 +0000 |
---|---|---|
committer | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-12-16 06:45:16 +0000 |
commit | e374399f5c1e356b32126b576f4ce83f87ccc921 (patch) | |
tree | d8d8d48819cffcfc1051715c4f482fa58c450cf4 /x11-libs/gdk-pixbuf | |
parent | Remove old version depending on now-removed csync. (diff) | |
download | gentoo-2-e374399f5c1e356b32126b576f4ce83f87ccc921.tar.gz gentoo-2-e374399f5c1e356b32126b576f4ce83f87ccc921.tar.bz2 gentoo-2-e374399f5c1e356b32126b576f4ce83f87ccc921.zip |
EAPI5 stylistic cleanup
(Portage version: 2.2.0_alpha148/cvs/Linux x86_64, signed Manifest commit with key CF0ADD61)
Diffstat (limited to 'x11-libs/gdk-pixbuf')
-rw-r--r-- | x11-libs/gdk-pixbuf/ChangeLog | 6 | ||||
-rw-r--r-- | x11-libs/gdk-pixbuf/gdk-pixbuf-2.26.5.ebuild | 22 |
2 files changed, 14 insertions, 14 deletions
diff --git a/x11-libs/gdk-pixbuf/ChangeLog b/x11-libs/gdk-pixbuf/ChangeLog index 2aa9d5f1cbd3..1d6872f08ab2 100644 --- a/x11-libs/gdk-pixbuf/ChangeLog +++ b/x11-libs/gdk-pixbuf/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-libs/gdk-pixbuf # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/gdk-pixbuf/ChangeLog,v 1.78 2012/12/16 06:13:41 tetromino Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gdk-pixbuf/ChangeLog,v 1.79 2012/12/16 06:45:16 tetromino Exp $ + + 16 Dec 2012; Alexandre Rostovtsev <tetromino@gentoo.org> + gdk-pixbuf-2.26.5.ebuild: + EAPI5 stylistic cleanup 16 Dec 2012; Alexandre Rostovtsev <tetromino@gentoo.org> gdk-pixbuf-2.26.5.ebuild, metadata.xml: diff --git a/x11-libs/gdk-pixbuf/gdk-pixbuf-2.26.5.ebuild b/x11-libs/gdk-pixbuf/gdk-pixbuf-2.26.5.ebuild index 9660543777f0..2e66e83c94bb 100644 --- a/x11-libs/gdk-pixbuf/gdk-pixbuf-2.26.5.ebuild +++ b/x11-libs/gdk-pixbuf/gdk-pixbuf-2.26.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/gdk-pixbuf/gdk-pixbuf-2.26.5.ebuild,v 1.2 2012/12/16 06:13:41 tetromino Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gdk-pixbuf/gdk-pixbuf-2.26.5.ebuild,v 1.3 2012/12/16 06:45:16 tetromino Exp $ EAPI="5" @@ -45,18 +45,14 @@ src_prepare() { src_configure() { # png always on to display icons (foser) - local myconf=" - $(use_with jpeg libjpeg) - $(use_with jpeg2k libjasper) - $(use_with tiff libtiff) - $(use_enable introspection) - $(use_with X x11) - --with-libpng" - - # Passing --disable-debug is not recommended for production use - use debug && myconf="${myconf} --enable-debug=yes" - - econf ${myconf} + econf \ + $(usex debug --enable-debug=yes "") \ + $(use_with jpeg libjpeg) \ + $(use_with jpeg2k libjasper) \ + $(use_with tiff libtiff) \ + $(use_enable introspection) \ + $(use_with X x11) \ + --with-libpng } src_install() { |