diff options
Diffstat (limited to 'net-www/screem/screem-0.4.1-r1.ebuild')
-rw-r--r-- | net-www/screem/screem-0.4.1-r1.ebuild | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/net-www/screem/screem-0.4.1-r1.ebuild b/net-www/screem/screem-0.4.1-r1.ebuild deleted file mode 100644 index 759d34bfd54c..000000000000 --- a/net-www/screem/screem-0.4.1-r1.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/screem/screem-0.4.1-r1.ebuild,v 1.11 2003/02/13 15:43:21 vapier Exp $ - -IUSE="gtkhtml ssl nls" - -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" -KEYWORDS="x86 sparc " -SLOT="0" -LICENSE="GPL-2" - -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 -} - |