diff options
Diffstat (limited to 'x11-misc/fspanel/fspanel-0.8_beta1-r2.ebuild')
-rw-r--r-- | x11-misc/fspanel/fspanel-0.8_beta1-r2.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/x11-misc/fspanel/fspanel-0.8_beta1-r2.ebuild b/x11-misc/fspanel/fspanel-0.8_beta1-r2.ebuild new file mode 100644 index 000000000000..6333ffc857df --- /dev/null +++ b/x11-misc/fspanel/fspanel-0.8_beta1-r2.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# 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.1 2003/02/22 20:31:38 mkeadle 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" +LICENSE="GPL-2" + +DEPEND="virtual/x11 + dev-util/pkgconfig" + +src_compile() { + + if pkg-config xft + then + CFLAGS="${CFLAGS} -I/usr/include/freetype2" + fi + ./configure + emake || die +} + +src_install () { + exeinto /usr/bin + doexe ${S}/fspanel + + dodoc README +} |