blob: 622b98e8d8768ef94c60bd1e4370f0304e923de5 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/fte/fte-20020324-r2.ebuild,v 1.7 2005/01/01 13:24:52 eradicator Exp $
inherit eutils
DESCRIPTION="Lightweight text-mode editor"
HOMEPAGE="http://fte.sourceforge.net"
SRC_URI="mirror://sourceforge/fte/${P}-src.zip
mirror://sourceforge/fte/${P}-common.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc sparc"
IUSE="gpm slang X"
RDEPEND=">=sys-libs/ncurses-5.2
gpm? ( >=sys-libs/gpm-1.20 )"
DEPEND="${RDEPEND}
slang? ( sys-libs/slang )
app-arch/unzip
X? ( virtual/x11 )"
set_targets() {
export TARGETS=""
use slang && TARGETS="$TARGETS sfte"
use X && TARGETS="$TARGETS xfte"
use gpm && TARGETS="$TARGETS vfte"
}
src_unpack() {
unpack fte-20020324-src.zip
unpack fte-20020324-common.zip
mv fte fte-20020324
cd ${S}
epatch ${FILESDIR}/configpath.patch
set_targets
sed \
-e "s:@targets@:${TARGETS}:" \
-e "s:@cflags@:${CFLAGS}:" \
-i src/fte-unix.mak
}
src_compile() {
DEFFLAGS="PREFIX=/usr CONFIGDIR=/usr/share/fte \
DEFAULT_FTE_CONFIG=../config/main.fte OPTIMIZE="
set_targets
emake $DEFFLAGS TARGETS="$TARGETS" all || die
}
src_install() {
local files
into /usr
set_targets
files="${TARGETS} cfte compkeys"
for i in ${files} ; do
dobin src/$i ;
done
dobin ${FILESDIR}/fte
dodoc Artistic CHANGES BUGS HISTORY README TODO
keepdir etc/fte
dodir usr/share/doc/${P}/html
cp doc/INDEX doc/*.html ${D}/usr/share/doc/${P}/html
dodir usr/share/fte
cp -R config/* ${D}/usr/share/fte
rm -rf ${D}/usr/share/fte/CVS
}
pkg_postinst() {
einfo "Compiling configuration..."
cd /usr/share/fte
/usr/bin/cfte main.fte /etc/fte/system.fterc
}
|