diff options
author | Christian Faulhammer <fauli@gentoo.org> | 2009-12-29 00:25:18 +0000 |
---|---|---|
committer | Christian Faulhammer <fauli@gentoo.org> | 2009-12-29 00:25:18 +0000 |
commit | 474d7751261a7d9a9be94c5088538b93cf3b7e6b (patch) | |
tree | d2092764fa068993ceb3b01a9aabf67ba8957243 | |
parent | removed old version (diff) | |
download | gentoo-2-474d7751261a7d9a9be94c5088538b93cf3b7e6b.tar.gz gentoo-2-474d7751261a7d9a9be94c5088538b93cf3b7e6b.tar.bz2 gentoo-2-474d7751261a7d9a9be94c5088538b93cf3b7e6b.zip |
version bump
(Portage version: 2.1.6.13/cvs/Linux i686)
-rw-r--r-- | app-admin/tmpwatch/ChangeLog | 6 | ||||
-rw-r--r-- | app-admin/tmpwatch/tmpwatch-2.9.17.ebuild | 31 |
2 files changed, 36 insertions, 1 deletions
diff --git a/app-admin/tmpwatch/ChangeLog b/app-admin/tmpwatch/ChangeLog index 8cc4901cc516..6cd4b7198658 100644 --- a/app-admin/tmpwatch/ChangeLog +++ b/app-admin/tmpwatch/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-admin/tmpwatch # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/tmpwatch/ChangeLog,v 1.90 2009/11/09 20:04:31 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/tmpwatch/ChangeLog,v 1.91 2009/12/29 00:25:18 fauli Exp $ + + 29 Dec 2009; Christian Faulhammer <fauli@gentoo.org> + +tmpwatch-2.9.17.ebuild: + version bump *tmpwatch-2.9.16 (09 Nov 2009) diff --git a/app-admin/tmpwatch/tmpwatch-2.9.17.ebuild b/app-admin/tmpwatch/tmpwatch-2.9.17.ebuild new file mode 100644 index 000000000000..909a5fead272 --- /dev/null +++ b/app-admin/tmpwatch/tmpwatch-2.9.17.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/tmpwatch/tmpwatch-2.9.17.ebuild,v 1.1 2009/12/29 00:25:18 fauli Exp $ + +DESCRIPTION="Files which haven't been accessed in a given period of time are removed from specified directories" +HOMEPAGE="https://fedorahosted.org/tmpwatch/" +SRC_URI="https://fedorahosted.org/releases/t/m/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +src_unpack() { + unpack ${A} + cd "${S}" + sed -i -e "s:..RPM_OPT_FLAGS.:${CFLAGS}:" \ + -e "s:^CVS:#CVS:g" Makefile \ + || die "sed Makefile failed" + sed -i 's|/sbin/fuser|/bin/fuser|' tmpwatch.c \ + || die "sed tmpwatch.c failed" + sed -i 's|/sbin|/bin|' tmpwatch.8 || die "sed tmpwatch.8 failed" +} + +src_install() { + dosbin tmpwatch || die "dosbin failed" + doman tmpwatch.8 || die "doman failed" + + exeinto /etc/cron.daily + newexe "${FILESDIR}/${PN}.cron" "${PN}" || die 'failed to install cron' +} |