diff options
author | Geert Bevin <gbevin@gentoo.org> | 2001-12-06 13:45:10 +0000 |
---|---|---|
committer | Geert Bevin <gbevin@gentoo.org> | 2001-12-06 13:45:10 +0000 |
commit | 1267ca637c3f9babae509722396a23a5e574da90 (patch) | |
tree | 35a311acbd410db7ebd893ba5a21567e1276f84e /incoming | |
parent | fixed palm support, available in -r1 (diff) | |
download | historical-1267ca637c3f9babae509722396a23a5e574da90.tar.gz historical-1267ca637c3f9babae509722396a23a5e574da90.tar.bz2 historical-1267ca637c3f9babae509722396a23a5e574da90.zip |
Cleanup of ebuild. Fixed out of tmpdir written files. Added optional
gnome dependancy.
Diffstat (limited to 'incoming')
-rw-r--r-- | incoming/scite-1.4.1.ebuild | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/incoming/scite-1.4.1.ebuild b/incoming/scite-1.4.1.ebuild deleted file mode 100644 index 76417cc8a89c..000000000000 --- a/incoming/scite-1.4.1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Taras Glek <taras.glek@home.com> -# /home/cvsroot/gentoo-x86/net-www/amaya/amaya-4.1-r1.ebuild,v 1.1 2001/10/06 11:33:58 verwilst Exp - -S=${WORKDIR}/$PN/gtk -MY_PV=141 -DESCRIPTION="A very powerfull editor for programmers" -SRC_URI="http://www.scintilla.org/${PN}${MY_PV}.tgz" -HOMEPAGE="http://www.scintilla.org" - -DEPEND=">=x11-libs/gtk+-1.2.10-r4" -RDEPEND=">=x11-libs/gtk+-1.2.10-r4" - -src_compile() { - - try make -C ../../scintilla/gtk - try sed 's/usr\/local/usr/g' makefile > Makefile.good - rm makefile - mv Makefile.good makefile # could just use perl -pi -e, but perl might not be installed or something - try make -} - -src_install () { - - dodir /usr - dodir /usr/bin - dodir /usr/share - try make prefix=${D}/usr install - mv ${D}/usr/bin/SciTE ${D}/usr/bin/scite -} - |