jer         14/07/18 03:39:57

  Modified:             xnetload-1.11.3-r1.ebuild ChangeLog metadata.xml
  Log:
  EAPI bump. Remove short <longdescription>. Install XNetload config. Do not 
inject CC/CFLAGS/LDFLAGS into Makefile.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  Changes    Path
1.7                  net-analyzer/xnetload/xnetload-1.11.3-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/xnetload/xnetload-1.11.3-r1.ebuild?rev=1.7&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/xnetload/xnetload-1.11.3-r1.ebuild?rev=1.7&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/xnetload/xnetload-1.11.3-r1.ebuild?r1=1.6&r2=1.7

Index: xnetload-1.11.3-r1.ebuild
===================================================================
RCS file: 
/var/cvsroot/gentoo-x86/net-analyzer/xnetload/xnetload-1.11.3-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- xnetload-1.11.3-r1.ebuild   16 Oct 2009 16:35:12 -0000      1.6
+++ xnetload-1.11.3-r1.ebuild   18 Jul 2014 03:39:56 -0000      1.7
@@ -1,36 +1,42 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/net-analyzer/xnetload/xnetload-1.11.3-r1.ebuild,v 1.6 
2009/10/16 16:35:12 tcunha Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-analyzer/xnetload/xnetload-1.11.3-r1.ebuild,v 1.7 
2014/07/18 03:39:56 jer Exp $
 
+EAPI=5
 inherit toolchain-funcs
 
-DESCRIPTION="This little tool displays a count and a graph of the traffic over 
a specified network connection."
+DESCRIPTION="displays a count and a graph of the traffic over a specified 
network connection"
+LICENSE="GPL-2"
 HOMEPAGE="http://www.xs4all.nl/~rsmith/software/";
-SRC_URI="http://www.xs4all.nl/~rsmith/software/${P}.tar.gz";
+SRC_URI="${HOMEPAGE}${P}.tar.gz"
 
 SLOT="0"
-LICENSE="GPL-2"
 KEYWORDS="amd64 ppc ppc64 sparc x86"
 
-DEPEND=">=x11-libs/libX11-1.0.0
-               >=x11-libs/libXmu-1.0.0
-               >=x11-libs/libXt-1.0.0
-               >=x11-libs/libXaw-1.0.1"
-
-IUSE=""
-
-src_unpack() {
-       unpack ${A}
-       cd "${S}"
-       sed -i -e "s:CC = gcc:CC = $(tc-getCC):" \
-               -e "s:CFLAGS = -pipe -O2 -Wall:CFLAGS = ${CFLAGS} -Wall:" \
-               -e "s:LFLAGS = -s -pipe:LFLAGS = ${LDFLAGS}:" \
-               -e "s:gcc -MM:$(tc-getCC) -MM:" \
-               -e "s:/usr/X11R6:/usr:g" Makefile || die "sed failed in 
Makefile"
+DEPEND="
+       x11-libs/libX11
+       x11-libs/libXt
+       x11-libs/libXaw
+"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+       sed -i \
+               -e 's:CFLAGS = -pipe -O2 -Wall:CFLAGS += -Wall:' \
+               -e 's:LFLAGS = -s -pipe:LFLAGS = $(LDFLAGS):' \
+               -e 's:gcc -MM:$(CC) -MM:' \
+               -e 's:/usr/X11R6:/usr:g' \
+               Makefile || die
+}
+
+src_compile() {
+       emake CC="$(tc-getCC)"
 }
 
 src_install() {
        dobin xnetload
        doman xnetload.1
-       dodoc README ChangeLog
+       dodoc ChangeLog README
+       insinto /usr/share/X11/app-defaults/
+       doins XNetload
 }



1.17                 net-analyzer/xnetload/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/xnetload/ChangeLog?rev=1.17&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/xnetload/ChangeLog?rev=1.17&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/xnetload/ChangeLog?r1=1.16&r2=1.17

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/xnetload/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog   16 Oct 2009 16:35:12 -0000      1.16
+++ ChangeLog   18 Jul 2014 03:39:56 -0000      1.17
@@ -1,6 +1,11 @@
 # ChangeLog for net-analyzer/xnetload
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/xnetload/ChangeLog,v 1.16 
2009/10/16 16:35:12 tcunha Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/xnetload/ChangeLog,v 1.17 
2014/07/18 03:39:56 jer Exp $
+
+  18 Jul 2014; Jeroen Roovers <[email protected]> xnetload-1.11.3-r1.ebuild,
+  metadata.xml:
+  EAPI bump. Remove short <longdescription>. Install XNetload config. Do not
+  inject CC/CFLAGS/LDFLAGS into Makefile.
 
   16 Oct 2009; Tiago Cunha <[email protected]> xnetload-1.11.3-r1.ebuild:
   stable amd64/sparc, bug 288947



1.2                  net-analyzer/xnetload/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/xnetload/metadata.xml?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/xnetload/metadata.xml?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/xnetload/metadata.xml?r1=1.1&r2=1.2

Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/xnetload/metadata.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- metadata.xml        10 Jul 2004 10:02:02 -0000      1.1
+++ metadata.xml        18 Jul 2014 03:39:56 -0000      1.2
@@ -2,5 +2,4 @@
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
 <pkgmetadata>
 <herd>netmon</herd>
-<longdescription>This little tool displays a count and a graph of the traffic 
over a specified network connection.</longdescription>
 </pkgmetadata>




Reply via email to