blob: 713d056492dfdcd2f4c26122defd04ee0417d2dc (
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Your Name <your email>
# $Header: /var/cvsroot/gentoo-x86/dev-lang/entity/entity-0.7.2-r1.ebuild,v 1.2 2002/06/20 20:26:02 azarah Exp $
S=${WORKDIR}/${P}
DESCRIPTION="An XML Framework"
SRC_URI="http://www.entity.cx/Download/files/${P}.tar.gz"
HOMEPAGE="http://www.entity.cx"
DEPEND=">=media-libs/imlib-1.9.10-r1
>=dev-libs/libpcre-3.2
tcltk? ( >=dev-lang/tk-8.1.1 )
perl? ( >=sys-devel/perl-5.6 )
python? ( >=dev-lang/python-2.0-r4 )
sdl? ( >=media-libs/libsdl-1.1.7 )
ssl? ( >=dev-libs/openssl-0.9.6 )
opengl? ( <x11-libs/gtkglarea-1.99.0 )
gnome? ( >=gnome-base/gnome-libs-1.4.1.2-r1 )"
RDEPEND=">=media-libs/imlib-1.9.10-r1
>=dev-libs/libpcre-3.2
tcltk? ( >=dev-lang/tk-8.1.1 )
perl? ( >=sys-devel/perl-5.6 )
python? ( >=dev-lang/python-2.0i-r4 )
sdl? ( >=media-libs/libsdl-1.1.7 )
ssl? ( >=dev-libs/openssl-0.9.6 )
opengl? ( <x11-libs/gtkglarea-1.99.0 )
gnome? ( >=gnome-base/gnome-libs-1.4.1.2-r1 )"
src_compile() {
local myconf
if [ "`use tcltk`" ]
then
myconf="--enable-tcl=module --with-tcl=/usr/lib"
else
myconf="--enable-tcl=no"
fi
if [ "`use perl`" ]
then
myconf="$myconf --enable-perl=static"
else
myconf="$myconf --enable-perl=no"
fi
if [ "`use python`" ]
then
myconf="$myconf --enable-python=static"
else
myconf="$myconf --enable-python=no"
fi
if [ "`use ssl`" ]
then
myconf="$myconf --enable-openssl"
fi
if [ "`use sdl`" ]
then
myconf="$myconf --enable-sdl"
fi
if [ "`use gnome`" ]
then
myconf="$myconf --enable-gnome --enable-gdkimlib"
fi
if [ "`use opengl`" ]
then
myconf="$myconf --enable-gtkgl"
fi
try DEBIAN_ENTITY_MAGIC="voodoo" CFLAGS="$CFLAGS -I/usr/X11R6/include" ./configure --prefix=/usr --mandir=/usr/share/man --host=${CHOST} \
--enable-exec-class=yes \
--enable-gtk=module \
--enable-c=module $myconf \
--enable-javascript=yes --with-included-njs --enable-csinc
try make LDFLAGS="-L/usr/lib/python2.0/config/ -lpython2.0 `python-config --libs`"
}
src_install () {
make DESTDIR=${D} LD_LIBRARY_PATH=${D}/usr/lib install
insinto /usr/share/entity/stembuilder
doins stembuilder/*.e
chmod +x ${D}/usr/share/entity/stembuilder/stembuilder.e
insinto /usr/share/entity/apps
doins apps/*.e
chmod +x ${D}/usr/share/entity/apps/{enview,ev}.e
exeinto /usr/share/entity/examples
doexe examples/*.e
insinto /usr/share/entity/stembuilder/images
doins stembuilder/images/*.xpm
dodoc AUTHORS COPYING ChangeLog LICENSE NEWS README TODO
docinto txt
dodoc docs/README* docs/*.txt docs/*.ascii
docinto html
dodoc docs/*.html
docinto print
dodoc docs/*.ps
docinto sgml
dodoc docs/*.sgml
}
|