blob: 48bec983a7e38e3ed8a67d76632cd539fb3ae7af (
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
37
38
39
40
41
42
43
44
45
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/fspanel/fspanel-0.8_beta1-r2.ebuild,v 1.10 2007/08/02 12:43:41 uberlord Exp $
MY_P=${P/_beta/beta}
DESCRIPTION="F***ing Small Panel. Good (and small) replacement for gnome-panel"
HOMEPAGE="http://www.chatjunkies.org/fspanel"
SRC_URI="http://www.chatjunkies.org/fspanel/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc sparc x86 ~x86-fbsd"
IUSE=""
RESTRICT="strip"
RDEPEND="x11-libs/libX11
x11-libs/libXpm
x11-libs/libXft"
DEPEND="${RDEPEND}
dev-util/pkgconfig
x11-proto/xproto"
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
sed -i -e 's,/X11R6,,g' "${S}/configure"
}
src_compile() {
if pkg-config xft; then
CFLAGS="${CFLAGS} -I/usr/include/freetype2"
fi
./configure || die "configure failed"
emake || die "emake failed"
}
src_install () {
exeinto /usr/bin
doexe "${S}/fspanel"
dodoc README
}
|