blob: 48e41f9572b5d9c0bc34c0521c5d4409a2cb5c1a (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/app-editors/fte/fte-20010819-r2.ebuild,v 1.5 2002/07/11 06:30:11 drobbins Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Lightweight text-mode editor"
SRC_URI="mirror://sourceforge/fte/fte-20010819-src.zip
mirror://sourceforge/fte/fte-20010819-common.zip"
HOMEPAGE="http://fte.sourceforge.net"
DEPEND="virtual/glibc
app-arch/unzip
>=sys-libs/ncurses-5.2
>=sys-libs/gpm-1.20"
RDEPEND="virtual/glibc
>=sys-libs/ncurses-5.2
gpm? ( >=sys-libs/gpm-1.20 )"
TARGETS=""
if [ "`use slang`" ] ; then
TARGETS="$TARGETS sfte"
fi
if [ "`use X`" ] ; then
TARGETS="$TARGETS xfte"
fi
if [ "`use gpm`" ] ; then
TARGETS="$TARGETS vfte"
fi
src_unpack() {
cd ${WORKDIR}
unpack fte-20010819-src.zip
unpack fte-20010819-common.zip
mv fte fte-20010819
cd ${S}; patch -p0 < ${FILESDIR}/${PF}-gentoo.diff
cp src/fte-unix.mak src/fte-unix.mak.orig
cat src/fte-unix.mak.orig | \
sed "s/@targets@/${TARGETS}/" | \
sed "s/@cflags@/${CFLAGS}/" \
> src/fte-unix.mak
}
src_compile() {
emake all || die
cd config
../src/cfte main.fte ../src/system.fterc
}
src_install () {
local files
into /usr
files="${TARGETS} cfte compkeys"
for i in ${files} ; do
dobin src/$i ;
done
dodoc Artistic CHANGES BUGS COPYING HISTORY README TODO
dodir etc/fte
cp src/system.fterc ${D}/etc/fte/system.fterc
dodir usr/share/doc/${P}/html
cp doc/INDEX doc/*.html ${D}/usr/share/doc/${P}/html
# if [ -a ${D}/usr/bin/xfte ] ; then
# into /usr/X11R6 ;
# dobin src/xfte ;
# rm ${D}/usr/bin/xfte ;
# fi
dodir usr/share/fte
cp -R config/* ${D}/usr/share/fte
rm -rf ${D}/usr/share/fte/CVS
}
|