diff options
author | Peter Alfredsen <loki_val@gentoo.org> | 2008-07-06 11:21:48 +0000 |
---|---|---|
committer | Peter Alfredsen <loki_val@gentoo.org> | 2008-07-06 11:21:48 +0000 |
commit | 160e62b2f9803b6664a7951bbbee15af420d8349 (patch) | |
tree | fb796de4a6468cd8155f3172fe7879272e21cbea /app-misc/g15stats/g15stats-1.0.ebuild | |
parent | bump to r10. xulrunner-1.9 enabled ebuild. (diff) | |
download | gentoo-2-160e62b2f9803b6664a7951bbbee15af420d8349.tar.gz gentoo-2-160e62b2f9803b6664a7951bbbee15af420d8349.tar.bz2 gentoo-2-160e62b2f9803b6664a7951bbbee15af420d8349.zip |
Initial commit. Thanks Vadim Efimov <evadim@evadim.ru> of bug #210192 for the ebuild.
(Portage version: 2.2_rc1/cvs/Linux 2.6.25.8 i686)
Diffstat (limited to 'app-misc/g15stats/g15stats-1.0.ebuild')
-rw-r--r-- | app-misc/g15stats/g15stats-1.0.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/app-misc/g15stats/g15stats-1.0.ebuild b/app-misc/g15stats/g15stats-1.0.ebuild new file mode 100644 index 000000000000..3ed3c7b50c09 --- /dev/null +++ b/app-misc/g15stats/g15stats-1.0.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/g15stats/g15stats-1.0.ebuild,v 1.1 2008/07/06 11:21:48 loki_val Exp $ + +DESCRIPTION="A simple message/alert client for G15daemon" +HOMEPAGE="http://g15daemon.sourceforge.net/" +SRC_URI="mirror://sourceforge/g15daemon/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +RDEPEND=">=app-misc/g15daemon-1.9.0 + dev-libs/libg15 + dev-libs/libg15render + sys-libs/zlib + gnome-base/libgtop" + +DEPEND="${DEPEND} + dev-util/pkgconfig" + +src_compile() { + export CPPFLAGS=$CFLAGS + econf || die + emake || die +} + +src_install() { + emake DESTDIR="${D}" install || die "make install failed" + rm "$D"/usr/share/doc/${P}/{COPYING,NEWS} + + newconfd "${FILESDIR}/${P}.confd" ${PN} + newinitd "${FILESDIR}/${P}.initd" ${PN} + + prepalldocs +} + +pkg_postinst() { + elog "Remember to set the interface you want monitored in" + elog "/etc/conf.d/g15stats" +} |