blob: 68f4ea77963fd9a7a8c1ca206f543a0b2b627178 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/twin/twin-0.4.5.ebuild,v 1.15 2004/06/28 13:00:58 vapier Exp $
DESCRIPTION="A text-mode window environment"
HOMEPAGE="http://twin.sourceforge.net/"
SRC_URI="mirror://sourceforge/twin/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
KEYWORDS="x86 ppc sparc alpha hppa ia64 amd64"
IUSE="X gtk ggi"
DEPEND="X? ( virtual/x11 )
ggi? ( >=media-libs/libggi-1.9 )
gtk? ( =x11-libs/gtk+-1.2* )
>=sys-libs/gpm-1.19.3
>=sys-libs/ncurses-5.2"
src_compile() {
local myconf
use X \
&& myconf="--with-x --enable-hw-x11=yes"
use ggi \
&& myconf="${myconf} --enable-hw-ggi=yes" \
|| myconf="${myconf} --enable-hw-ggi=no"
use gtk \
&& myconf="${myconf} --enable-tt-hw-gtk=yes" \
|| myconf="${myconf} --enable-tt-hw-gtk=no"
econf \
--enable-shlibs=yes \
--enable-modules=yes \
--enable-unicode=yes \
--enable-socket=yes \
--enable-socket-gz=yes \
--enable-socket-pthreads=yes \
--enable-socket-alien=yes \
--enable-h2-tty-termcap=yes \
--enable-term=yes \
${myconf} \
|| die
make || die
}
src_install() {
einstall || die
if use X ; then
insinto /usr/X11R6/lib/X11/fonts/misc
doins fonts/vga.pcf.gz
fi
rm -rf ${D}/usr/share/twin/{BUGS,docs,COP*,READ*,Change*,INSTALL*}
dodoc BUGS Change* README* TODO/TODO TODO/twin-thoughts
doman docs/twin.1; rm -rf docs/twin.1
dodoc docs/*
}
pkg_postinst() {
if use X ; then
/usr/X11R6/bin/mkfontdir /usr/X11R6/lib/X11/fonts/misc
/usr/X11R6/bin/xset fp rehash
fi
}
pkg_postrm() {
if use X ; then
/usr/X11R6/bin/mkfontdir /usr/X11R6/lib/X11/fonts/misc
/usr/X11R6/bin/xset fp rehash
fi
}
|