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 | 5fcb008a7836ac85e768815b0c6efe63266de170 (patch) | |
tree | 72249482eb3fe5dc1b5b5da59a1f1a6953492458 /app-editors | |
parent | Closed bugs #59315, #59265 and #59251. (Manifest recommit) (diff) | |
download | gentoo-2-5fcb008a7836ac85e768815b0c6efe63266de170.tar.gz gentoo-2-5fcb008a7836ac85e768815b0c6efe63266de170.tar.bz2 gentoo-2-5fcb008a7836ac85e768815b0c6efe63266de170.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/mp-3.3.1.ebuild | 6 |
2 files changed, 7 insertions, 4 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/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 |