diff options
author | Tiago Cunha <tcunha@gentoo.org> | 2008-12-08 15:09:19 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gentoo.org> | 2008-12-08 15:09:19 +0000 |
commit | 81c3f351c468ea3f0f37054c7b25b8d41e760ba1 (patch) | |
tree | 114e1b8df00065b43bc386480b29ff0b69ef0b82 /net-analyzer | |
parent | Fixed pre-strip, bug #248725. Clean up. (diff) | |
download | gentoo-2-81c3f351c468ea3f0f37054c7b25b8d41e760ba1.tar.gz gentoo-2-81c3f351c468ea3f0f37054c7b25b8d41e760ba1.tar.bz2 gentoo-2-81c3f351c468ea3f0f37054c7b25b8d41e760ba1.zip |
- Call pmake directly. Thanks to vapier in bug 250143.
- While there improve USE flags descriptions.
(Portage version: 2.1.4.5)
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/symon/ChangeLog | 7 | ||||
-rw-r--r-- | net-analyzer/symon/metadata.xml | 5 | ||||
-rw-r--r-- | net-analyzer/symon/symon-2.79-r5.ebuild | 12 |
3 files changed, 15 insertions, 9 deletions
diff --git a/net-analyzer/symon/ChangeLog b/net-analyzer/symon/ChangeLog index 76da5abad410..6899d66c8244 100644 --- a/net-analyzer/symon/ChangeLog +++ b/net-analyzer/symon/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-analyzer/symon # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/symon/ChangeLog,v 1.6 2008/11/17 00:56:43 tcunha Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/symon/ChangeLog,v 1.7 2008/12/08 15:09:19 tcunha Exp $ + + 08 Dec 2008; Tiago Cunha <tcunha@gentoo.org> metadata.xml, + symon-2.79-r5.ebuild: + - Call pmake directly. Thanks to vapier in bug 250143. + - While there improve USE flags descriptions. 17 Nov 2008; Tiago Cunha <tcunha@gentoo.org> -symon-2.79-r3.ebuild, -symon-2.79-r4.ebuild: diff --git a/net-analyzer/symon/metadata.xml b/net-analyzer/symon/metadata.xml index b2e69499da11..e1c64130759e 100644 --- a/net-analyzer/symon/metadata.xml +++ b/net-analyzer/symon/metadata.xml @@ -7,8 +7,9 @@ </maintainer> <use> <flag name='perl'>Enables a generic perl symux client</flag> - <flag name='symon'>Build symon daemon</flag> + <flag name='symon'>Enables the lightweight system monitor. Offers no + functionality but monitoring and forwarding of measured data</flag> <flag name='symux'>Enables the multiplexer which stores incoming symon - streams on disk in RRD files</flag> + streams on disk in RRD (<pkg>net-analyzer/rrdtool</pkg>) files</flag> </use> </pkgmetadata> diff --git a/net-analyzer/symon/symon-2.79-r5.ebuild b/net-analyzer/symon/symon-2.79-r5.ebuild index 1d467e66d417..994224ba9fe3 100644 --- a/net-analyzer/symon/symon-2.79-r5.ebuild +++ b/net-analyzer/symon/symon-2.79-r5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/symon/symon-2.79-r5.ebuild,v 1.1 2008/11/17 00:00:46 tcunha Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/symon/symon-2.79-r5.ebuild,v 1.2 2008/12/08 15:09:19 tcunha Exp $ EAPI=1 @@ -57,11 +57,11 @@ src_unpack() { } src_compile() { - MAKE=pmake MAKEOPTS= emake \ - AR="$(tc-getAR)" \ - CC="$(tc-getCC)" \ - CFLAGS+="${CFLAGS}" \ - RANLIB="$(tc-getRANLIB)" \ + pmake \ + AR="$(tc-getAR)" \ + CC="$(tc-getCC)" \ + CFLAGS+="${CFLAGS}" \ + RANLIB="$(tc-getRANLIB)" \ STRIP=true || die "emake failed" } |