diff options
author | Armando Di Cianno <fafhrd@gentoo.org> | 2005-07-05 07:18:29 +0000 |
---|---|---|
committer | Armando Di Cianno <fafhrd@gentoo.org> | 2005-07-05 07:18:29 +0000 |
commit | ecadc1909f46fa9f22afee3d5c8769f96252fea0 (patch) | |
tree | cff51e564987dec0bbe0b6b756add74cf3943e83 /x11-wm | |
parent | amd64/mmx fixes for bug 97963 ; more changes (diff) | |
download | historical-ecadc1909f46fa9f22afee3d5c8769f96252fea0.tar.gz historical-ecadc1909f46fa9f22afee3d5c8769f96252fea0.tar.bz2 historical-ecadc1909f46fa9f22afee3d5c8769f96252fea0.zip |
Fixes for bug 97959
Package-Manager: portage-2.0.51.22-r1
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/windowmaker/ChangeLog | 6 | ||||
-rw-r--r-- | x11-wm/windowmaker/Manifest | 4 | ||||
-rw-r--r-- | x11-wm/windowmaker/windowmaker-0.92.0.ebuild | 10 |
3 files changed, 13 insertions, 7 deletions
diff --git a/x11-wm/windowmaker/ChangeLog b/x11-wm/windowmaker/ChangeLog index 821e2b6f198d..b7b63529c1bc 100644 --- a/x11-wm/windowmaker/ChangeLog +++ b/x11-wm/windowmaker/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-wm/windowmaker # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/ChangeLog,v 1.54 2005/07/05 07:09:16 fafhrd Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/ChangeLog,v 1.55 2005/07/05 07:18:29 fafhrd Exp $ + + 05 Jul 2005; Armando Di Cianno <fafhrd@gentoo.org> + windowmaker-0.92.0.ebuild: + Fixes for bug 97959 05 Jul 2005; Armando Di Cianno <fafhrd@gentoo.org> windowmaker-0.92.0.ebuild: diff --git a/x11-wm/windowmaker/Manifest b/x11-wm/windowmaker/Manifest index 9b4c8b56350e..a670b48aca03 100644 --- a/x11-wm/windowmaker/Manifest +++ b/x11-wm/windowmaker/Manifest @@ -2,9 +2,9 @@ MD5 af77ad41a8f29bcb58d36f2816d8f91c windowmaker-0.91.0-r1.ebuild 5921 MD5 350d1c8fc3f110fa9bbd0f7a681ec880 windowmaker-0.80.2-r2.ebuild 3463 MD5 056f320591b95b4adaec5b906ae25035 windowmaker-0.80.2-r4.ebuild 4094 MD5 6dfb07e767918268038ad952d0e38029 windowmaker-0.91.0-r7.ebuild 6800 -MD5 6355aeea8355297f3a777aaccd5bdceb ChangeLog 14003 +MD5 f755b394f5eb8cf550b56271032fb28e ChangeLog 14108 MD5 641b83c6027dc91a4ac14e1749a58b41 metadata.xml 222 -MD5 c6bcbc40990c2d5b4ddbcf1121484876 windowmaker-0.92.0.ebuild 4881 +MD5 c3d7cec14eac11ddae08b1fb772e62d9 windowmaker-0.92.0.ebuild 4911 MD5 b5304655d4ff5441989ab94a1bdc9506 files/digest-windowmaker-0.80.2-r2 144 MD5 b5304655d4ff5441989ab94a1bdc9506 files/digest-windowmaker-0.80.2-r4 144 MD5 8b11b75a0ece3b854bf47e03ded7e0ba files/digest-windowmaker-0.91.0-r1 144 diff --git a/x11-wm/windowmaker/windowmaker-0.92.0.ebuild b/x11-wm/windowmaker/windowmaker-0.92.0.ebuild index b48d7258b8a5..a27c719d0d8f 100644 --- a/x11-wm/windowmaker/windowmaker-0.92.0.ebuild +++ b/x11-wm/windowmaker/windowmaker-0.92.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 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.ebuild,v 1.3 2005/07/05 07:09:16 fafhrd Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/windowmaker-0.92.0.ebuild,v 1.4 2005/07/05 07:18:29 fafhrd Exp $ inherit eutils gnustep-funcs flag-o-matic @@ -60,9 +60,11 @@ src_compile() { myconf="${myconf} --with-gnustepdir=/usr/lib/GNUstep/Applications" fi - use nls \ - && export LINGUAS="`ls po/*.po | sed 's:po/\(.*\)\.po$:\1:'`" \ - || myconf="${myconf} --disable-locale" + 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 \ |