diff options
author | Maik Schreiber <blizzy@gentoo.org> | 2002-10-15 07:03:43 +0000 |
---|---|---|
committer | Maik Schreiber <blizzy@gentoo.org> | 2002-10-15 07:03:43 +0000 |
commit | 95772b25465c4cbe08f971eb69fca1109ecfc892 (patch) | |
tree | 88f5dc94c76a422cbe912dfa8df0b83a47921e60 /app-admin | |
parent | new version (diff) | |
download | gentoo-2-95772b25465c4cbe08f971eb69fca1109ecfc892.tar.gz gentoo-2-95772b25465c4cbe08f971eb69fca1109ecfc892.tar.bz2 gentoo-2-95772b25465c4cbe08f971eb69fca1109ecfc892.zip |
bugfix update
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/gentoo-stats/ChangeLog | 7 | ||||
-rw-r--r-- | app-admin/gentoo-stats/files/digest-gentoo-stats-0.3.1 | 1 | ||||
-rw-r--r-- | app-admin/gentoo-stats/gentoo-stats-0.3.1.ebuild | 50 |
3 files changed, 57 insertions, 1 deletions
diff --git a/app-admin/gentoo-stats/ChangeLog b/app-admin/gentoo-stats/ChangeLog index 265c5d219bac..bb9d79e946cd 100644 --- a/app-admin/gentoo-stats/ChangeLog +++ b/app-admin/gentoo-stats/ChangeLog @@ -1,6 +1,11 @@ # 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.8 2002/10/15 04:29:54 blizzy Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/gentoo-stats/ChangeLog,v 1.9 2002/10/15 07:03:43 blizzy Exp $ + +*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. *gentoo-stats-0.3 (15 Oct 2002) diff --git a/app-admin/gentoo-stats/files/digest-gentoo-stats-0.3.1 b/app-admin/gentoo-stats/files/digest-gentoo-stats-0.3.1 new file mode 100644 index 000000000000..022f89a0d9c3 --- /dev/null +++ b/app-admin/gentoo-stats/files/digest-gentoo-stats-0.3.1 @@ -0,0 +1 @@ +MD5 cf2c9b4419f61c41d6f2b767371b18a2 gentoo-stats-0.3.1.tar.bz2 3810 diff --git a/app-admin/gentoo-stats/gentoo-stats-0.3.1.ebuild b/app-admin/gentoo-stats/gentoo-stats-0.3.1.ebuild new file mode 100644 index 000000000000..9351eab79890 --- /dev/null +++ b/app-admin/gentoo-stats/gentoo-stats-0.3.1.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.1.ebuild,v 1.1 2002/10/15 07:03:43 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." +} |