diff options
author | Brad Teaford Cowan <bcowan@gentoo.org> | 2002-11-06 21:10:19 +0000 |
---|---|---|
committer | Brad Teaford Cowan <bcowan@gentoo.org> | 2002-11-06 21:10:19 +0000 |
commit | 6da30d13873dfdefe5ee54db1d2f57fff63aad6a (patch) | |
tree | 5aee15af3726490f7097eda532960f32a9ea3300 /x11-wm/waimea | |
parent | remove anjuta from mask, now keyword masked correctly (diff) | |
download | historical-6da30d13873dfdefe5ee54db1d2f57fff63aad6a.tar.gz historical-6da30d13873dfdefe5ee54db1d2f57fff63aad6a.tar.bz2 historical-6da30d13873dfdefe5ee54db1d2f57fff63aad6a.zip |
version bump and code cleanup
Diffstat (limited to 'x11-wm/waimea')
-rw-r--r-- | x11-wm/waimea/ChangeLog | 9 | ||||
-rw-r--r-- | x11-wm/waimea/files/digest-waimea-0.4.0 | 1 | ||||
-rw-r--r-- | x11-wm/waimea/waimea-0.4.0.ebuild | 51 |
3 files changed, 60 insertions, 1 deletions
diff --git a/x11-wm/waimea/ChangeLog b/x11-wm/waimea/ChangeLog index a96b59125bf3..acb286b4f131 100644 --- a/x11-wm/waimea/ChangeLog +++ b/x11-wm/waimea/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for x11-wm/waimea # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/waimea/ChangeLog,v 1.6 2002/10/15 03:49:43 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/waimea/ChangeLog,v 1.7 2002/11/06 21:10:19 bcowan Exp $ + +*waimea-0.4.0 (06 Nov 2002) + + 06 Nov 2002; Brad Cowan <bcowan@gentoo.org> waimea-0.4.0.ebuild, + files/digest-waimea-0.4.0 : + + Version bump, ebuild cleanup. *waimea-0.3.5 (14 Oct 2002) diff --git a/x11-wm/waimea/files/digest-waimea-0.4.0 b/x11-wm/waimea/files/digest-waimea-0.4.0 new file mode 100644 index 000000000000..dec4f7b860e0 --- /dev/null +++ b/x11-wm/waimea/files/digest-waimea-0.4.0 @@ -0,0 +1 @@ +MD5 0ce2ce92451e4e757a75c958b6acb87a waimea-0.4.0.tar.bz2 206805 diff --git a/x11-wm/waimea/waimea-0.4.0.ebuild b/x11-wm/waimea/waimea-0.4.0.ebuild new file mode 100644 index 000000000000..44d9c43f1229 --- /dev/null +++ b/x11-wm/waimea/waimea-0.4.0.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/waimea/waimea-0.4.0.ebuild,v 1.1 2002/11/06 21:10:19 bcowan Exp $ + +S=${WORKDIR}/${P} + +DESCRIPTION="Window manager based on BlackBox" + +SRC_URI="http://www.waimea.org/files/stable/source/${P}.tar.bz2" +HOMEPAGE="http://www.waimea.org" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +DEPEND="virtual/x11 + media-libs/imlib2" + +PROVIDE="virtual/blackbox" + +src_compile() { + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --enable-shape \ + --enable-xinerama \ + --enable-render \ + --enable-randr \ + --enable-xft \ + --enable-pixmap + emake || die +} + +src_install() { + einstall \ + sysconfdir=${D}/etc/X11/waimea \ + mandir=${D}/usr/share/man \ + infodir=${D}/usr/share/info \ + datadir=${D}/usr/share + + dodoc ChangeLog AUTHORS COPYING INSTALL README TODO NEWS + + dodir /etc/X11/Sessions + echo "/usr/bin/waimea" > ${D}/etc/X11/Sessions/waimea + chmod +x ${D}/etc/X11/Sessions/waimea +} + +pkg_postinst() { + einfo "Please read the README in /usr/share/doc/${P}" + einfo "for info on setting up and configuring waimea" +} |