blob: 6f5869c0591689f640ab0c43a155ea048abf8c6d (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/genmenu/genmenu-1.0.6.ebuild,v 1.6 2004/09/13 02:08:08 weeve Exp $
inherit eutils
IUSE=""
DESCRIPTION="menu generator for Blackbox, WindowMaker, and Enlightenment"
HOMEPAGE="http://gtk.no/genmenu"
SRC_URI="http://gtk.no/archive/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc sparc"
DEPEND="virtual/libc"
RDEPEND="${DEPEND}
app-shells/bash"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/genmenu-1.0.2.patch
}
src_install () {
dobin genmenu
# Install documentation.
dodoc ChangeLog README
}
|