diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-06-26 13:40:57 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-06-26 13:40:57 +0000 |
commit | 861002aa0a027efd63473a4941982259d33e51c7 (patch) | |
tree | 7cf2ac66fecedaf660bff410eaf25672a4f451c2 /x11-wm/jwm | |
parent | ppc stable #323575 (diff) | |
download | gentoo-2-861002aa0a027efd63473a4941982259d33e51c7.tar.gz gentoo-2-861002aa0a027efd63473a4941982259d33e51c7.tar.bz2 gentoo-2-861002aa0a027efd63473a4941982259d33e51c7.zip |
old
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'x11-wm/jwm')
-rw-r--r-- | x11-wm/jwm/files/jwm-1.5-configure.in.patch | 11 | ||||
-rw-r--r-- | x11-wm/jwm/jwm-0.23.ebuild | 6 | ||||
-rw-r--r-- | x11-wm/jwm/jwm-1.7.ebuild | 65 |
3 files changed, 3 insertions, 79 deletions
diff --git a/x11-wm/jwm/files/jwm-1.5-configure.in.patch b/x11-wm/jwm/files/jwm-1.5-configure.in.patch deleted file mode 100644 index 6ab8c06f8e7a..000000000000 --- a/x11-wm/jwm/files/jwm-1.5-configure.in.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.in.orig 2006-03-16 17:29:21.000000000 +0100 -+++ configure.in 2006-03-16 17:37:58.000000000 +0100 -@@ -169,7 +169,7 @@ - AC_ARG_ENABLE(fribidi, - AC_HELP_STRING([--disable-fribidi], - [disable bi-directional unicode support]) ) --if test "enable_fribidi" != "no"; then -+if test "$enable_fribidi" != "no"; then - AC_CHECK_LIB(fribidi, fribidi_log2vis, - [ LDFLAGS="$LDFLAGS `fribidi-config --libs`" - CFLAGS="$CFLAGS `fribidi-config --cflags`" diff --git a/x11-wm/jwm/jwm-0.23.ebuild b/x11-wm/jwm/jwm-0.23.ebuild index b5d8132c1038..a39531d2fc44 100644 --- a/x11-wm/jwm/jwm-0.23.ebuild +++ b/x11-wm/jwm/jwm-0.23.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/jwm/jwm-0.23.ebuild,v 1.5 2009/08/03 10:19:39 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/jwm/jwm-0.23.ebuild,v 1.6 2010/06/26 13:40:57 ssuominen Exp $ IUSE="" @@ -10,7 +10,7 @@ HOMEPAGE="http://joewing.net/programs/jwm/" SLOT="0" LICENSE="GPL-2" -KEYWORDS="hppa ~ppc ~x86" +KEYWORDS="hppa" RDEPEND="x11-libs/libX11 x11-libs/libXt diff --git a/x11-wm/jwm/jwm-1.7.ebuild b/x11-wm/jwm/jwm-1.7.ebuild deleted file mode 100644 index ae8e54706e3a..000000000000 --- a/x11-wm/jwm/jwm-1.7.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/jwm/jwm-1.7.ebuild,v 1.8 2009/08/03 10:19:39 ssuominen Exp $ - -inherit eutils - -IUSE="bidi debug png truetype xinerama xpm" - -DESCRIPTION="Very fast and lightweight still powerfull window manager for X" -SRC_URI="http://joewing.net/programs/jwm/${P}.tar.bz2" -HOMEPAGE="http://joewing.net/programs/jwm/" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~hppa ppc x86" - -RDEPEND="xpm? ( x11-libs/libXpm ) - xinerama? ( x11-libs/libXinerama ) - x11-libs/libXext - x11-libs/libXrender - x11-libs/libXau - x11-libs/libXdmcp - truetype? ( x11-libs/libXft ) - png? ( media-libs/libpng ) - bidi? ( dev-libs/fribidi ) - dev-libs/expat" -DEPEND="${RDEPEND} - x11-proto/xproto - x11-proto/xextproto - xinerama? ( x11-proto/xineramaproto )" - -src_compile() { - econf \ - $(use_enable debug) \ - $(use_enable png) \ - $(use_enable truetype xft) \ - $(use_enable xinerama) \ - $(use_enable xpm) \ - $(use_enable bidi fribidi) \ - --enable-shape --enable-xrender || die "configure failed" - - emake -j1 || die "make failed" -} - -src_install() { - dodir /usr/bin - dodir /etc - dodir /usr/share/man - make BINDIR="${D}/usr/bin" SYSCONF="${D}/etc" \ - MANDIR="${D}/usr/share/man" install || die "make install failed" - rm "${D}/etc/system.jwmrc" - - echo "#!/bin/sh" > jwm - echo "exec /usr/bin/jwm" >> jwm - exeinto /etc/X11/Sessions - doexe jwm - - dodoc README example.jwmrc todo.txt -} - -pkg_postrm() { - einfo "Put an appropriate configuration file in /etc/system.jwmrc" - einfo "or in ~/.jwmrc." - einfo "An example file can be found in ${R}/usr/share/doc/${P}/" -} |