summaryrefslogtreecommitdiff
blob: 490e4dc5f37f9aa2ef11f2fb7f2ffb3e7e7a4e87 (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
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Craig Joly <joly@ee.ualberta.ca>
# $Header: /var/cvsroot/gentoo-x86/gnome-apps/screem/screem-0.4.1.ebuild,v 1.4 2001/08/26 19:16:38 csjoly 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.2.0
	>=gnome-base/libxml-1.8.7
	>=gnome-base/libglade-0.12
	>=media-libs/gdk-pixbuf-0.7
	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

    try ./configure --prefix=/opt/gnome --host=${CHOST} ${myopts}
    try emake

}

src_install () {

    try make DESTDIR=${D} install
    dodoc ABOUT-NLS AUTHORS BUGS COPYING ChangeLog DEPENDS FAQ INSTALL
	dodoc NEWS README TODO
}