blob: 6ba1ff76bbe9e8d1cf0f3030145c9815baa3ae73 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/wbarconf/wbarconf-0.7.2.ebuild,v 1.2 2008/12/06 13:20:58 ssuominen Exp $
inherit eutils
DESCRIPTION="Configuration GUI for x11-misc/wbar"
HOMEPAGE="http://www.ihku.biz/wbarconf"
SRC_URI="http://www.ihku.biz/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=x11-misc/wbar-1.3.3
>=dev-python/pygtk-2.10"
DEPEND=""
S=${WORKDIR}/${PN}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-install.patch
}
src_install() {
./install.sh "${D}/usr" || die "./install.sh failed."
prepalldocs
}
|