diff options
author | 2002-07-28 18:27:48 +0000 | |
---|---|---|
committer | 2002-07-28 18:27:48 +0000 | |
commit | a5e1e1c040cde15e2f724bbaf30418b8176a72ee (patch) | |
tree | 788bc26c433078318c2d76df2baa3b4fb0229223 /app-admin | |
parent | Version bump, added spell support with gtkspell which has been also added as ... (diff) | |
download | historical-a5e1e1c040cde15e2f724bbaf30418b8176a72ee.tar.gz historical-a5e1e1c040cde15e2f724bbaf30418b8176a72ee.tar.bz2 historical-a5e1e1c040cde15e2f724bbaf30418b8176a72ee.zip |
initial import
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.1 | 1 | ||||
-rw-r--r-- | app-admin/gentoo-stats/gentoo-stats-0.1.ebuild | 32 |
3 files changed, 40 insertions, 0 deletions
diff --git a/app-admin/gentoo-stats/ChangeLog b/app-admin/gentoo-stats/ChangeLog new file mode 100644 index 000000000000..bc4525868009 --- /dev/null +++ b/app-admin/gentoo-stats/ChangeLog @@ -0,0 +1,7 @@ +# 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.1 2002/07/28 18:27:48 blizzy Exp $ + +*gentoo-stats-0.1 (28 Jul 2002) + + 28 Jul 2002; Maik Schreiber <blizzy@gentoo.org> : Initial import. diff --git a/app-admin/gentoo-stats/files/digest-gentoo-stats-0.1 b/app-admin/gentoo-stats/files/digest-gentoo-stats-0.1 new file mode 100644 index 000000000000..e3925326f0c2 --- /dev/null +++ b/app-admin/gentoo-stats/files/digest-gentoo-stats-0.1 @@ -0,0 +1 @@ +MD5 c461d14ca078a8f16b9da748da8bdb39 gentoo-stats-0.1.tar.bz2 1818 diff --git a/app-admin/gentoo-stats/gentoo-stats-0.1.ebuild b/app-admin/gentoo-stats/gentoo-stats-0.1.ebuild new file mode 100644 index 000000000000..f3b700938261 --- /dev/null +++ b/app-admin/gentoo-stats/gentoo-stats-0.1.ebuild @@ -0,0 +1,32 @@ +# 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.1.ebuild,v 1.1 2002/07/28 18:27:48 blizzy Exp $ + +DESCRIPTION="Gentoo usage statistics client daemon" +HOMEPAGE="http://gentoo.iq-computing.de" +SRC_URI="http://gentoo.iq-computing.de/client/${P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" + +RDEPEND=">=sys-devel/perl-5.6.1 + dev-perl/libwww-perl" +DEPEND="" + +S=${WORKDIR}/${P} + +src_compile() { + echo "nothing to compile" +} + +src_install () { + into /usr + dosbin gentoo-stats +} + +pkg_postinst() { + einfo 'You must run "gentoo-stats --new" to obtain a system ID.' + einfo "After that, create a new cronjob that looks like this:" + einfo "" + einfo "\t0 0 * * 0,4 /usr/sbin/gentoo-stats --update <your system ID>" +} |