blob: 8be3230d92464b8d0ce3dac75041f56289275ef3 (
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=6
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 ~arm64 ~ppc ~ppc64 ~x86"
IUSE=""
DEPEND="sys-fs/e2fsprogs"
RDEPEND=""
S=${WORKDIR}/${MY_P/_/-}
PATCHES=(
"${FILESDIR}"/${P}-fix-protect.patch
"${FILESDIR}"/${P}-gentoo.patch
)
src_install() {
emake DESTDIR="${D}" install
insinto /etc
doins debian/tmpreaper.conf
exeinto /etc/cron.daily
newexe debian/cron.daily tmpreaper
doman debian/tmpreaper.conf.5
dodoc README ChangeLog debian/README*
}
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"
}
|