Magellan Linux

Contents of /smage/trunk/extras/eterm/eterm-0.9.5-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1192 - (show annotations) (download)
Fri Jan 28 23:03:52 2011 UTC (13 years, 3 months ago) by niro
File size: 1466 byte(s)
auto added: ver bump to 0.9.5-r1
1 # $Id: eterm-0.9.5-r3.smage2 3551 2009-10-26 11:51:10Z niro $
2
3 PNAME="eterm"
4 PVER="0.9.5"
5 PBUILD="r1"
6
7 PCATEGORIE="x11-terms"
8 STATE="unstable"
9
10 DESCRIPTION="Eterm is a color vt102 terminal emulator intended as a replacement for xterm."
11 HOMEPAGE="http://www.eterm.org/"
12
13 DEPEND=">= x11-libs/libX11-1
14 >= x11-libs/libXmu-1
15 >= x11-libs/libXt-1
16 >= x11-libs/libICE-1
17 >= x11-libs/libSM-1
18 >= x11-libs/libast-0.7
19 >= media-libs/imlib2-1.4"
20
21 SDEPEND=">= sys-apps/sed-4
22 >= x11-proto/xextproto-1
23 >= x11-proto/xproto-1"
24
25 SRCFILE="${PNAME/et/Et}-${PVER}.tar.gz"
26 SRCDIR="${BUILDDIR}/${PNAME/et/Et}-${PVER}"
27
28 sminclude mtools
29
30 SRC_URI=(
31 http://www.eterm.org/download/${SRCFILE}
32 mirror://${PNAME}/${SRCFILE}
33 mirror://${PNAME}/${SRCFILE2}
34 )
35
36 UP2DATE="updatecmd ${HOMEPAGE}/download/ | grep ${PNAME/et/Et}-[0-9] | lasttarball gz"
37
38 src_prepare()
39 {
40 munpack ${SRCFILE} || die
41 }
42
43 src_compile()
44 {
45 cd ${SRCDIR}
46
47 # enable mmx only on x86 but not x86_64 and others
48 local my_opts=--disable-mmx
49 [[ ${ARCH} = i*86 ]] && my_opts=--enable-mmx
50
51 mconfigure \
52 --with-x \
53 --with-imlib \
54 --with-delete=execute \
55 --with-backspace=auto \
56 --enable-trans \
57 --enable-multi-charset \
58 ${my_opts} \
59 || die
60
61 mmake || die
62 }
63
64 src_install()
65 {
66 cd ${SRCDIR}
67
68 # needed directories
69 minstalldir /usr/share/terminfo || die
70 mmake DESTDIR=${BINDIR} TIC="tic -o ${BINDIR}/usr/share/terminfo" install || die
71 minstalldocs Changelog README ReleaseNotes{,.1} bg/README.backgrounds || die
72 }