blob: c5d4205729d52b3c6c8e319f89aadeb437bddfdd (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xaos/xaos-3.2.ebuild,v 1.1 2006/04/10 11:54:21 phosphan Exp $
inherit eutils
IUSE="X svga aalib nls"
MY_PN=XaoS
MY_P=${MY_PN}-${PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="A very fast real-time fractal zoomer"
HOMEPAGE="http://sourceforge.net/projects/xaos/"
SRC_URI="mirror://sourceforge/xaos/${MY_P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~amd64 ~sparc"
RDEPEND="X? (
|| (
virtual/x11
(
x11-libs/libX11
x11-libs/libXxf86dga
x11-libs/libXext
x11-libs/libXxf86vm
)
)
)
svga? ( >=media-libs/svgalib-1.4.3 )
aalib? ( media-libs/aalib )
sys-libs/zlib
media-libs/libpng"
# xaos has ggi support, but it doesn't build
# ggi? ( media-libs/libggi )
DEPEND="${RDEPEND}
X? (
|| (
virtual/x11
(
x11-proto/xf86vidmodeproto
x11-proto/xextproto
x11-proto/xf86dgaproto
x11-proto/xproto
)
)
)"
src_compile() {
local myconf
use X || myconf="--with-x11-driver=no"
# use dga || myconf="${myconf} --with-dga-driver=no"
# ggi support removed due to upstream bug
#use ggi ||
myconf="${myconf} --with-ggi-driver=no"
use svga || myconf="${myconf} --with-svga-driver=no"
# use aalib || myconf="${myconf} --with-aa-driver=no"
#i18n support is quite broken in XaoS, it gets installed
#anyway, so we remove it later during install if not desired
use nls || myconf="${myconf} --with-i18n=no"
./configure --prefix=/usr ${myconf} && make || die
}
src_install() {
# these get installed, assuming that the directories exist!
mkdir -p ${D}/usr/share/locale/{hu,es,fr,cs,de}/LC_MESSAGES
mkdir -p ${D}/usr/share/{man,info}
make \
prefix=${D}/usr \
infodir=${D}/usr/share/info \
mandir=${D}/usr/share/man \
LOCALEDIR=${D}/usr/share/locale \
install || die
use nls || rm -r ${D}/usr/share/locale
dodoc ChangeLog* COPYING INSTALL* TODO*
}
|