diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-07-14 22:05:30 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-07-14 22:05:30 +0000 |
commit | b4511fed1dd8d145b4fb0535499ce11ba1d40a1f (patch) | |
tree | 34ef24c13948d370493e511fb6acdfba97548ca4 /x11-misc/commonbox-utils | |
parent | masked new fluxbox (diff) | |
download | gentoo-2-b4511fed1dd8d145b4fb0535499ce11ba1d40a1f.tar.gz gentoo-2-b4511fed1dd8d145b4fb0535499ce11ba1d40a1f.tar.bz2 gentoo-2-b4511fed1dd8d145b4fb0535499ce11ba1d40a1f.zip |
new package
Diffstat (limited to 'x11-misc/commonbox-utils')
-rw-r--r-- | x11-misc/commonbox-utils/ChangeLog | 11 | ||||
-rw-r--r-- | x11-misc/commonbox-utils/commonbox-utils-0.1.ebuild | 35 |
2 files changed, 46 insertions, 0 deletions
diff --git a/x11-misc/commonbox-utils/ChangeLog b/x11-misc/commonbox-utils/ChangeLog new file mode 100644 index 000000000000..7386f28f10b0 --- /dev/null +++ b/x11-misc/commonbox-utils/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for x11-misc/commonbox-utils +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/commonbox-utils/ChangeLog,v 1.1 2002/07/14 22:05:30 seemant Exp $ + +*commonbox-utils-0.1 (14 Jul 2002) + + 14 Jul 2002; Seemant Kulleen <seemant@gentoo.org> + commonbox-utils-0.1.ebuild ChangeLog files/digest-commonbox-utils-0.1 : + + New package which provide the utilities that all the box window managers + use. It also adds a menu generator script from fluxbox. diff --git a/x11-misc/commonbox-utils/commonbox-utils-0.1.ebuild b/x11-misc/commonbox-utils/commonbox-utils-0.1.ebuild new file mode 100644 index 000000000000..59b941feb5c9 --- /dev/null +++ b/x11-misc/commonbox-utils/commonbox-utils-0.1.ebuild @@ -0,0 +1,35 @@ +# 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-misc/commonbox-utils/commonbox-utils-0.1.ebuild,v 1.1 2002/07/14 22:05:30 seemant Exp $ + +S=${WORKDIR} +DESCRIPTION="Common utilities for flux|black|open(box). Provides bsetroot, bsetbg, and commonbox-menugen." +SRC_URI="http://mkeadle.org/ebuilds/${P}.tar.bz2" +HOMEPAGE="http://mkeadle.org/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86" + +DEPEND="virtual/x11" + +src_compile() { + + ./install.sh + +} + +src_install () { + + dobin ${S}/util/bsetbg ${S}/util/bsetroot ${S}/util/commonbox-menugen + dodoc README.commonbox-utils AUTHORS COPYING + doman bsetroot.1 bsetbg.1 + + dodir /usr/share/commonbox +} + + +pkg_postinst() { + + commonbox-menugen +} |