summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriele Giorgetti <stroke@gentoo.org>2002-06-12 02:17:37 +0000
committerGabriele Giorgetti <stroke@gentoo.org>2002-06-12 02:17:37 +0000
commitaaf1f4c3fe508a94eeaf4c1ff91e382094d96dce (patch)
tree576dab6eecc53ec9665045a76a6748392f82d4e3 /x11-wm/sawfish
parentfirst relase (diff)
downloadgentoo-2-aaf1f4c3fe508a94eeaf4c1ff91e382094d96dce.tar.gz
gentoo-2-aaf1f4c3fe508a94eeaf4c1ff91e382094d96dce.tar.bz2
gentoo-2-aaf1f4c3fe508a94eeaf4c1ff91e382094d96dce.zip
Another non-working snapshot.
Diffstat (limited to 'x11-wm/sawfish')
-rw-r--r--x11-wm/sawfish/ChangeLog7
-rw-r--r--x11-wm/sawfish/files/digest-sawfish-200206111
-rw-r--r--x11-wm/sawfish/sawfish-20020611.ebuild57
3 files changed, 63 insertions, 2 deletions
diff --git a/x11-wm/sawfish/ChangeLog b/x11-wm/sawfish/ChangeLog
index 21297189e6a0..90c7eb3556f0 100644
--- a/x11-wm/sawfish/ChangeLog
+++ b/x11-wm/sawfish/ChangeLog
@@ -1,12 +1,15 @@
# ChangeLog for x11-wm/sawfish
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/sawfish/ChangeLog,v 1.8 2002/05/27 00:39:14 spider Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/sawfish/ChangeLog,v 1.9 2002/06/12 02:17:37 stroke Exp $
+
+*sawfish-20020524 (12 Jun 2002)
+ 12 Jun 2002; Gabriele Giorgetti <stroke@gentoo.org> sawfish-20020612.ebuild :
+ A newer non-working snapshot.
*sawfish-20020524 (27 May 2002)
27 May 2002; Spider <spider@gentoo.org> sawfish-20020524.ebuild :
new snapshot. still doesn't work
-
*sawfish-20020419 (22 May 2002)
22 May 2002; Spider <spider@gentoo.org> sawfish-20020419.ebuild :
gnome2 snapshots
diff --git a/x11-wm/sawfish/files/digest-sawfish-20020611 b/x11-wm/sawfish/files/digest-sawfish-20020611
new file mode 100644
index 000000000000..fb633f76581e
--- /dev/null
+++ b/x11-wm/sawfish/files/digest-sawfish-20020611
@@ -0,0 +1 @@
+MD5 6217c3810620dab57e84203b19783aa0 sawfish-2002-06-11.tar.bz2 1115431
diff --git a/x11-wm/sawfish/sawfish-20020611.ebuild b/x11-wm/sawfish/sawfish-20020611.ebuild
new file mode 100644
index 000000000000..55c1aeb565d8
--- /dev/null
+++ b/x11-wm/sawfish/sawfish-20020611.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/sawfish/sawfish-20020611.ebuild,v 1.1 2002/06/12 02:17:37 stroke Exp $
+
+# Do _NOT_ strip symbols in the build! Need both lines for Portage 1.8.9+
+DEBUG="yes"
+RESTRICT="nostrip"
+# force debug information
+CFLAGS="${CFLAGS} -g"
+CXXFLAGS="${CXXFLAGS} -g"
+
+MY_P=${PN}-2002-06-11
+
+S=${WORKDIR}/${MY_P}
+DESCRIPTION="Extensible window manager using a Lisp-based scripting language"
+SRC_URI="ftp://ftp.gnome.org/pub/GNOME/pre-gnome2/sources/${PN}/${MY_P}.tar.bz2"
+HOMEPAGE="http://sawmill.sourceforge.net/"
+
+DEPEND=">=dev-util/pkgconfig-0.12.0
+ >=x11-libs/rep-gtk-20020611
+ >=dev-libs/librep-20020611
+ >=media-libs/imlib-1.9.10-r1
+ esd? ( >=media-sound/esound-0.2.22 )
+ readline? ( >=sys-libs/readline-4.1 )
+ nls? ( sys-devel/gettext )"
+
+src_compile() {
+ local myconf
+ myconf="${myconf} --with-gnome-prefix=/usr"
+ myconf="${myconf} --enable-gnome-widgets "
+ myconf="${myconf} --enable-capplet"
+ myconf="${myconf} --enable-themer"
+
+ use esd && myconf="${myconf} --with-esd" ||myconf="${myconf} --without-esd"
+ use readline && myconf="${myconf} --with-readline" || myconf="${myconf} --without-readline"
+ use nls || myconf="${myconf} --disable-linguas"
+ ./configure --host=${CHOST} \
+ --prefix=/usr \
+ --infodir=/usr/share/info \
+ --libexecdir=/usr/lib \
+ --with-audiofile ${myconf} || die
+ mkdir ${S}/src/.libs
+ emake || die
+}
+
+src_install() {
+ make DESTDIR=${D} install || die
+ dodoc AUTHORS BUGS COPYING ChangeLog DOC FAQ NEWS README THANKS TODO
+
+ # Add to Gnome CC's Window Manager list
+ insinto /usr/share/gnome/wm-properties
+ doins ${FILESDIR}/Sawfish.desktop
+
+}
+
+
+