diff options
author | Matt Keadle <mkeadle@gentoo.org> | 2003-06-20 15:02:37 +0000 |
---|---|---|
committer | Matt Keadle <mkeadle@gentoo.org> | 2003-06-20 15:02:37 +0000 |
commit | c04fb861adbccdbb8cc9a3c90dea2c1d0b821b7a (patch) | |
tree | 0e985d00f753ed88838c60f0bd5c587a8dbf17ad /x11-misc/whitebox | |
parent | Version bump - closes bug #22199 (diff) | |
download | historical-c04fb861adbccdbb8cc9a3c90dea2c1d0b821b7a.tar.gz historical-c04fb861adbccdbb8cc9a3c90dea2c1d0b821b7a.tar.bz2 historical-c04fb861adbccdbb8cc9a3c90dea2c1d0b821b7a.zip |
initial import. see changelog
Diffstat (limited to 'x11-misc/whitebox')
-rw-r--r-- | x11-misc/whitebox/ChangeLog | 11 | ||||
-rw-r--r-- | x11-misc/whitebox/Manifest | 3 | ||||
-rw-r--r-- | x11-misc/whitebox/files/digest-whitebox-0.5 | 2 | ||||
-rw-r--r-- | x11-misc/whitebox/whitebox-0.5.ebuild | 35 |
4 files changed, 51 insertions, 0 deletions
diff --git a/x11-misc/whitebox/ChangeLog b/x11-misc/whitebox/ChangeLog new file mode 100644 index 000000000000..ab090f604da7 --- /dev/null +++ b/x11-misc/whitebox/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for x11-misc/whitebox +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/whitebox/ChangeLog,v 1.1 2003/06/20 15:02:29 mkeadle Exp $ + +*whitebox-0.5 (20 Jun 2003) + + 20 Jun 2003; mkeadle <mkeadle@gentoo.org> whitebox-0.5.ebuild: + Initial import to portage. Thanks to Justin Copeland <justin.copeland@ttu.edu> + for the submitted ebuild in bug #14358. This release left out 3 pixmaps, so + they've been taken from the previous version and added as a secondary SRC_URI. + diff --git a/x11-misc/whitebox/Manifest b/x11-misc/whitebox/Manifest new file mode 100644 index 000000000000..9918ecb1b81f --- /dev/null +++ b/x11-misc/whitebox/Manifest @@ -0,0 +1,3 @@ +MD5 bec5f1bbc972f1416d3c89ef3fa847fb whitebox-0.5.ebuild 871 +MD5 e74442f49ec7348a1e0c22a7fd7a06ef ChangeLog 547 +MD5 90016c51fd8847a5124807223d5f2ea1 files/digest-whitebox-0.5 127 diff --git a/x11-misc/whitebox/files/digest-whitebox-0.5 b/x11-misc/whitebox/files/digest-whitebox-0.5 new file mode 100644 index 000000000000..65480293b9f7 --- /dev/null +++ b/x11-misc/whitebox/files/digest-whitebox-0.5 @@ -0,0 +1,2 @@ +MD5 2ef2800b54439667a52ff9e39bca3bb9 whiteBOX-0.5.tar.gz 389934 +MD5 3834c6c1b5dd60ac30fd26e7ac340862 whitebox-pixmaps.tbz2 538 diff --git a/x11-misc/whitebox/whitebox-0.5.ebuild b/x11-misc/whitebox/whitebox-0.5.ebuild new file mode 100644 index 000000000000..07aa09a15b40 --- /dev/null +++ b/x11-misc/whitebox/whitebox-0.5.ebuild @@ -0,0 +1,35 @@ +# Copyright 2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/whitebox/whitebox-0.5.ebuild,v 1.1 2003/06/20 15:02:29 mkeadle Exp $ + +IUSE="" + +MY_P="whiteBOX-${PV}" +S=${WORKDIR}/${MY_P} +DESCRIPTION="Configuration editor for blackbox type window managers. Not all features work with all window managers." +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz + http://mkeadle.org/distfiles/${PN}-pixmaps.tbz2" +HOMEPAGE="http://whitebox.sourceforge.net/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +DEPEND="=x11-libs/gtk+-1.2* + =media-libs/gdk-pixbuf-0.22*" + +RDEPEND="virtual/blackbox" + +src_compile () { + + econf || die + emake || die +} + +src_install () { + + einstall || die + insinto /usr/share/whiteBOX/pixmaps + doins ${WORKDIR}/pixmaps/*.xpm + dodoc AUTHORS COPYING ChangeLog NEWS README +} |