blob: 126b7fa3a63a30573d8515ab536f0935af4ab3b8 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/x11-misc/fspanel/fspanel-0.8_beta1.ebuild,v 1.3 2002/08/14 23:44:15 murphy Exp $
S=${WORKDIR}/fspanel-0.8beta1
DESCRIPTION="F***ing Small Panel. Good (and small) replacement for gnome-panel"
SRC_URI="http://www.chatjunkies.org/fspanel/fspanel-0.8beta1.tar.gz"
HOMEPAGE="http://www.chatjunkies.org/fspanel"
SLOT="0"
KEYWORDS="x86 sparc sparc64"
LICENSE="GPL-2"
DEPEND="virtual/x11"
RDEPEND="${DEPEND}"
src_compile() {
./configure
emake || die
}
src_install () {
exeinto /usr/bin
doexe ${S}/fspanel
dodoc README
}
|