diff options
author | Kacper Kowalik <xarthisius@gentoo.org> | 2012-08-23 16:10:19 +0000 |
---|---|---|
committer | Kacper Kowalik <xarthisius@gentoo.org> | 2012-08-23 16:10:19 +0000 |
commit | 86873077f175b87e175bcd5bd55a560d7604cee0 (patch) | |
tree | 07db1fd4ceb583469f572fb98bca793c6c34cc5d /x11-wm/pekwm | |
parent | Alter description for bug #432428. (diff) | |
download | gentoo-2-86873077f175b87e175bcd5bd55a560d7604cee0.tar.gz gentoo-2-86873077f175b87e175bcd5bd55a560d7604cee0.tar.bz2 gentoo-2-86873077f175b87e175bcd5bd55a560d7604cee0.zip |
Version bump wrt #430918 by <theodor@suremail.info>
(Portage version: 2.2.0_alpha121/cvs/Linux x86_64)
Diffstat (limited to 'x11-wm/pekwm')
-rw-r--r-- | x11-wm/pekwm/ChangeLog | 8 | ||||
-rw-r--r-- | x11-wm/pekwm/pekwm-0.1.15.ebuild | 46 |
2 files changed, 52 insertions, 2 deletions
diff --git a/x11-wm/pekwm/ChangeLog b/x11-wm/pekwm/ChangeLog index 3e47629f48a9..a3f52bf72c70 100644 --- a/x11-wm/pekwm/ChangeLog +++ b/x11-wm/pekwm/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-wm/pekwm # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/pekwm/ChangeLog,v 1.60 2012/05/04 08:58:55 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/pekwm/ChangeLog,v 1.61 2012/08/23 16:10:19 xarthisius Exp $ + +*pekwm-0.1.15 (23 Aug 2012) + + 23 Aug 2012; Kacper Kowalik <xarthisius@gentoo.org> +pekwm-0.1.15.ebuild: + Version bump wrt #430918 by <theodor@suremail.info> 04 May 2012; Jeff Horelick <jdhore@gentoo.org> pekwm-0.1.14.ebuild: dev-util/pkgconfig -> virtual/pkgconfig @@ -239,4 +244,3 @@ ChangeLog, files/digest-pekwm-0.1.2 : Initial import. - diff --git a/x11-wm/pekwm/pekwm-0.1.15.ebuild b/x11-wm/pekwm/pekwm-0.1.15.ebuild new file mode 100644 index 000000000000..48409f717ccf --- /dev/null +++ b/x11-wm/pekwm/pekwm-0.1.15.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/pekwm/pekwm-0.1.15.ebuild,v 1.1 2012/08/23 16:10:19 xarthisius Exp $ + +EAPI=4 + +inherit eutils + +DESCRIPTION="A small window mananger based on aewm++" +HOMEPAGE="http://pekwm.org/" +SRC_URI="http://pekwm.org/projects/pekwm/files/${P}.tar.bz2 + mirror://gentoo/${PN}-themes.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~mips ~ppc ~sparc ~x86 ~x86-fbsd" +IUSE="debug truetype xinerama" + +RDEPEND="virtual/jpeg + media-libs/libpng + x11-libs/libXpm + x11-libs/libXrandr + x11-libs/libXrender + truetype? ( x11-libs/libXft ) + xinerama? ( x11-libs/libXinerama )" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_configure() { + econf \ + $(use_enable debug) \ + $(use_enable truetype xft) \ + $(use_enable xinerama) \ + --enable-image-jpeg \ + --enable-image-png \ + --enable-image-xpm \ + --enable-shape \ + --enable-xrandr +} + +src_install() { + default + + rm "${WORKDIR}/themes/Ace/.theme.swp" + mv "${WORKDIR}/themes/"* "${D}/usr/share/${PN}/themes/" +} |