blob: 9300d2fdbf5152b2d180536fad4a2a034c52d8c0 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="3"
inherit eutils
MY_P="${PN}_${PV}+nmu1"
DESCRIPTION="A utility for removing files based on when they were last accessed"
HOMEPAGE="http://packages.debian.org/sid/tmpreaper"
SRC_URI="mirror://debian/pool/main/t/${PN}/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm ppc ~ppc64 x86"
IUSE=""
DEPEND="sys-fs/e2fsprogs"
RDEPEND=""
S="${WORKDIR}/${MY_P/_/-}"
src_prepare() {
epatch "${FILESDIR}"/${PN}-1.6.7-fix-protect.patch
epatch "${FILESDIR}"/${P}-gentoo.patch
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
insinto /etc
doins debian/tmpreaper.conf || die "failed to install"
exeinto /etc/cron.daily
newexe debian/cron.daily tmpreaper || die "failed to install cron script"
doman debian/tmpreaper.conf.5 || die
dodoc README ChangeLog debian/README* || die
}
pkg_postinst() {
elog "This package installs a cron script under /etc/cron.daily"
elog "You can configure it using /etc/tmpreaper.conf"
elog "Consult tmpreaper.conf man page for more information"
elog "Read /usr/share/doc/${P}/README.security and"
elog "remove SHOWWARNING from /etc/tmpreaper.conf afterwards"
}
|