diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-03-25 07:36:28 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-03-25 07:36:28 +0000 |
commit | 164f89c31debdeaa98b35dbf2ced0ca00eb34dc2 (patch) | |
tree | 063ee832511e1aa3c72141d48196c7c0bcd07160 /app-editors/scite | |
parent | don't use deprecated ? : use syntax (diff) | |
download | historical-164f89c31debdeaa98b35dbf2ced0ca00eb34dc2.tar.gz historical-164f89c31debdeaa98b35dbf2ced0ca00eb34dc2.tar.bz2 historical-164f89c31debdeaa98b35dbf2ced0ca00eb34dc2.zip |
don't use deprecated ? : use syntax
Diffstat (limited to 'app-editors/scite')
-rw-r--r-- | app-editors/scite/ChangeLog | 6 | ||||
-rw-r--r-- | app-editors/scite/scite-1.5.6.ebuild | 8 | ||||
-rw-r--r-- | app-editors/scite/scite-1.5.7.ebuild | 8 |
3 files changed, 11 insertions, 11 deletions
diff --git a/app-editors/scite/ChangeLog b/app-editors/scite/ChangeLog index 8503900ede17..945f1dbdea67 100644 --- a/app-editors/scite/ChangeLog +++ b/app-editors/scite/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-editors/scite # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.17 2004/02/23 14:10:58 bazik Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.18 2004/03/25 07:31:05 mr_bones_ Exp $ + + 24 Mar 2004; Michael Sterrett <mr_bones_@gentoo.org> scite-1.5.6.ebuild, + scite-1.5.7.ebuild: + don't use deprecated ? : use syntax 23 Feb 2004; Sven Blumenstein <bazik@gentoo.org> scite-1.5.8.ebuild: Stable on sparc. diff --git a/app-editors/scite/scite-1.5.6.ebuild b/app-editors/scite/scite-1.5.6.ebuild index c88eb570a48a..c0696f157d86 100644 --- a/app-editors/scite/scite-1.5.6.ebuild +++ b/app-editors/scite/scite-1.5.6.ebuild @@ -1,7 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-1.5.6.ebuild,v 1.2 2004/01/09 01:52:08 liquidx Exp $ - +# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-1.5.6.ebuild,v 1.3 2004/03/25 07:31:05 mr_bones_ Exp $ MY_PV=$(echo ${PV} | sed 's:\.::g') @@ -9,7 +8,8 @@ DESCRIPTION="A very powerful editor for programmers" SRC_URI="mirror://sourceforge/scintilla/${PN}${MY_PV}.tgz" HOMEPAGE="http://www.scintilla.org" -DEPEND="gtk2? ( >=x11-libs/gtk+-2 ) : ( =x11-libs/gtk+-1.2* ) +DEPEND="gtk2? ( >=x11-libs/gtk+-2 ) + !gtk2? ( =x11-libs/gtk+-1.2* ) >=sys-apps/sed-4" S=${WORKDIR}/${PN}/gtk @@ -63,6 +63,4 @@ src_install () { doman ../doc/scite.1 dodoc ../License.txt ../README - } - diff --git a/app-editors/scite/scite-1.5.7.ebuild b/app-editors/scite/scite-1.5.7.ebuild index c302234d7fba..3549197e2eff 100644 --- a/app-editors/scite/scite-1.5.7.ebuild +++ b/app-editors/scite/scite-1.5.7.ebuild @@ -1,7 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-1.5.7.ebuild,v 1.2 2004/01/09 01:52:08 liquidx Exp $ - +# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-1.5.7.ebuild,v 1.3 2004/03/25 07:31:05 mr_bones_ Exp $ MY_PV=$(echo ${PV} | sed 's:\.::g') @@ -9,7 +8,8 @@ DESCRIPTION="A very powerful editor for programmers" SRC_URI="mirror://sourceforge/scintilla/${PN}${MY_PV}.tgz" HOMEPAGE="http://www.scintilla.org" -DEPEND="gtk2? ( >=x11-libs/gtk+-2 ) : ( =x11-libs/gtk+-1.2* ) +DEPEND="gtk2? ( >=x11-libs/gtk+-2 ) + !gtk2? ( =x11-libs/gtk+-1.2* ) >=sys-apps/sed-4" S=${WORKDIR}/${PN}/gtk @@ -69,6 +69,4 @@ src_install () { doman ../doc/scite.1 dodoc ../License.txt ../README - } - |