diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-08-27 11:51:49 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-08-27 11:51:49 +0000 |
commit | a0a643b48ce530d877aa1cdfab4d82b79cffca4f (patch) | |
tree | 3e8c2aa8e50f4e90daefddc03fb7fdd9335981d5 /app-editors | |
parent | Closed bugs #59315, #59265 and #59251. (diff) | |
download | historical-a0a643b48ce530d877aa1cdfab4d82b79cffca4f.tar.gz historical-a0a643b48ce530d877aa1cdfab4d82b79cffca4f.tar.bz2 historical-a0a643b48ce530d877aa1cdfab4d82b79cffca4f.zip |
syntax fix for use flags
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/mp/ChangeLog | 5 | ||||
-rw-r--r-- | app-editors/mp/Manifest | 10 | ||||
-rw-r--r-- | app-editors/mp/mp-3.3.1.ebuild | 6 |
3 files changed, 12 insertions, 9 deletions
diff --git a/app-editors/mp/ChangeLog b/app-editors/mp/ChangeLog index 9921bb24309d..f7c2f3d7513c 100644 --- a/app-editors/mp/ChangeLog +++ b/app-editors/mp/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-editors/mp # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/mp/ChangeLog,v 1.20 2004/08/07 22:58:00 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/mp/ChangeLog,v 1.21 2004/08/27 11:51:49 mr_bones_ Exp $ + + 27 Aug 2004; Michael Sterrett <mr_bones_@gentoo.org> mp-3.3.1.ebuild: + syntax fix for use flags 08 Aug 2004; Bryan Østergaard <kloeri@gentoo.org> -mp-3.2.7.ebuild, -mp-3.2.8.ebuild, mp-3.3.1.ebuild: diff --git a/app-editors/mp/Manifest b/app-editors/mp/Manifest index 55912b0bbed6..bbcf48eeb41a 100644 --- a/app-editors/mp/Manifest +++ b/app-editors/mp/Manifest @@ -1,11 +1,11 @@ -MD5 41e6961673db80bbad7fed0132594910 mp-3.2.11.ebuild 1034 -MD5 c41fc68f79e82d054803a49682dac02a mp-3.3.1.ebuild 1172 -MD5 e4600d51770bb9fb9d083ebfb0633aab mp-3.2.10.ebuild 945 +MD5 85bfbfa24ff7f12ff6fca591478d68c7 ChangeLog 2262 MD5 166ede21d137a702e20f482c011b4a0e mp-3.1.9.ebuild 671 -MD5 bbe9d3a2ba2c8f0494107a859111e229 ChangeLog 2159 +MD5 1b27b367877b19d5ad3478d1b472dff8 mp-3.3.1.ebuild 1177 +MD5 e4600d51770bb9fb9d083ebfb0633aab mp-3.2.10.ebuild 945 +MD5 41e6961673db80bbad7fed0132594910 mp-3.2.11.ebuild 1034 MD5 1652522405f5936eb29776ef8d5ffa5b metadata.xml 310 MD5 135880e17116622cd1cfff6f0b370a29 files/digest-mp-3.1.9 59 -MD5 7835cbf7dd8763f5ab1be1769263021d files/digest-mp-3.3.1 60 MD5 ef0f5c3d7fae6d678f94005df3d90866 files/digest-mp-3.2.10 61 MD5 7c0b9a8a327bbfc4db185cdefaa14767 files/digest-mp-3.2.11 61 MD5 82dd8f227fdd5b56584b2adf5242a53b files/gentoo-synh-mp.patch-3.2.11 2027 +MD5 7835cbf7dd8763f5ab1be1769263021d files/digest-mp-3.3.1 60 diff --git a/app-editors/mp/mp-3.3.1.ebuild b/app-editors/mp/mp-3.3.1.ebuild index 7a712112d1f0..15b84909c124 100644 --- a/app-editors/mp/mp-3.3.1.ebuild +++ b/app-editors/mp/mp-3.3.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/mp/mp-3.3.1.ebuild,v 1.2 2004/08/07 22:58:00 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/mp/mp-3.3.1.ebuild,v 1.3 2004/08/27 11:51:49 mr_bones_ Exp $ DESCRIPTION="Minimum Profit: A text editor for programmers" HOMEPAGE="http://www.triptico.com/software/mp.html" @@ -21,10 +21,10 @@ RDEPEND="${DEPEND} src_compile() { if use ncurses && use gtk ; then sh config.sh ${myconf}|| die "Configure Failed" - elif use ncurses || !use gtk ; then + elif use ncurses || ! use gtk ; then myopts="${myopts} --without-gtk" sh config.sh ${myconf} || die "Configure Failed" - elif use gtk && !use ncurses ; then + elif use gtk && ! use ncurses ; then myopts="${myopts} --without-curses" sh config.sh ${myconf} || die "Configure Failed" fi |