diff options
author | Alastair Tse <liquidx@gentoo.org> | 2003-10-13 20:27:36 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2003-10-13 20:27:36 +0000 |
commit | cf82ee9b9b54d95350ea9c5fe357a4d77c5dbb41 (patch) | |
tree | 6d179a732cec38ce703bd88715f674eec5a89e82 /app-editors | |
parent | Unmasking screen 4.0.1, it's been working for me. (diff) | |
download | gentoo-2-cf82ee9b9b54d95350ea9c5fe357a4d77c5dbb41.tar.gz gentoo-2-cf82ee9b9b54d95350ea9c5fe357a4d77c5dbb41.tar.bz2 gentoo-2-cf82ee9b9b54d95350ea9c5fe357a4d77c5dbb41.zip |
make it so people without CXX set can still use this
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/scite/ChangeLog | 5 | ||||
-rw-r--r-- | app-editors/scite/Manifest | 4 | ||||
-rw-r--r-- | app-editors/scite/scite-1.5.4.ebuild | 4 |
3 files changed, 8 insertions, 5 deletions
diff --git a/app-editors/scite/ChangeLog b/app-editors/scite/ChangeLog index 5dc03738a81a..9c0d37cf0470 100644 --- a/app-editors/scite/ChangeLog +++ b/app-editors/scite/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-editors/scite # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.12 2003/09/11 10:40:08 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.13 2003/10/13 20:27:29 liquidx Exp $ + + 13 Oct 2003; Alastair Tse <liquidx@gentoo.org> scite-1.5.4.ebuild: + make it foolproof to CXX not being set 11 Sep 2003; Alastair Tse <liquidx@gentoo.org> scite-1.5.4.ebuild: really fix .desktop issue diff --git a/app-editors/scite/Manifest b/app-editors/scite/Manifest index 25024ffa9ecc..e21d404de0ad 100644 --- a/app-editors/scite/Manifest +++ b/app-editors/scite/Manifest @@ -1,8 +1,8 @@ -MD5 8803c5b9046501f84a1a35053985afc8 ChangeLog 2183 +MD5 226e913d074f499fbc1532a56dcb5d2b ChangeLog 2294 MD5 8f906ffe0aa837e5e26fe03af3043461 metadata.xml 219 MD5 9b99c735833410c4d863b47c0ee61d60 scite-1.4.9.ebuild 1329 MD5 7954463b548282c780a5674346e39c54 scite-1.5.1.ebuild 1330 -MD5 37c9241048829087459facd484908441 scite-1.5.4.ebuild 1675 +MD5 eb336b16dcbf235faeb51eabf76314a1 scite-1.5.4.ebuild 1680 MD5 e21b1647de51e2cea2682beaf5522ea7 files/digest-scite-1.4.9 57 MD5 9ee947d9de84f03b11e6b1f7f195d87a files/digest-scite-1.5.1 57 MD5 8f703db06b0c2938ae6349c2970ead59 files/digest-scite-1.5.4 57 diff --git a/app-editors/scite/scite-1.5.4.ebuild b/app-editors/scite/scite-1.5.4.ebuild index 9b1be9ea9262..82f953e71689 100644 --- a/app-editors/scite/scite-1.5.4.ebuild +++ b/app-editors/scite/scite-1.5.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 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.4.ebuild,v 1.4 2003/10/08 09:40:44 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-1.5.4.ebuild,v 1.5 2003/10/13 20:27:29 liquidx Exp $ MY_PV=$(echo ${PV} | sed 's:\.::g') @@ -29,7 +29,7 @@ src_unpack() { -e 's#/gnome/apps/Applications#/applications#' \ -e "s#^CXXFLAGS=#CXXFLAGS=${CXXFLAGS} #" \ -e "s#^\(CXXFLAGS=.*\)-Os#\1#" \ - -e "s#^CC =\(.*\)#CC = ${CXX}#" \ + -e "s#^CC =\(.*\)#CC = ${CXX:-g++}#" \ || die "error patching makefile" } |