diff options
author | Christian Faulhammer <opfer@gentoo.org> | 2008-03-01 18:29:02 +0000 |
---|---|---|
committer | Christian Faulhammer <opfer@gentoo.org> | 2008-03-01 18:29:02 +0000 |
commit | 7a71c022c132547f1670de8cb09115522fb04c3c (patch) | |
tree | 302a4d88df728e35e0c397c9a7ec9fd47698a24a /app-admin | |
parent | Added ~ppc wrt bug 211751 (diff) | |
download | gentoo-2-7a71c022c132547f1670de8cb09115522fb04c3c.tar.gz gentoo-2-7a71c022c132547f1670de8cb09115522fb04c3c.tar.bz2 gentoo-2-7a71c022c132547f1670de8cb09115522fb04c3c.zip |
clean up
(Portage version: 2.1.4.4)
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/tmpwatch/ChangeLog | 6 | ||||
-rw-r--r-- | app-admin/tmpwatch/tmpwatch-2.9.11.2.ebuild | 39 |
2 files changed, 5 insertions, 40 deletions
diff --git a/app-admin/tmpwatch/ChangeLog b/app-admin/tmpwatch/ChangeLog index 3cf67a2f872f..a10531cc7f5c 100644 --- a/app-admin/tmpwatch/ChangeLog +++ b/app-admin/tmpwatch/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-admin/tmpwatch # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/tmpwatch/ChangeLog,v 1.68 2008/03/01 14:02:58 angelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/tmpwatch/ChangeLog,v 1.69 2008/03/01 18:29:02 opfer Exp $ + + 01 Mar 2008; Christian Faulhammer <opfer@gentoo.org> + -tmpwatch-2.9.11.2.ebuild: + clean up 01 Mar 2008; Christoph Mende <angelos@gentoo.org> tmpwatch-2.9.12.2.ebuild: diff --git a/app-admin/tmpwatch/tmpwatch-2.9.11.2.ebuild b/app-admin/tmpwatch/tmpwatch-2.9.11.2.ebuild deleted file mode 100644 index 7fcbe47236d1..000000000000 --- a/app-admin/tmpwatch/tmpwatch-2.9.11.2.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/tmpwatch/tmpwatch-2.9.11.2.ebuild,v 1.6 2007/11/23 21:21:42 corsair Exp $ - -inherit rpm versionator - -RPM_P="${PN}-$(replace_version_separator 3 '-')" -MY_P="${RPM_P%-*}" - -DESCRIPTION="Utility recursively searches through specified directories and removes files which have not been accessed in a specified period of time" -HOMEPAGE="http://download.fedora.redhat.com/pub/fedora/linux/development/source/SRPMS/" -SRC_URI="http://download.fedora.redhat.com/pub/fedora/linux/development/source/SRPMS/${RPM_P}.src.rpm" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86" -IUSE="" - -S=${WORKDIR}/${MY_P} - -src_unpack() { - rpm_src_unpack - - 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' -} |