blob: 9832d6e36236a1098d8a020caec913196b2e96d8 (
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/fte/fte-20051115.ebuild,v 1.6 2006/11/01 20:51:11 mabi 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="~alpha amd64 ppc -sparc x86"
IUSE="gpm slang X"
S=${WORKDIR}/${PN}
RDEPEND=">=sys-libs/ncurses-5.2
X? (
|| (
(
x11-libs/libXdmcp
x11-libs/libXau
x11-libs/libX11
)
virtual/x11
)
)
gpm? ( >=sys-libs/gpm-1.20 )"
DEPEND="${RDEPEND}
slang? ( sys-libs/slang )
app-arch/unzip"
set_targets() {
export TARGETS=""
use slang && TARGETS="$TARGETS sfte"
use X && TARGETS="$TARGETS xfte"
TARGETS="$TARGETS vfte"
}
src_unpack() {
unpack ${P}-src.zip
unpack ${P}-common.zip
cd ${S}
epatch ${FILESDIR}/fte-gcc34
epatch ${FILESDIR}/${PN}-new_keyword.patch
set_targets
sed \
-e "s:@targets@:${TARGETS}:" \
-e "s:@cflags@:${CFLAGS}:" \
-i src/fte-unix.mak
if ! use gpm; then
sed \
-e "s:#define USE_GPM://#define USE_GPM:" \
-i src/con_linux.cpp
sed \
-e "s:-lgpm::" \
-i src/fte-unix.mak
fi
cat /usr/include/linux/keyboard.h \
| grep -v "wait.h" \
> src/hacked_keyboard.h
sed \
-e "s:<linux/keyboard.h>:\"hacked_keyboard.h\":" \
-i src/con_linux.cpp
}
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
keepdir /etc/fte
into /usr
set_targets
files="${TARGETS} cfte"
for i in ${files} ; do
dobin src/$i ;
done
dobin ${FILESDIR}/fte
dodoc Artistic CHANGES BUGS HISTORY README TODO
dohtml doc/*
dodir usr/share/fte
insinto /usr/share/fte
doins -r config/*
rm -rf ${D}/usr/share/fte/CVS
}
pkg_postinst() {
ebegin "Compiling configuration"
cd /usr/share/fte || die "missing configuration dir"
/usr/bin/cfte main.fte /etc/fte/system.fterc
eend $?
}
|