blob: 7e9ba1dccdd5f9106e775ec0a212b55f0d9f09e8 (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-www/screem/screem-0.4.1-r1.ebuild,v 1.4 2002/07/11 06:30:49 drobbins Exp $
S=${WORKDIR}/${P}
DESCRIPTION="SCREEM (Site CReating and Editing EnvironmenMent) is an
integrated environment of the creation and maintenance of websites and
pages"
SRC_URI="http://ftp1.sourceforge.net/screem/${P}.tar.gz"
HOMEPAGE="http://www.screem.org"
DEPEND=">=gnome-base/gnome-libs-1.4.1.2-r1
>=dev-libs/libxml-1.8.15
>=gnome-base/libglade-0.17-r1
>=media-libs/gdk-pixbuf-0.11.0-r1
>=gnome-base/gnome-vfs-1.0.2-r1
ssl? ( dev-libs/openssl )
gtkhtml? ( >=gnome-extra/gtkhtml-0.14.0-r1 )
nls? ( sys-devel/gettext )"
src_compile() {
local myopts
if [ -z "`use nls`" ]
then
myopts="--disable-nls"
fi
# if [ "`use ssl`" ]
# then
# myopts="$myopts --with-ssl"
# fi
cp ${FILESDIR}/Makefile.in intl/Makefile.in
CFLAGS="${CFLAGS} `gnome-config --cflags libglade`"
./configure --host=${CHOST} \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var/lib \
--with-gnomevfs \
${myopts} || die
emake || die
}
src_install () {
make prefix=${D}/usr \
sysconfdir=${D}/etc \
localstatedir=${D}/var/lib \
install || die
dodoc ABOUT-NLS AUTHORS BUGS COPYING ChangeLog DEPENDS FAQ INSTALL
dodoc NEWS README TODO
}
|