diff options
author | 2006-01-26 05:45:01 +0000 | |
---|---|---|
committer | 2006-01-26 05:45:01 +0000 | |
commit | 73114102aa0783f67e78d697db946a7801c79b21 (patch) | |
tree | 99209e0718a957e085d9e636b62637013b24f627 /app-editors/xemacs | |
parent | Added modular X deps (bug #115679) (diff) | |
download | historical-73114102aa0783f67e78d697db946a7801c79b21.tar.gz historical-73114102aa0783f67e78d697db946a7801c79b21.tar.bz2 historical-73114102aa0783f67e78d697db946a7801c79b21.zip |
Fix modular-X deps properly. "use? || (...)" is not valid, it should be "use? ( || (...) )".
Package-Manager: portage-2.1_pre3-r1
Diffstat (limited to 'app-editors/xemacs')
-rw-r--r-- | app-editors/xemacs/ChangeLog | 6 | ||||
-rw-r--r-- | app-editors/xemacs/Manifest | 14 | ||||
-rw-r--r-- | app-editors/xemacs/xemacs-21.4.17.ebuild | 6 |
3 files changed, 10 insertions, 16 deletions
diff --git a/app-editors/xemacs/ChangeLog b/app-editors/xemacs/ChangeLog index 8e83378029c5..5831f4411586 100644 --- a/app-editors/xemacs/ChangeLog +++ b/app-editors/xemacs/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-editors/xemacs # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/xemacs/ChangeLog,v 1.59 2006/01/26 02:13:34 mkennedy Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/xemacs/ChangeLog,v 1.60 2006/01/26 05:45:01 robbat2 Exp $ + + 26 Jan 2006; Robin H. Johnson <robbat2@gentoo.org> xemacs-21.4.17.ebuild: + Fix modular-X deps properly. "use? || (...)" is not valid, it should be + "use? ( || (...) )". *xemacs-21.4.17 (26 Jan 2006) diff --git a/app-editors/xemacs/Manifest b/app-editors/xemacs/Manifest index 842313340ebb..f96ff4393d3a 100644 --- a/app-editors/xemacs/Manifest +++ b/app-editors/xemacs/Manifest @@ -1,7 +1,4 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -MD5 fdbbea1a8ef759720782044b671082b3 ChangeLog 10420 +MD5 bb86f3fa159573c7176b32f892bd7f12 ChangeLog 10593 MD5 df382940daa67bb8888fbae22d617cb4 files/README.Gentoo 1426 MD5 6d3780dc77d3dd7c017d8864d2f0b07d files/digest-xemacs-21.4.12 130 MD5 a15e4793a81736335419229a12101bc1 files/digest-xemacs-21.4.15 274 @@ -26,12 +23,5 @@ MD5 c49d5e1449c0ae8eade0e5ec6e3224a1 xemacs-21.4.15-r1.ebuild 5046 MD5 1e7f35e3642c3b31d3e72ec64731e488 xemacs-21.4.15-r2.ebuild 5111 MD5 c8b16d9ce480a33720c9b4ad7b510b63 xemacs-21.4.15-r3.ebuild 5210 MD5 a4f298f675fc5c0ed0ceaa6bfecce583 xemacs-21.4.15.ebuild 3835 -MD5 0e55cb5badddd5fc35215c82ff6b856d xemacs-21.4.17.ebuild 5036 +MD5 4c55f6e81cbcc6fdbf49ad8c56792fe4 xemacs-21.4.17.ebuild 5043 MD5 7dc7dbe3b86bdf29083a4a85a4f232d5 xemacs-21.4.9.ebuild 4179 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.2 (GNU/Linux) - -iD8DBQFD2DBcyiNZaEAZA+ARAu77AJ0V8OgGGepGJOUUJQ2CSQwuZPIpIgCeL/LC -rp5fb6MVn+pboaYFNDqpzZw= -=4dok ------END PGP SIGNATURE----- diff --git a/app-editors/xemacs/xemacs-21.4.17.ebuild b/app-editors/xemacs/xemacs-21.4.17.ebuild index afa52829808b..dad7fcb62092 100644 --- a/app-editors/xemacs/xemacs-21.4.17.ebuild +++ b/app-editors/xemacs/xemacs-21.4.17.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/xemacs/xemacs-21.4.17.ebuild,v 1.1 2006/01/26 02:13:34 mkennedy Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/xemacs/xemacs-21.4.17.ebuild,v 1.2 2006/01/26 05:45:01 robbat2 Exp $ inherit eutils @@ -28,7 +28,7 @@ DEPEND="virtual/libc nas? ( media-libs/nas ) dnd? ( x11-libs/dnd ) motif? ( >=x11-libs/openmotif-2.1.30 ) - athena? || ( ( $X_DEPEND x11-libs/libXaw ) virtual/x11 ) + athena? ( || ( ( $X_DEPEND x11-libs/libXaw ) virtual/x11 ) ) Xaw3d? ( x11-libs/Xaw3d ) neXt? ( x11-libs/neXtaw ) xface? ( media-libs/compface ) @@ -38,7 +38,7 @@ DEPEND="virtual/libc canna? ( app-i18n/canna ) !amd64? ( freewnn? ( app-i18n/freewnn ) ) >=sys-libs/ncurses-5.2 - X? || ( ( $X_DEPEND ) virtual/x11 )" + X? ( || ( ( $X_DEPEND ) virtual/x11 ) )" PDEPEND="app-xemacs/xemacs-base mule? ( app-xemacs/mule-base )" |