blob: c2b6b9494f8987be4468dd8e1eb956aacc6225b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# 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.2.ebuild,v 1.3 2002/09/02 09:44:27 jmorgan Exp $
S=${WORKDIR}/${PN}
DESCRIPTION="Common utilities for flux|black|open(box). Provides bsetroot, bsetbg, and commonbox-menugen."
SRC_URI="mirror://gentoo/${P}.tar.bz2"
HOMEPAGE="http://mkeadle.org/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc sparc sparc64"
RDEPEND="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
${D}/usr/bin/commonbox-menugen -kg -o ${D}/usr/share/commonbox/menu
}
pkg_postinst() {
commonbox-menugen -kg
}
|