blob: 9bde2efd360db90b3b0d120b3bd83b0945905c05 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/denu/denu-2.3.2-r1.ebuild,v 1.5 2012/02/24 20:08:32 ranger Exp $
EAPI="3"
PYTHON_DEPEND="2:2.6"
inherit python
DESCRIPTION="A menu generation program for fluxbox, waimea, openbox, icewm, gnome and kde."
HOMEPAGE="http://denu.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 hppa ppc ~ppc64 x86"
IUSE=""
RDEPEND=">=dev-python/pygtk-2.4.1"
DEPEND="${RDEPEND}"
src_install() {
./install.sh "${D}" || die "./install.sh failed"
python_convert_shebangs -r 2 "${D}"
}
|