blob: 53c11247c6e9a5d72e4485b7553d25e89912db61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# Taras Glek <taras.glek@home.com>
# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-1.4.1.ebuild,v 1.9 2003/02/13 06:58:47 vapier Exp $
IUSE="gnome"
S=${WORKDIR}/$PN/gtk
MY_PV=141
DESCRIPTION="A very powerful editor for programmers"
SRC_URI="http://www.scintilla.org/${PN}${MY_PV}.tgz"
HOMEPAGE="http://www.scintilla.org"
DEPEND="=x11-libs/gtk+-1.2*
gnome? ( gnome-base/gnome-core )"
RDEPEND="=x11-libs/gtk+-1.2*"
SLOT="0"
LICENSE="PYTHON"
KEYWORDS="x86 sparc "
src_compile() {
make -C ../../scintilla/gtk || die
sed -e 's#usr/local#usr#g' \
-e 's#$(datadir)#${D}$(datadir)#g' \
makefile > Makefile.good || die
rm makefile
mv Makefile.good makefile
emake || die
}
src_install () {
dodir /usr
dodir /usr/bin
dodir /usr/share
use gnome && dodir /usr/share/gnome/apps/Applications
make prefix=${D}/usr install || die
mv ${D}/usr/bin/SciTE ${D}/usr/bin/scite
}
|