abc0815 n00b
Joined: 07 Jul 2004 Posts: 54
|
Posted: Thu Dec 21, 2006 5:32 pm Post subject: lxpanel ebuild |
|
|
Hi there,
found the lxpanel (http://gnomefiles.org/app.php/LXPanel) and since there was no useable ebuild i made one. https://bugs.gentoo.org/show_bug.cgi?id=157989
Comments and Bugreports are welcome.
Code: | # Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit toolchain-funcs
DESCRIPTION="httnel is a light-weight X11 desktop panel for lxde"
HOMEPAGE="http://gnomefiles.org/app.php/LXPanel/"
SRC_URI="mirror://sourceforge/lxde/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=x11-libs/gtk+-2
x11-libs/libXmu
x11-libs/libXpm"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_unpack() {
unpack ${A}
cd "${S}"
}
src_compile() {
econf ${myconf} || die "Configure failed."
emake CHATTY=1 CC=$(tc-getCC) || die "Make failed."
}
src_install () {
make DESTDIR=${D} install || die "Install failed."
} |
Some things might not be right. Sorry for this but its my first ebuild
Have Fun! |
|