blob: 79b705a025ac906871c5a5f98d86aefb6be0728f (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/metisse/metisse-0.3.5.ebuild,v 1.5 2005/07/12 04:53:26 josejx Exp $
inherit eutils
# fc is broken
IUSE="truetype xv opengl mmx"
DESCRIPTION="Experimental X desktop with some OpenGL capacity."
SRC_URI="http://insitu.lri.fr/~chapuis/software/metisse/${P}.tar.bz2"
HOMEPAGE="http://insitu.lri.fr/~chapuis/metisse"
DEPEND="virtual/x11
>=x11-libs/nucleo-0.1_p20041216
truetype? ( media-libs/freetype )"
RDEPEND="${DEPEND}
!x11-wm/fvwm"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc -amd64"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/metisse-0.3.5-mmx-config.patch
libtoolize --copy --force
}
src_compile() {
local myconf
if use opengl && use x86 ; then
myconf="${myconf} --enable-glx-x86"
elif use opengl ; then
myconf="${myconf} --enable-glx --disable-glx-x86"
else
myconf="${myconf} --disable-glx --disable-glx-x86"
fi
if use mmx ; then
myconf="${myconf} --enable-mmx"
fi
econf \
$(use_enable xv) \
$(use_enable truetype freetype) \
${myconf} \
|| die "configure failed"
emake -j1 || die "make failed"
}
src_install() {
make DESTDIR=${D} install || die "make install failed"
dodoc AUTHORS ChangeLog NEWS README TODO
}
|