blob: 4395687a3678c605676a4133491dc03b0677979f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/logrotate/logrotate-3.5.9-r1.ebuild,v 1.14 2003/09/23 20:20:55 aliz Exp $
DESCRIPTION="Rotates, compresses, and mails system logs"
HOMEPAGE="http://packages.debian.org/unstable/admin/logrotate.html"
SRC_URI="mirror://debian/pool/main/l/logrotate/${P/-/_}.orig.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc sparc"
DEPEND=">=dev-libs/popt-1.5"
src_compile() {
sed -i -e "s:CFLAGS += -g:CFLAGS += -g ${CFLAGS}:" 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"
}
|