summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2002-06-04 21:47:05 +0000
committerSeemant Kulleen <seemant@gentoo.org>2002-06-04 21:47:05 +0000
commit8f506b129ea2865b521c743e04bc361feba063db (patch)
tree52c5cec75321eca1ea6bc45837bbe3666d2fe303 /app-admin
parentversion bump for SGI fix (diff)
downloadhistorical-8f506b129ea2865b521c743e04bc361feba063db.tar.gz
historical-8f506b129ea2865b521c743e04bc361feba063db.tar.bz2
historical-8f506b129ea2865b521c743e04bc361feba063db.zip
version bump and DEPEND list fix
Diffstat (limited to 'app-admin')
-rw-r--r--app-admin/logrotate/ChangeLog11
-rw-r--r--app-admin/logrotate/files/digest-logrotate-3.5.91
-rw-r--r--app-admin/logrotate/logrotate-3.5.9.ebuild27
3 files changed, 38 insertions, 1 deletions
diff --git a/app-admin/logrotate/ChangeLog b/app-admin/logrotate/ChangeLog
index accdfa577c07..8ce67245fca6 100644
--- a/app-admin/logrotate/ChangeLog
+++ b/app-admin/logrotate/ChangeLog
@@ -1,6 +1,15 @@
# 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.1 2002/02/01 21:52:59 gbevin Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/logrotate/ChangeLog,v 1.2 2002/06/04 21:47:05 seemant Exp $
+
+*logrotate-3.5.9 (4 Jun 2002)
+
+ 4 Jun 2002; Seemant Kulleen <seemant@gentoo.org> logrotate-3.5.9.ebuild
+ files/digest-logrotate-3.5.9 :
+
+ Version bump, long needed. Also, added mailx to the DEPEND list (as
+ Debian has it as a required dep). Thanks to ftobin@neverending.org (Frank
+ Tobin) in bug #3381
*logrotate-3.3-r2 (1 Feb 2002)
diff --git a/app-admin/logrotate/files/digest-logrotate-3.5.9 b/app-admin/logrotate/files/digest-logrotate-3.5.9
new file mode 100644
index 000000000000..58b199c688f5
--- /dev/null
+++ b/app-admin/logrotate/files/digest-logrotate-3.5.9
@@ -0,0 +1 @@
+MD5 cf1c13714502367397f44b8d8472dd6a logrotate_3.5.9.orig.tar.gz 28422
diff --git a/app-admin/logrotate/logrotate-3.5.9.ebuild b/app-admin/logrotate/logrotate-3.5.9.ebuild
new file mode 100644
index 000000000000..773ef40671bb
--- /dev/null
+++ b/app-admin/logrotate/logrotate-3.5.9.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# $Header: /var/cvsroot/gentoo-x86/app-admin/logrotate/logrotate-3.5.9.ebuild,v 1.1 2002/06/04 21:47:05 seemant 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"
+
+DEPEND=">=dev-libs/popt-1.5
+ net-mail/mailx"
+
+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*
+
+}