blob: ccf1d94123f5fa43b57659043d908c0f515345ed (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/enlightenment/enlightenment-0.16.5-r4.ebuild,v 1.14 2003/02/13 17:46:49 vapier Exp $
IUSE="nls"
S=${WORKDIR}/${P}
DESCRIPTION="Enlightenment Window Manager"
SRC_URI="ftp://ftp.enlightenment.org/enlightenment/enlightenment/${P}.tar.gz"
HOMEPAGE="http://www.enlightenment.org/"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86 ppc sparc "
DEPEND=">=media-libs/fnlib-0.5
>=media-sound/esound-0.2.19
~media-libs/freetype-1.3.1
>=gnome-base/libghttp-1.0.9-r1"
RDEPEND="nls? ( sys-devel/gettext )"
src_compile() {
local myconf
use nls || myconf="${myconf} --disable-nls"
./configure \
--host=${CHOST} \
--enable-fsstd \
--prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
${myconf} || die
emake || die
}
src_install() {
# this fixes an issue where enlightenment.install has an incomplete
# path to the englightenment binary
mv scripts/${PN}.install.in scripts/${PN}.install.in.orig
sed 's:\(^EBIN=\).*:\1@prefix@/bin:' \
scripts/${PN}.install.in.orig > scripts/${PN}.install.in
make prefix=${D}/usr \
localedir=${D}/usr/share/locale \
gnulocaledir=${D}/usr/share/locale \
mandir=${D}/usr/share/man \
infodir=${D}/usr/share/info \
install || die
dodoc ABOUT-NLS AUTHORS ChangeLog COPYING FAQ INSTALL NEWS README
docinto sample-scripts
dodoc sample-scripts/*
exeinto /etc/X11/Sessions
doexe $FILESDIR/enlightenment
}
|