* [gentoo-commits] gentoo-x86 commit in x11-wm/windowmaker: ChangeLog windowmaker-0.92.0-r4.ebuild
@ 2007-09-10 19:23 Bernard Cafarelli (voyageur)
0 siblings, 0 replies; 5+ messages in thread
From: Bernard Cafarelli (voyageur) @ 2007-09-10 19:23 UTC (permalink / raw
To: gentoo-commits
voyageur 07/09/10 19:23:21
Modified: ChangeLog
Added: windowmaker-0.92.0-r4.ebuild
Log:
Ebuild cleanup, closes #103698, #170467, #187092
(Portage version: 2.1.3.9)
Revision Changes Path
1.83 x11-wm/windowmaker/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/windowmaker/ChangeLog?rev=1.83&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/windowmaker/ChangeLog?rev=1.83&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/windowmaker/ChangeLog?r1=1.82&r2=1.83
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/ChangeLog,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- ChangeLog 2 Aug 2007 15:26:15 -0000 1.82
+++ ChangeLog 10 Sep 2007 19:23:21 -0000 1.83
@@ -1,6 +1,17 @@
# ChangeLog for x11-wm/windowmaker
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/ChangeLog,v 1.82 2007/08/02 15:26:15 uberlord Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/ChangeLog,v 1.83 2007/09/10 19:23:21 voyageur Exp $
+
+*windowmaker-0.92.0-r4 (10 Sep 2007)
+
+ 10 Sep 2007; Bernard Cafarelli <voyageur@gentoo.org>
+ +windowmaker-0.92.0-r4.ebuild:
+ Ebuild cleanup, includes:
+ * themes path in some default menus (bug #187092)
+ * locale path fixed (bug #103698)
+ * WPrefs.app in GNUstep System domain (bug #170467)
+ * uses new GNUstep eclasses
+ * internal ebuild cleanups
02 Aug 2007; Roy Marples <uberlord@gentoo.org>
windowmaker-0.91.0-r1.ebuild, windowmaker-0.92.0-r3.ebuild:
1.1 x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild?rev=1.1&content-type=text/plain
Index: windowmaker-0.92.0-r4.ebuild
===================================================================
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild,v 1.1 2007/09/10 19:23:21 voyageur Exp $
inherit autotools eutils gnustep-base flag-o-matic
S=${WORKDIR}/${P/windowm/WindowM}
DESCRIPTION="The fast and light GNUstep window manager"
SRC_URI="ftp://ftp.windowmaker.info/pub/source/release/${P/windowm/WindowM}.tar.gz
http://www.windowmaker.info/pub/source/release/WindowMaker-extra-0.1.tar.gz"
HOMEPAGE="http://www.windowmaker.info/"
IUSE="gif gnustep jpeg nls png tiff modelock xinerama"
DEPEND="x11-libs/libXv
x11-libs/libXft
x11-libs/libXt
media-libs/fontconfig
gif? ( >=media-libs/giflib-4.1.0-r3 )
png? ( >=media-libs/libpng-1.2.1 )
jpeg? ( >=media-libs/jpeg-6b-r2 )
tiff? ( >=media-libs/tiff-3.6.1-r2 )
gnustep? ( gnustep-base/gnustep-make )"
RDEPEND="${DEPEND}
nls? ( >=sys-devel/gettext-0.10.39 )"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
src_unpack() {
is-flag -fstack-protector && filter-flags -fstack-protector \
&& ewarn "CFLAG -fstack-protector has been disabled, as it is known to cause bugs with WindowMaker (bug #78051)" && ebeep 2
replace-flags "-Os" "-O2"
replace-flags "-O3" "-O2"
unpack ${A}
cd "${S}"
epatch ${FILESDIR}/${PV/0.92/0.91}/singleclick-shadeormaxopts-0.9x.patch2
epatch ${FILESDIR}/${PV/0.92/0.91}/wlist-0.9x.patch
epatch ${FILESDIR}/${PV}/${P}-configure.patch
epatch ${FILESDIR}/${PV}/${P}-gcc41.patch
epatch ${FILESDIR}/${PV}/${P}-fullscreen.patch
epatch ${FILESDIR}/${PV}/${P}-qtdialogsfix.patch
# Fix some paths
for file in ${S}/WindowMaker/*menu*; do
if [ -r $file ]; then
if use gnustep ; then
egnustep_env
sed -i "s:/usr/local/GNUstep/Applications:${GNUSTEP_SYSTEM_APPS}:g" $file
else
sed -i "s:/usr/local/GNUstep/Applications/WPrefs.app:/usr/bin/:g;" $file
fi
sed -i 's:/usr/local/share/WindowMaker:/usr/share/WindowMaker:g;' $file
sed -i 's:/opt/share/WindowMaker:/usr/share/WindowMaker:g;' $file
fi;
done;
eautoreconf || die "eautoreconf failed"
}
src_compile() {
local myconf
# image format types
# xpm is provided by X itself
myconf="--enable-xpm $(use_enable png) $(use_enable jpeg) $(use_enable gif) $(use_enable tiff)"
# non required X capabilities
myconf="${myconf} $(use_enable modelock) $(use_enable xinerama)"
if use gnustep ; then
egnustep_env
myconf="${myconf} --with-gnustepdir=${GNUSTEP_SYSTEM_ROOT}"
fi
if use nls; then
[ -z "$LINGUAS" ] && export LINGUAS="`ls po/*.po | sed 's:po/\(.*\)\.po$:\1:'`"
else
myconf="${myconf} --disable-locale"
fi
# default settings with $myconf appended
econf \
--sysconfdir=/etc/X11 \
--with-x \
--enable-usermenu \
--with-pixmapdir=/usr/share/pixmaps \
--with-nlsdir=/usr/share/locale \
${myconf} || die
emake || die "windowmaker: make has failed"
# WindowMaker Extra Package (themes and icons)
cd ../WindowMaker-extra-0.1
econf || die "windowmaker-extra: configure has failed"
emake || die "windowmaker-extra: make has failed"
}
src_install() {
emake DESTDIR="${D}" install || die "windowmaker: install has failed."
dodoc AUTHORS BUGFORM BUGS ChangeLog COPYING* INSTALL* FAQ* \
MIRRORS README* NEWS TODO
# WindowMaker Extra
cd ../WindowMaker-extra-0.1
emake DESTDIR="${D}" install || die "windowmaker-extra: install failed"
newdoc README README.extra
# create wmaker session shell script
echo "#!/bin/bash" > wmaker
echo "/usr/bin/wmaker" >> wmaker
exeinto /etc/X11/Sessions/
doexe wmaker
insinto /etc/X11/dm/Sessions
doins ${FILESDIR}/wmaker.desktop
make_desktop_entry /usr/bin/wmaker
}
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-wm/windowmaker: ChangeLog windowmaker-0.92.0-r4.ebuild
@ 2007-09-17 9:32 Fabian Groffen (grobian)
0 siblings, 0 replies; 5+ messages in thread
From: Fabian Groffen (grobian) @ 2007-09-17 9:32 UTC (permalink / raw
To: gentoo-commits
grobian 07/09/17 09:32:55
Modified: ChangeLog windowmaker-0.92.0-r4.ebuild
Log:
Take egnustep_env out of the loop so that we don't get a rediculously long LDFLAGS with many times the same paths
(Portage version: 2.1.2.12)
Revision Changes Path
1.85 x11-wm/windowmaker/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/windowmaker/ChangeLog?rev=1.85&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/windowmaker/ChangeLog?rev=1.85&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/windowmaker/ChangeLog?r1=1.84&r2=1.85
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/ChangeLog,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- ChangeLog 11 Sep 2007 10:47:26 -0000 1.84
+++ ChangeLog 17 Sep 2007 09:32:55 -0000 1.85
@@ -1,6 +1,11 @@
# ChangeLog for x11-wm/windowmaker
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/ChangeLog,v 1.84 2007/09/11 10:47:26 voyageur Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/ChangeLog,v 1.85 2007/09/17 09:32:55 grobian Exp $
+
+ 17 Sep 2007; Fabian Groffen <grobian@gentoo.org>
+ windowmaker-0.92.0-r4.ebuild:
+ Take egnustep_env out of the loop so that we don't get a rediculously long
+ LDFLAGS with many times the same paths
11 Sep 2007; Bernard Cafarelli <voyageur@gentoo.org>
+files/0.92.0/windowmaker-0.92.0-configure.patch:
1.2 x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild?r1=1.1&r2=1.2
Index: windowmaker-0.92.0-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- windowmaker-0.92.0-r4.ebuild 10 Sep 2007 19:23:21 -0000 1.1
+++ windowmaker-0.92.0-r4.ebuild 17 Sep 2007 09:32:55 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild,v 1.1 2007/09/10 19:23:21 voyageur Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild,v 1.2 2007/09/17 09:32:55 grobian Exp $
inherit autotools eutils gnustep-base flag-o-matic
@@ -44,10 +44,10 @@
epatch ${FILESDIR}/${PV}/${P}-qtdialogsfix.patch
# Fix some paths
+ egnustep_env
for file in ${S}/WindowMaker/*menu*; do
if [ -r $file ]; then
if use gnustep ; then
- egnustep_env
sed -i "s:/usr/local/GNUstep/Applications:${GNUSTEP_SYSTEM_APPS}:g" $file
else
sed -i "s:/usr/local/GNUstep/Applications/WPrefs.app:/usr/bin/:g;" $file
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-wm/windowmaker: ChangeLog windowmaker-0.92.0-r4.ebuild
@ 2007-09-21 14:15 Bernard Cafarelli (voyageur)
0 siblings, 0 replies; 5+ messages in thread
From: Bernard Cafarelli (voyageur) @ 2007-09-21 14:15 UTC (permalink / raw
To: gentoo-commits
voyageur 07/09/21 14:15:07
Modified: ChangeLog windowmaker-0.92.0-r4.ebuild
Log:
Only do egnustep_env when USE=gnustep is set, bug #193111
(Portage version: 2.1.3.9)
Revision Changes Path
1.86 x11-wm/windowmaker/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/windowmaker/ChangeLog?rev=1.86&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/windowmaker/ChangeLog?rev=1.86&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/windowmaker/ChangeLog?r1=1.85&r2=1.86
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/ChangeLog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- ChangeLog 17 Sep 2007 09:32:55 -0000 1.85
+++ ChangeLog 21 Sep 2007 14:15:06 -0000 1.86
@@ -1,6 +1,10 @@
# ChangeLog for x11-wm/windowmaker
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/ChangeLog,v 1.85 2007/09/17 09:32:55 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/ChangeLog,v 1.86 2007/09/21 14:15:06 voyageur Exp $
+
+ 21 Sep 2007; Bernard Cafarelli <voyageur@gentoo.org>
+ windowmaker-0.92.0-r4.ebuild:
+ Only do egnustep_env when USE=gnustep is set, bug #193111
17 Sep 2007; Fabian Groffen <grobian@gentoo.org>
windowmaker-0.92.0-r4.ebuild:
1.3 x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild?r1=1.2&r2=1.3
Index: windowmaker-0.92.0-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- windowmaker-0.92.0-r4.ebuild 17 Sep 2007 09:32:55 -0000 1.2
+++ windowmaker-0.92.0-r4.ebuild 21 Sep 2007 14:15:06 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild,v 1.2 2007/09/17 09:32:55 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild,v 1.3 2007/09/21 14:15:06 voyageur Exp $
inherit autotools eutils gnustep-base flag-o-matic
@@ -44,7 +44,9 @@
epatch ${FILESDIR}/${PV}/${P}-qtdialogsfix.patch
# Fix some paths
- egnustep_env
+ if use gnustep; then
+ egnustep_env
+ fi
for file in ${S}/WindowMaker/*menu*; do
if [ -r $file ]; then
if use gnustep ; then
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-wm/windowmaker: ChangeLog windowmaker-0.92.0-r4.ebuild
@ 2007-09-21 14:47 Bernard Cafarelli (voyageur)
0 siblings, 0 replies; 5+ messages in thread
From: Bernard Cafarelli (voyageur) @ 2007-09-21 14:47 UTC (permalink / raw
To: gentoo-commits
voyageur 07/09/21 14:47:42
Modified: ChangeLog windowmaker-0.92.0-r4.ebuild
Log:
Temporary removal of ~sparc keyword
(Portage version: 2.1.3.9)
Revision Changes Path
1.87 x11-wm/windowmaker/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/windowmaker/ChangeLog?rev=1.87&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/windowmaker/ChangeLog?rev=1.87&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/windowmaker/ChangeLog?r1=1.86&r2=1.87
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog 21 Sep 2007 14:15:06 -0000 1.86
+++ ChangeLog 21 Sep 2007 14:47:42 -0000 1.87
@@ -1,6 +1,11 @@
# ChangeLog for x11-wm/windowmaker
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/ChangeLog,v 1.86 2007/09/21 14:15:06 voyageur Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/ChangeLog,v 1.87 2007/09/21 14:47:42 voyageur Exp $
+
+ 21 Sep 2007; Bernard Cafarelli <voyageur@gentoo.org>
+ windowmaker-0.92.0-r4.ebuild:
+ Temporary removal of ~sparc keyword, until gnustep-make-2.0 is available for
+ this arch
21 Sep 2007; Bernard Cafarelli <voyageur@gentoo.org>
windowmaker-0.92.0-r4.ebuild:
1.4 x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild?r1=1.3&r2=1.4
Index: windowmaker-0.92.0-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- windowmaker-0.92.0-r4.ebuild 21 Sep 2007 14:15:06 -0000 1.3
+++ windowmaker-0.92.0-r4.ebuild 21 Sep 2007 14:47:42 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild,v 1.3 2007/09/21 14:15:06 voyageur Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild,v 1.4 2007/09/21 14:47:42 voyageur Exp $
inherit autotools eutils gnustep-base flag-o-matic
@@ -20,13 +20,13 @@
png? ( >=media-libs/libpng-1.2.1 )
jpeg? ( >=media-libs/jpeg-6b-r2 )
tiff? ( >=media-libs/tiff-3.6.1-r2 )
- gnustep? ( gnustep-base/gnustep-make )"
+ gnustep? ( >=gnustep-base/gnustep-make-2.0 )"
RDEPEND="${DEPEND}
nls? ( >=sys-devel/gettext-0.10.39 )"
SLOT="0"
LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~ppc64 ~x86 ~x86-fbsd"
src_unpack() {
is-flag -fstack-protector && filter-flags -fstack-protector \
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-wm/windowmaker: ChangeLog windowmaker-0.92.0-r4.ebuild
@ 2007-10-03 14:19 Raul Porcel (armin76)
0 siblings, 0 replies; 5+ messages in thread
From: Raul Porcel (armin76) @ 2007-10-03 14:19 UTC (permalink / raw
To: gentoo-commits
armin76 07/10/03 14:19:27
Modified: ChangeLog windowmaker-0.92.0-r4.ebuild
Log:
Re-add ~sparc wrt #189372
(Portage version: 2.1.3.9)
Revision Changes Path
1.88 x11-wm/windowmaker/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/windowmaker/ChangeLog?rev=1.88&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/windowmaker/ChangeLog?rev=1.88&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/windowmaker/ChangeLog?r1=1.87&r2=1.88
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/ChangeLog,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -r1.87 -r1.88
--- ChangeLog 21 Sep 2007 14:47:42 -0000 1.87
+++ ChangeLog 3 Oct 2007 14:19:26 -0000 1.88
@@ -1,6 +1,10 @@
# ChangeLog for x11-wm/windowmaker
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/ChangeLog,v 1.87 2007/09/21 14:47:42 voyageur Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/ChangeLog,v 1.88 2007/10/03 14:19:26 armin76 Exp $
+
+ 03 Oct 2007; Raúl Porcel <armin76@gentoo.org>
+ windowmaker-0.92.0-r4.ebuild:
+ Re-add ~sparc wrt #189372
21 Sep 2007; Bernard Cafarelli <voyageur@gentoo.org>
windowmaker-0.92.0-r4.ebuild:
1.5 x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild?r1=1.4&r2=1.5
Index: windowmaker-0.92.0-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- windowmaker-0.92.0-r4.ebuild 21 Sep 2007 14:47:42 -0000 1.4
+++ windowmaker-0.92.0-r4.ebuild 3 Oct 2007 14:19:26 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild,v 1.4 2007/09/21 14:47:42 voyageur Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/windowmaker-0.92.0-r4.ebuild,v 1.5 2007/10/03 14:19:26 armin76 Exp $
inherit autotools eutils gnustep-base flag-o-matic
@@ -26,7 +26,7 @@
SLOT="0"
LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~ppc64 ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
src_unpack() {
is-flag -fstack-protector && filter-flags -fstack-protector \
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2007-10-03 14:28 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-09-21 14:15 [gentoo-commits] gentoo-x86 commit in x11-wm/windowmaker: ChangeLog windowmaker-0.92.0-r4.ebuild Bernard Cafarelli (voyageur)
-- strict thread matches above, loose matches on Subject: below --
2007-10-03 14:19 Raul Porcel (armin76)
2007-09-21 14:47 Bernard Cafarelli (voyageur)
2007-09-17 9:32 Fabian Groffen (grobian)
2007-09-10 19:23 Bernard Cafarelli (voyageur)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox