diff options
author | 2002-10-25 21:37:59 +0000 | |
---|---|---|
committer | 2002-10-25 21:37:59 +0000 | |
commit | 88752a22ac48878eaad8c17ceb3e65e2d2cb360f (patch) | |
tree | f5bdf69765ed298c6fd7e101577c81e640d4ff91 /app-admin | |
parent | update to use package addpatches (diff) | |
download | gentoo-2-88752a22ac48878eaad8c17ceb3e65e2d2cb360f.tar.gz gentoo-2-88752a22ac48878eaad8c17ceb3e65e2d2cb360f.tar.bz2 gentoo-2-88752a22ac48878eaad8c17ceb3e65e2d2cb360f.zip |
new version
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/gentoo-stats/ChangeLog | 8 | ||||
-rw-r--r-- | app-admin/gentoo-stats/files/digest-gentoo-stats-0.4 | 1 | ||||
-rw-r--r-- | app-admin/gentoo-stats/gentoo-stats-0.4.ebuild | 50 |
3 files changed, 58 insertions, 1 deletions
diff --git a/app-admin/gentoo-stats/ChangeLog b/app-admin/gentoo-stats/ChangeLog index b6a020613b2e..f8140a6fa8ad 100644 --- a/app-admin/gentoo-stats/ChangeLog +++ b/app-admin/gentoo-stats/ChangeLog @@ -1,6 +1,12 @@ # 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.10 2002/10/24 01:18:09 blizzy Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/gentoo-stats/ChangeLog,v 1.11 2002/10/25 21:37:59 blizzy Exp $ + +*gentoo-stats-0.4 (25 Oct 2002) + + 25 Oct 2002; Maik Schreiber <blizzy@gentoo.org> : New version. + Changes in this release: + - PPC support! *gentoo-stats-0.3.2 (24 Oct 2002) diff --git a/app-admin/gentoo-stats/files/digest-gentoo-stats-0.4 b/app-admin/gentoo-stats/files/digest-gentoo-stats-0.4 new file mode 100644 index 000000000000..89f09dc8f22e --- /dev/null +++ b/app-admin/gentoo-stats/files/digest-gentoo-stats-0.4 @@ -0,0 +1 @@ +MD5 4cafd8034eb15372906b0e82663e444d gentoo-stats-0.4.tar.bz2 4145 diff --git a/app-admin/gentoo-stats/gentoo-stats-0.4.ebuild b/app-admin/gentoo-stats/gentoo-stats-0.4.ebuild new file mode 100644 index 000000000000..a368ab66ccef --- /dev/null +++ b/app-admin/gentoo-stats/gentoo-stats-0.4.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.4.ebuild,v 1.1 2002/10/25 21:37:59 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." +} |