* [gentoo-commits] gentoo-x86 commit in sys-libs/libstatgrab: libstatgrab-0.91.ebuild ChangeLog
@ 2014-10-17 9:41 Ian Delaney (idella4)
0 siblings, 0 replies; 2+ messages in thread
From: Ian Delaney (idella4) @ 2014-10-17 9:41 UTC (permalink / raw
To: gentoo-commits
idella4 14/10/17 09:41:51
Modified: ChangeLog
Added: libstatgrab-0.91.ebuild
Log:
bump; add IUSE examples and their install, permission to bump by maintainer
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path
1.30 sys-libs/libstatgrab/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libstatgrab/ChangeLog?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libstatgrab/ChangeLog?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libstatgrab/ChangeLog?r1=1.29&r2=1.30
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libstatgrab/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog 10 Aug 2014 20:12:48 -0000 1.29
+++ ChangeLog 17 Oct 2014 09:41:51 -0000 1.30
@@ -1,6 +1,11 @@
# ChangeLog for sys-libs/libstatgrab
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libstatgrab/ChangeLog,v 1.29 2014/08/10 20:12:48 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libstatgrab/ChangeLog,v 1.30 2014/10/17 09:41:51 idella4 Exp $
+
+*libstatgrab-0.91 (17 Oct 2014)
+
+ 17 Oct 2014; Ian Delaney <idella4@gentoo.org> +libstatgrab-0.91.ebuild:
+ bump; add IUSE examples and their install, permission to bump by maintainer
10 Aug 2014; Sergei Trofimovich <slyfox@gentoo.org> libstatgrab-0.16.ebuild,
libstatgrab-0.17.ebuild:
1.1 sys-libs/libstatgrab/libstatgrab-0.91.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libstatgrab/libstatgrab-0.91.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libstatgrab/libstatgrab-0.91.ebuild?rev=1.1&content-type=text/plain
Index: libstatgrab-0.91.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/libstatgrab/libstatgrab-0.91.ebuild,v 1.1 2014/10/17 09:41:51 idella4 Exp $
EAPI=4
inherit autotools-utils
DESCRIPTION="A tool to provide access to statistics about the system on which it's run"
HOMEPAGE="http://www.i-scream.org/libstatgrab/"
SRC_URI="http://www.mirrorservice.org/sites/ftp.i-scream.org/pub/i-scream/libstatgrab/${P}.tar.gz"
LICENSE="|| ( GPL-2 LGPL-2.1 )"
SLOT=0
KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~x86"
IUSE="doc examples static-libs"
RDEPEND="sys-libs/ncurses"
DEPEND="${RDEPEND}"
DOCS=( ChangeLog PLATFORMS NEWS AUTHORS README )
src_configure() {
local myeconfargs=(
--disable-setgid-binaries
--disable-setuid-binaries
--with-ncurses
$(use_enable static-libs static)
)
autotools-utils_src_configure
}
src_install() {
autotools-utils_src_install
if use examples; then
docompress -x /usr/share/doc/${PF}/examples
insinto /usr/share/doc/${PF}/examples
doins -r examples/*
fi
}
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-libs/libstatgrab: libstatgrab-0.91.ebuild ChangeLog
@ 2014-11-10 11:40 Jeroen Roovers (jer)
0 siblings, 0 replies; 2+ messages in thread
From: Jeroen Roovers (jer) @ 2014-11-10 11:40 UTC (permalink / raw
To: gentoo-commits
jer 14/11/10 11:40:58
Modified: libstatgrab-0.91.ebuild ChangeLog
Log:
Fix building against sys-libs/ncurses[tinfo] (bug #481972).
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Revision Changes Path
1.2 sys-libs/libstatgrab/libstatgrab-0.91.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libstatgrab/libstatgrab-0.91.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libstatgrab/libstatgrab-0.91.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libstatgrab/libstatgrab-0.91.ebuild?r1=1.1&r2=1.2
Index: libstatgrab-0.91.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libstatgrab/libstatgrab-0.91.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libstatgrab-0.91.ebuild 17 Oct 2014 09:41:51 -0000 1.1
+++ libstatgrab-0.91.ebuild 10 Nov 2014 11:40:58 -0000 1.2
@@ -1,9 +1,10 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libstatgrab/libstatgrab-0.91.ebuild,v 1.1 2014/10/17 09:41:51 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libstatgrab/libstatgrab-0.91.ebuild,v 1.2 2014/11/10 11:40:58 jer Exp $
-EAPI=4
+EAPI=5
+AUTOTOOLS_AUTORECONF=frob
inherit autotools-utils
DESCRIPTION="A tool to provide access to statistics about the system on which it's run"
@@ -20,6 +21,8 @@
DOCS=( ChangeLog PLATFORMS NEWS AUTHORS README )
+PATCHES=( "${FILESDIR}"/${P}-tinfo.patch )
+
src_configure() {
local myeconfargs=(
--disable-setgid-binaries
1.31 sys-libs/libstatgrab/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libstatgrab/ChangeLog?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libstatgrab/ChangeLog?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libstatgrab/ChangeLog?r1=1.30&r2=1.31
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libstatgrab/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog 17 Oct 2014 09:41:51 -0000 1.30
+++ ChangeLog 10 Nov 2014 11:40:58 -0000 1.31
@@ -1,6 +1,10 @@
# ChangeLog for sys-libs/libstatgrab
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libstatgrab/ChangeLog,v 1.30 2014/10/17 09:41:51 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libstatgrab/ChangeLog,v 1.31 2014/11/10 11:40:58 jer Exp $
+
+ 10 Nov 2014; Jeroen Roovers <jer@gentoo.org> libstatgrab-0.91.ebuild,
+ +files/libstatgrab-0.91-tinfo.patch:
+ Fix building against sys-libs/ncurses[tinfo] (bug #481972).
*libstatgrab-0.91 (17 Oct 2014)
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-11-10 11:41 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-17 9:41 [gentoo-commits] gentoo-x86 commit in sys-libs/libstatgrab: libstatgrab-0.91.ebuild ChangeLog Ian Delaney (idella4)
-- strict thread matches above, loose matches on Subject: below --
2014-11-10 11:40 Jeroen Roovers (jer)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox