summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2013-04-02 19:34:55 +0000
committerJeroen Roovers <jer@gentoo.org>2013-04-02 19:34:55 +0000
commit461cc767b5b6e035cab32f44a877e735929f1c63 (patch)
tree051a34bdaf9bf018ca8c3c45102a4aec9a79003d /app-admin/sysstat
parentVersion bump, add more USE-flags (diff)
downloadgentoo-2-461cc767b5b6e035cab32f44a877e735929f1c63.tar.gz
gentoo-2-461cc767b5b6e035cab32f44a877e735929f1c63.tar.bz2
gentoo-2-461cc767b5b6e035cab32f44a877e735929f1c63.zip
Respect AR. Version bump.
(Portage version: 2.2.0_alpha171/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'app-admin/sysstat')
-rw-r--r--app-admin/sysstat/ChangeLog9
-rw-r--r--app-admin/sysstat/sysstat-10.0.5.ebuild7
-rw-r--r--app-admin/sysstat/sysstat-10.1.1.ebuild93
-rw-r--r--app-admin/sysstat/sysstat-10.1.2.ebuild93
-rw-r--r--app-admin/sysstat/sysstat-10.1.3.ebuild92
-rw-r--r--app-admin/sysstat/sysstat-10.1.5.ebuild (renamed from app-admin/sysstat/sysstat-10.1.4.ebuild)5
6 files changed, 15 insertions, 284 deletions
diff --git a/app-admin/sysstat/ChangeLog b/app-admin/sysstat/ChangeLog
index c0f495b9f582..a5fd165aceb6 100644
--- a/app-admin/sysstat/ChangeLog
+++ b/app-admin/sysstat/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for app-admin/sysstat
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/sysstat/ChangeLog,v 1.242 2013/03/08 17:44:08 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/sysstat/ChangeLog,v 1.243 2013/04/02 19:34:55 jer Exp $
+
+*sysstat-10.1.5 (02 Apr 2013)
+
+ 02 Apr 2013; Jeroen Roovers <jer@gentoo.org> +sysstat-10.1.5.ebuild,
+ -sysstat-10.1.1.ebuild, -sysstat-10.1.2.ebuild, -sysstat-10.1.3.ebuild,
+ -sysstat-10.1.4.ebuild, sysstat-10.0.5.ebuild:
+ Respect AR. Version bump.
*sysstat-10.1.4 (08 Mar 2013)
diff --git a/app-admin/sysstat/sysstat-10.0.5.ebuild b/app-admin/sysstat/sysstat-10.0.5.ebuild
index 3c587a3c793a..7f4c7a9b6865 100644
--- a/app-admin/sysstat/sysstat-10.0.5.ebuild
+++ b/app-admin/sysstat/sysstat-10.0.5.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/sysstat/sysstat-10.0.5.ebuild,v 1.8 2012/08/26 17:08:08 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/sysstat/sysstat-10.0.5.ebuild,v 1.9 2013/04/02 19:34:55 jer Exp $
EAPI="4"
-inherit eutils multilib
+inherit eutils multilib toolchain-funcs
DESCRIPTION="System performance tools for Linux"
HOMEPAGE="http://pagesperso-orange.fr/sebastien.godard/"
@@ -59,6 +59,7 @@ src_prepare() {
}
src_configure() {
+ tc-export AR
sa_lib_dir=/usr/$(get_libdir)/sa \
conf_dir=/etc \
rcdir=Gentoo-does-not-use-rc.d \
diff --git a/app-admin/sysstat/sysstat-10.1.1.ebuild b/app-admin/sysstat/sysstat-10.1.1.ebuild
deleted file mode 100644
index f23788c1ea75..000000000000
--- a/app-admin/sysstat/sysstat-10.1.1.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/sysstat/sysstat-10.1.1.ebuild,v 1.2 2012/08/06 00:04:13 blueness Exp $
-
-EAPI="4"
-
-inherit eutils multilib
-
-DESCRIPTION="System performance tools for Linux"
-HOMEPAGE="http://pagesperso-orange.fr/sebastien.godard/"
-SRC_URI="${HOMEPAGE}${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
-IUSE="cron debug +doc isag nls lm_sensors"
-
-SYSSTAT_LINGUAS="
- af cs da de eo es eu fi fr hr id it ja ky lv mt nb nl nn pl pt pt_BR ro ru
- sk sr sv uk vi zh_CN zh_TW
-"
-
-for SYSSTAT_LINGUA in ${SYSSTAT_LINGUAS}; do
- IUSE="${IUSE} linguas_${SYSSTAT_LINGUA}"
-done
-
-RDEPEND="
- cron? ( sys-process/cronbase )
- isag? (
- dev-lang/tk
- dev-vcs/rcs
- sci-visualization/gnuplot
- )
- nls? ( virtual/libintl )
- lm_sensors? ( sys-apps/lm_sensors )
-"
-DEPEND="
- ${RDEPEND}
- nls? ( sys-devel/gettext )
-"
-
-src_prepare() {
- local po_count li_count lingua NLSDIR="${S}/nls"
-
- count() { echo ${#}; }
- po_count=$(count ${NLSDIR}/*.po)
- li_count=$(count ${SYSSTAT_LINGUAS})
- [[ ${po_count} = ${li_count} ]] \
- || die "Number of LINGUAS does not match number of .po files"
- unset count
-
- einfo "Keeping these locales: ${LINGUAS}."
- for lingua in ${SYSSTAT_LINGUAS}; do
- if ! use linguas_${lingua}; then
- rm -f "${NLSDIR}/${lingua}.po" || die
- fi
- done
- epatch "${FILESDIR}"/${PN}-10.0.4-flags.patch
-}
-
-src_configure() {
- sa_lib_dir=/usr/$(get_libdir)/sa \
- conf_dir=/etc \
- rcdir=Gentoo-does-not-use-rc.d \
- econf \
- $(use_enable cron install-cron) \
- $(use_enable debug debuginfo) \
- $(use_enable doc documentation ) \
- $(use_enable isag install-isag) \
- $(use_enable lm_sensors sensors) \
- $(use_enable nls)
-}
-
-src_compile() {
- emake LFLAGS="${LDFLAGS}"
-}
-
-src_install() {
- keepdir /var/log/sa
-
- use cron && dodir /etc/cron.{daily,hourly}
-
- emake \
- DESTDIR="${D}" \
- DOC_DIR=/usr/share/doc/${PF} \
- install
-
- dodoc contrib/sargraph/sargraph
-
- newinitd "${FILESDIR}"/sysstat.init.d sysstat
-
- use doc && rm -f "${D}"usr/share/doc/${PF}/COPYING
-}
diff --git a/app-admin/sysstat/sysstat-10.1.2.ebuild b/app-admin/sysstat/sysstat-10.1.2.ebuild
deleted file mode 100644
index 7a9faad9d811..000000000000
--- a/app-admin/sysstat/sysstat-10.1.2.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/sysstat/sysstat-10.1.2.ebuild,v 1.1 2012/10/07 18:15:07 jer Exp $
-
-EAPI="4"
-
-inherit eutils multilib
-
-DESCRIPTION="System performance tools for Linux"
-HOMEPAGE="http://pagesperso-orange.fr/sebastien.godard/"
-SRC_URI="${HOMEPAGE}${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
-IUSE="cron debug +doc isag nls lm_sensors"
-
-SYSSTAT_LINGUAS="
- af cs da de eo es eu fi fr hr id it ja ky lv mt nb nl nn pl pt pt_BR ro ru
- sk sr sv uk vi zh_CN zh_TW
-"
-
-for SYSSTAT_LINGUA in ${SYSSTAT_LINGUAS}; do
- IUSE="${IUSE} linguas_${SYSSTAT_LINGUA}"
-done
-
-RDEPEND="
- cron? ( sys-process/cronbase )
- isag? (
- dev-lang/tk
- dev-vcs/rcs
- sci-visualization/gnuplot
- )
- nls? ( virtual/libintl )
- lm_sensors? ( sys-apps/lm_sensors )
-"
-DEPEND="
- ${RDEPEND}
- nls? ( sys-devel/gettext )
-"
-
-src_prepare() {
- local po_count li_count lingua NLSDIR="${S}/nls"
-
- count() { echo ${#}; }
- po_count=$(count ${NLSDIR}/*.po)
- li_count=$(count ${SYSSTAT_LINGUAS})
- [[ ${po_count} = ${li_count} ]] \
- || die "Number of LINGUAS does not match number of .po files"
- unset count
-
- einfo "Keeping these locales: ${LINGUAS}."
- for lingua in ${SYSSTAT_LINGUAS}; do
- if ! use linguas_${lingua}; then
- rm -f "${NLSDIR}/${lingua}.po" || die
- fi
- done
- epatch "${FILESDIR}"/${PN}-10.0.4-flags.patch
-}
-
-src_configure() {
- sa_lib_dir=/usr/$(get_libdir)/sa \
- conf_dir=/etc \
- rcdir=Gentoo-does-not-use-rc.d \
- econf \
- $(use_enable cron install-cron) \
- $(use_enable debug debuginfo) \
- $(use_enable doc documentation ) \
- $(use_enable isag install-isag) \
- $(use_enable lm_sensors sensors) \
- $(use_enable nls)
-}
-
-src_compile() {
- emake LFLAGS="${LDFLAGS}"
-}
-
-src_install() {
- keepdir /var/log/sa
-
- use cron && dodir /etc/cron.{daily,hourly}
-
- emake \
- DESTDIR="${D}" \
- DOC_DIR=/usr/share/doc/${PF} \
- install
-
- dodoc contrib/sargraph/sargraph
-
- newinitd "${FILESDIR}"/sysstat.init.d sysstat
-
- use doc && rm -f "${D}"usr/share/doc/${PF}/COPYING
-}
diff --git a/app-admin/sysstat/sysstat-10.1.3.ebuild b/app-admin/sysstat/sysstat-10.1.3.ebuild
deleted file mode 100644
index 6dd051484a9e..000000000000
--- a/app-admin/sysstat/sysstat-10.1.3.ebuild
+++ /dev/null
@@ -1,92 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/sysstat/sysstat-10.1.3.ebuild,v 1.2 2012/12/24 17:35:33 jer Exp $
-
-EAPI="4"
-
-inherit eutils multilib
-
-DESCRIPTION="System performance tools for Linux"
-HOMEPAGE="http://pagesperso-orange.fr/sebastien.godard/"
-SRC_URI="${HOMEPAGE}${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
-IUSE="cron debug +doc isag nls lm_sensors"
-
-SYSSTAT_LINGUAS="
- af cs da de eo es eu fi fr hr id it ja ky lv mt nb nl nn pl pt pt_BR ro ru
- sk sr sv uk vi zh_CN zh_TW
-"
-
-for SYSSTAT_LINGUA in ${SYSSTAT_LINGUAS}; do
- IUSE="${IUSE} linguas_${SYSSTAT_LINGUA}"
-done
-
-RDEPEND="
- cron? ( sys-process/cronbase )
- isag? (
- dev-lang/tk
- dev-vcs/rcs
- sci-visualization/gnuplot
- )
- nls? ( virtual/libintl )
- lm_sensors? ( sys-apps/lm_sensors )
-"
-DEPEND="
- ${RDEPEND}
- nls? ( sys-devel/gettext )
-"
-
-src_prepare() {
- local po_count li_count lingua NLSDIR="${S}/nls"
-
- count() { echo ${#}; }
- po_count=$(count ${NLSDIR}/*.po)
- li_count=$(count ${SYSSTAT_LINGUAS})
- [[ ${po_count} = ${li_count} ]] \
- || die "Number of LINGUAS does not match number of .po files"
- unset count
-
- for lingua in ${SYSSTAT_LINGUAS}; do
- if ! use linguas_${lingua}; then
- rm -f "${NLSDIR}/${lingua}.po" || die
- fi
- done
- epatch "${FILESDIR}"/${PN}-10.0.4-flags.patch
-}
-
-src_configure() {
- sa_lib_dir=/usr/$(get_libdir)/sa \
- conf_dir=/etc \
- rcdir=Gentoo-does-not-use-rc.d \
- econf \
- $(use_enable cron install-cron) \
- $(use_enable debug debuginfo) \
- $(use_enable doc documentation ) \
- $(use_enable isag install-isag) \
- $(use_enable lm_sensors sensors) \
- $(use_enable nls)
-}
-
-src_compile() {
- emake LFLAGS="${LDFLAGS}"
-}
-
-src_install() {
- keepdir /var/log/sa
-
- use cron && dodir /etc/cron.{daily,hourly}
-
- emake \
- DESTDIR="${D}" \
- DOC_DIR=/usr/share/doc/${PF} \
- install
-
- dodoc contrib/sargraph/sargraph
-
- newinitd "${FILESDIR}"/sysstat.init.d sysstat
-
- use doc && rm -f "${D}"usr/share/doc/${PF}/COPYING
-}
diff --git a/app-admin/sysstat/sysstat-10.1.4.ebuild b/app-admin/sysstat/sysstat-10.1.5.ebuild
index d00b082bcddc..226a5a69e4d7 100644
--- a/app-admin/sysstat/sysstat-10.1.4.ebuild
+++ b/app-admin/sysstat/sysstat-10.1.5.ebuild
@@ -1,9 +1,9 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/sysstat/sysstat-10.1.4.ebuild,v 1.1 2013/03/08 17:44:08 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/sysstat/sysstat-10.1.5.ebuild,v 1.1 2013/04/02 19:34:55 jer Exp $
EAPI=5
-inherit eutils multilib
+inherit eutils multilib toolchain-funcs
DESCRIPTION="System performance tools for Linux"
HOMEPAGE="http://pagesperso-orange.fr/sebastien.godard/"
@@ -57,6 +57,7 @@ src_prepare() {
}
src_configure() {
+ tc-export AR
sa_lib_dir=/usr/$(get_libdir)/sa \
conf_dir=/etc \
rcdir=Gentoo-does-not-use-rc.d \