summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaik Schreiber <blizzy@gentoo.org>2002-12-19 23:32:00 +0000
committerMaik Schreiber <blizzy@gentoo.org>2002-12-19 23:32:00 +0000
commit1a0fa2ce625579fe8f14f0d4d6bc8e3613af9a90 (patch)
tree7bc2f9f69c25251a779907352b92962ba1ec7392 /app-admin
parentFixed Homepage url (diff)
downloadhistorical-1a0fa2ce625579fe8f14f0d4d6bc8e3613af9a90.tar.gz
historical-1a0fa2ce625579fe8f14f0d4d6bc8e3613af9a90.tar.bz2
historical-1a0fa2ce625579fe8f14f0d4d6bc8e3613af9a90.zip
new version
Diffstat (limited to 'app-admin')
-rw-r--r--app-admin/logrotate/ChangeLog14
-rw-r--r--app-admin/logrotate/files/digest-logrotate-3.6.51
-rw-r--r--app-admin/logrotate/logrotate-3.6.5.ebuild33
3 files changed, 43 insertions, 5 deletions
diff --git a/app-admin/logrotate/ChangeLog b/app-admin/logrotate/ChangeLog
index 2442f870973e..1612400a9d71 100644
--- a/app-admin/logrotate/ChangeLog
+++ b/app-admin/logrotate/ChangeLog
@@ -1,17 +1,21 @@
# ChangeLog for app-admin/logrotate
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/app-admin/logrotate/ChangeLog,v 1.6 2002/12/13 10:55:54 blizzy Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/logrotate/ChangeLog,v 1.7 2002/12/19 23:32:00 blizzy Exp $
+
+*logrotate-3.6.5 (20 Dec 2002)
+
+ 20 Dec 2002; Maik Schreiber <blizzy@gentoo.org> : New version.
06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
-
-*logrotate-3.5.9-r1 (8 Jun 2002)
29 Jul 2002; Calum Selkirk <cselkirk@gentoo.org> logrotate-3.5.9-r1.ebuild :
Added ppc to KEYWORDS.
- 8 Jun 2002; Seemant Kulleen <seemant@gentoo.org> logrotate-3.5.9-r1.ebuild
- files/digest-logrotate-3.5.9-r1 :
+*logrotate-3.5.9-r1 (08 Jun 2002)
+
+ 08 Jun 2002; Seemant Kulleen <seemant@gentoo.org> logrotate-3.5.9-r1.ebuild,
+ files/digest-logrotate-3.5.9-r1:
mailx is removed from RDEPEND list, and instead a note in pkg_setup() to
inform the user to emerge mailx if they would like reports to be e-mailed.
diff --git a/app-admin/logrotate/files/digest-logrotate-3.6.5 b/app-admin/logrotate/files/digest-logrotate-3.6.5
new file mode 100644
index 000000000000..a2b611fc81fc
--- /dev/null
+++ b/app-admin/logrotate/files/digest-logrotate-3.6.5
@@ -0,0 +1 @@
+MD5 1c707f826f783ffc461a32b34cba5056 logrotate_3.6.5.orig.tar.gz 32086
diff --git a/app-admin/logrotate/logrotate-3.6.5.ebuild b/app-admin/logrotate/logrotate-3.6.5.ebuild
new file mode 100644
index 000000000000..d372fa63d804
--- /dev/null
+++ b/app-admin/logrotate/logrotate-3.6.5.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-admin/logrotate/logrotate-3.6.5.ebuild,v 1.1 2002/12/19 23:32:00 blizzy Exp $
+
+S=${WORKDIR}/${P}
+DESCRIPTION="Rotates, compresses, and mails system logs"
+SRC_URI="http://ftp.debian.org/debian/pool/main/l/${PN}/${PN}_${PV}.orig.tar.gz"
+HOMEPAGE="http://packages.debian.org/unstable/admin/logrotate.html"
+
+IUSE=""
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~x86 ~ppc ~sparc"
+
+DEPEND=">=dev-libs/popt-1.5"
+
+src_compile() {
+ cp Makefile Makefile.orig
+ sed -e "s:CFLAGS += -g:CFLAGS += -g ${CFLAGS}:" Makefile.orig > Makefile
+ make || die
+}
+
+src_install() {
+ insinto /usr
+ dosbin logrotate
+ doman logrotate.8
+ dodoc examples/logrotate*
+}
+
+pkg_postinst() {
+ einfo "If you wish to have logrotate e-mail you updates, please"
+ einfo "emerge net-mail/mailx"
+}