blob: a543913c60e95f534fba21859f16fe086d73c307 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/suxpanel/suxpanel-0.4a.ebuild,v 1.3 2006/10/11 12:01:14 nelchael Exp $
inherit eutils
DESCRIPTION="SuxPanel is a complete rewrite of MacOS Style Panel, a light-weight X11 desktop panel"
SRC_URI="http://vivid.dat.pl/suxpanel/${P}.tar.bz2"
HOMEPAGE="http://www.gnomefiles.org/app.php?soft_id=84"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND=">=x11-libs/gtk+-2
>=sys-apps/sed-4
x11-libs/libwnck
dev-util/pkgconfig"
src_unpack() {
unpack ${A}
epatch "${FILESDIR}/${P}-Makefile.in.patch"
}
src_install () {
make DESTDIR="${D}" install || die "Make install failed."
dobin suxpanel-install.sh
dodoc README
}
|