diff options
author | Samuli Suominen <drac@gentoo.org> | 2008-01-24 18:41:13 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2008-01-24 18:41:13 +0000 |
commit | 6a2a5e254e113a2467f9cdd18173b7fb92d2c951 (patch) | |
tree | 6ec0076741c746a2f7eb0ede13df07fd5a57aadc /app-misc/slmon | |
parent | Stable on ppc wrt bug 207255 (diff) | |
download | gentoo-2-6a2a5e254e113a2467f9cdd18173b7fb92d2c951.tar.gz gentoo-2-6a2a5e254e113a2467f9cdd18173b7fb92d2c951.tar.bz2 gentoo-2-6a2a5e254e113a2467f9cdd18173b7fb92d2c951.zip |
Depend on =sys-libs/slang-1* and keyword for ~amd64.
(Portage version: 2.1.4)
Diffstat (limited to 'app-misc/slmon')
-rw-r--r-- | app-misc/slmon/ChangeLog | 7 | ||||
-rw-r--r-- | app-misc/slmon/slmon-0.5.13.ebuild | 28 |
2 files changed, 20 insertions, 15 deletions
diff --git a/app-misc/slmon/ChangeLog b/app-misc/slmon/ChangeLog index 14d1516a9f01..b995a77ffd9b 100644 --- a/app-misc/slmon/ChangeLog +++ b/app-misc/slmon/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-misc/slmon -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/slmon/ChangeLog,v 1.10 2007/04/14 16:04:32 armin76 Exp $ +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/slmon/ChangeLog,v 1.11 2008/01/24 18:41:13 drac Exp $ + + 24 Jan 2008; Samuli Suominen <drac@gentoo.org> slmon-0.5.13.ebuild: + Depend on =sys-libs/slang-1* and keyword for ~amd64. 14 Apr 2007; Raúl Porcel <armin76@gentoo.org> +files/slmon-0.5.13-invalid-free.patch, slmon-0.5.13.ebuild: diff --git a/app-misc/slmon/slmon-0.5.13.ebuild b/app-misc/slmon/slmon-0.5.13.ebuild index af48c84fe159..8586f1fcb638 100644 --- a/app-misc/slmon/slmon-0.5.13.ebuild +++ b/app-misc/slmon/slmon-0.5.13.ebuild @@ -1,35 +1,37 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/slmon/slmon-0.5.13.ebuild,v 1.2 2007/04/14 16:04:32 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/slmon/slmon-0.5.13.ebuild,v 1.3 2008/01/24 18:41:13 drac Exp $ inherit eutils DESCRIPTION="Colored text-based system performance monitor" -HOMEPAGE="http://slmon.sourceforge.net/" -SRC_URI="http://slmon.sourceforge.net/download/${P}.tar.gz" +HOMEPAGE="http://slmon.sourceforge.net" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="x86" +KEYWORDS="~amd64 x86" IUSE="debug" -DEPEND=">=dev-libs/glib-2.0" -RDEPEND="sys-libs/slang +RDEPEND=">=dev-libs/glib-2 + =sys-libs/slang-1* gnome-base/libgtop" +DEPEND="${RDEPEND} + dev-util/pkgconfig" src_unpack() { unpack ${A} - cd ${S} - + cd "${S}" epatch "${FILESDIR}"/${P}-invalid-free.patch # bug 151293 } src_compile() { - econf $(use_enable debug) || die "econf failed" - emake || die "emake failed" + econf $(use_enable debug) + emake || die "emake failed." } src_install() { - make DESTDIR="${D}" install || die "make install failed" - dodoc AUTHORS ChangeLog INSTALL README TODO + emake DESTDIR="${D}" install || die "emake install failed." + dodoc AUTHORS ChangeLog README slmonrc TODO + dohtml *.html } |