diff options
author | Maik Schreiber <blizzy@gentoo.org> | 2002-10-24 01:18:09 +0000 |
---|---|---|
committer | Maik Schreiber <blizzy@gentoo.org> | 2002-10-24 01:18:09 +0000 |
commit | 4cfd9ca5fa3357a88efe22b8e72053b006c8c3b3 (patch) | |
tree | 1bc83590069506eef1294b5543ffd796bec7b3ba /app-admin/gentoo-stats | |
parent | masked older versions of fakeidentd (diff) | |
download | historical-4cfd9ca5fa3357a88efe22b8e72053b006c8c3b3.tar.gz historical-4cfd9ca5fa3357a88efe22b8e72053b006c8c3b3.tar.bz2 historical-4cfd9ca5fa3357a88efe22b8e72053b006c8c3b3.zip |
new version
Diffstat (limited to 'app-admin/gentoo-stats')
-rw-r--r-- | app-admin/gentoo-stats/ChangeLog | 12 | ||||
-rw-r--r-- | app-admin/gentoo-stats/files/digest-gentoo-stats-0.3.2 | 1 | ||||
-rw-r--r-- | app-admin/gentoo-stats/gentoo-stats-0.3.2.ebuild | 50 |
3 files changed, 60 insertions, 3 deletions
diff --git a/app-admin/gentoo-stats/ChangeLog b/app-admin/gentoo-stats/ChangeLog index bb9d79e946cd..b6a020613b2e 100644 --- a/app-admin/gentoo-stats/ChangeLog +++ b/app-admin/gentoo-stats/ChangeLog @@ -1,11 +1,17 @@ # ChangeLog for app-admin/gentoo-stats # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/gentoo-stats/ChangeLog,v 1.9 2002/10/15 07:03:43 blizzy Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/gentoo-stats/ChangeLog,v 1.10 2002/10/24 01:18:09 blizzy Exp $ + +*gentoo-stats-0.3.2 (24 Oct 2002) + + 24 Oct 2002; Maik Schreiber <blizzy@gentoo.org> : New version. Fixes a bug in + reporting total memory and swap. This closes bug #9545, reported by Xavier + <mooh@xavierneys.com> *gentoo-stats-0.3.1 (15 Oct 2002) - 15 Oct 2002; Maik Schreiber <blizzy@gentoo.org> : New version. - Fixes a bug in reporting the profile. + 15 Oct 2002; Maik Schreiber <blizzy@gentoo.org> : New version. Fixes a bug in + reporting the profile. *gentoo-stats-0.3 (15 Oct 2002) diff --git a/app-admin/gentoo-stats/files/digest-gentoo-stats-0.3.2 b/app-admin/gentoo-stats/files/digest-gentoo-stats-0.3.2 new file mode 100644 index 000000000000..5fc1b1e9eed2 --- /dev/null +++ b/app-admin/gentoo-stats/files/digest-gentoo-stats-0.3.2 @@ -0,0 +1 @@ +MD5 375b2e680fe99fa66ada07289ffa71b1 gentoo-stats-0.3.2.tar.bz2 3932 diff --git a/app-admin/gentoo-stats/gentoo-stats-0.3.2.ebuild b/app-admin/gentoo-stats/gentoo-stats-0.3.2.ebuild new file mode 100644 index 000000000000..ff8633d43231 --- /dev/null +++ b/app-admin/gentoo-stats/gentoo-stats-0.3.2.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/gentoo-stats/gentoo-stats-0.3.2.ebuild,v 1.1 2002/10/24 01:18:09 blizzy Exp $ + +DESCRIPTION="Gentoo Linux usage statistics client daemon" +HOMEPAGE="http://stats.gentoo.org" +SRC_URI="http://stats.gentoo.org/client/${P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +IUSE="" + +# devs: please do not change this, it wouldn't make much sense right now +KEYWORDS="x86 -ppc -sparc -sparc64 -alpha" + +RDEPEND=">=sys-devel/perl-5.6.1 + dev-perl/libwww-perl + sys-apps/textutils + sys-apps/pciutils" +DEPEND="" + +S=${WORKDIR}/${P} + +src_install () { + into /usr + dosbin gentoo-stats + insinto /etc/gentoo-stats + doins gentoo-stats.conf +} + +pkg_postinst() { + ewarn "Please edit /etc/gentoo-stats/gentoo-stats.conf to suit" + ewarn "your needs." + + echo + + einfo 'To obtain a new system ID, run "gentoo-stats --new".' + einfo + einfo "After that, install a new cron job:" + einfo "" + einfo "\t0 0 * * 0,4 /usr/sbin/gentoo-stats --update >/dev/null" + einfo "" + einfo '(You can edit your cron jobs with "crontab -e" or' + einfo '"fcrontab -e", depending on the cron daemon you use.)' + + echo + + ewarn "If you're updating from <gentoo-stats-0.2, please remove" + ewarn "your system ID from the cron job and enter it in" + ewarn "/etc/gentoo-stats/gentoo-stats.conf instead." +} |