diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2014-09-03 21:30:00 +0000 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2014-09-03 21:30:00 +0000 |
commit | 289a4beb000fbdc739b1343c20e444f3f140108b (patch) | |
tree | 7268118e51a8bfc39a850572a7e7dfe190a2ebbe /x11-wm/windowmaker | |
parent | Version bump, supports more image formats, code cleanups and translation updates (diff) | |
download | gentoo-2-289a4beb000fbdc739b1343c20e444f3f140108b.tar.gz gentoo-2-289a4beb000fbdc739b1343c20e444f3f140108b.tar.bz2 gentoo-2-289a4beb000fbdc739b1343c20e444f3f140108b.zip |
Missing new image formats dependencies, update xrandr configure flag
(Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key C74525F2)
Diffstat (limited to 'x11-wm/windowmaker')
-rw-r--r-- | x11-wm/windowmaker/ChangeLog | 6 | ||||
-rw-r--r-- | x11-wm/windowmaker/metadata.xml | 1 | ||||
-rw-r--r-- | x11-wm/windowmaker/windowmaker-0.95.6.ebuild | 12 |
3 files changed, 13 insertions, 6 deletions
diff --git a/x11-wm/windowmaker/ChangeLog b/x11-wm/windowmaker/ChangeLog index 7674b4abd03f..21a8874f19c6 100644 --- a/x11-wm/windowmaker/ChangeLog +++ b/x11-wm/windowmaker/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-wm/windowmaker # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/ChangeLog,v 1.148 2014/09/03 21:03:03 voyageur Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/ChangeLog,v 1.149 2014/09/03 21:30:00 voyageur Exp $ + + 03 Sep 2014; Bernard Cafarelli <voyageur@gentoo.org> + windowmaker-0.95.6.ebuild, metadata.xml: + Missing new image formats dependencies, update xrandr configure flag *windowmaker-0.95.6 (03 Sep 2014) diff --git a/x11-wm/windowmaker/metadata.xml b/x11-wm/windowmaker/metadata.xml index f9df3ea64d6c..ddcce78103f8 100644 --- a/x11-wm/windowmaker/metadata.xml +++ b/x11-wm/windowmaker/metadata.xml @@ -9,5 +9,6 @@ <flag name='xrandr'>Enable XRandR window extension support</flag> <flag name="vdesktop">Enable dynamic virtual desktop (conflicts with software that works on the edges of the screen)</flag> + <flag name="webp">Enables WebP image format support using <pkg>media-libs/libwebp</pkg></flag> </use> </pkgmetadata> diff --git a/x11-wm/windowmaker/windowmaker-0.95.6.ebuild b/x11-wm/windowmaker/windowmaker-0.95.6.ebuild index 121959400aec..b4bf46ad693e 100644 --- a/x11-wm/windowmaker/windowmaker-0.95.6.ebuild +++ b/x11-wm/windowmaker/windowmaker-0.95.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/windowmaker-0.95.6.ebuild,v 1.1 2014/09/03 21:03:03 voyageur Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/windowmaker-0.95.6.ebuild,v 1.2 2014/09/03 21:30:00 voyageur Exp $ EAPI=5 inherit autotools eutils @@ -12,7 +12,7 @@ SRC_URI=" http://windowmaker.org/pub/source/release/${P/windowm/WindowM}.tar.gz SLOT="0" LICENSE="GPL-2" -IUSE="gif jpeg nls png tiff modelock xinerama xrandr" +IUSE="gif imagemagick jpeg modelock nls png tiff webp xinerama xrandr" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" DEPEND="media-libs/fontconfig @@ -21,9 +21,11 @@ DEPEND="media-libs/fontconfig x11-libs/libXt x11-libs/libXv gif? ( >=media-libs/giflib-4.1.0-r3 ) - png? ( media-libs/libpng:0= ) + imagemagick? ( media-gfx/imagemagick ) jpeg? ( virtual/jpeg ) + png? ( media-libs/libpng:0= ) tiff? ( media-libs/tiff:0 ) + webp? ( media-libs/libwebp ) xinerama? ( x11-libs/libXinerama ) xrandr? ( x11-libs/libXrandr )" RDEPEND="${DEPEND} @@ -50,10 +52,10 @@ src_configure() { # image format types # xpm is provided by X itself - myconf="--enable-xpm $(use_enable png) $(use_enable jpeg) $(use_enable gif) $(use_enable tiff)" + myconf="--enable-xpm $(use_enable imagemagick magick) $(use_enable jpeg) $(use_enable gif) $(use_enable png) $(use_enable tiff) $(use_enable webp)" # non required X capabilities - myconf="${myconf} $(use_enable modelock) $(use_enable xrandr) $(use_enable xinerama)" + myconf="${myconf} $(use_enable modelock) $(use_enable xrandr randr) $(use_enable xinerama)" if use nls; then [[ -z $LINGUAS ]] && export LINGUAS="`ls po/*.po | sed 's:po/\(.*\)\.po$:\1:'`" |