diff options
author | Christian Faulhammer <fauli@gentoo.org> | 2009-11-09 19:48:11 +0000 |
---|---|---|
committer | Christian Faulhammer <fauli@gentoo.org> | 2009-11-09 19:48:11 +0000 |
commit | 149e5583d595c6c90d226791fe39b4e230d45252 (patch) | |
tree | dd65d40e030e4f9d65adf0303b5464e0b5e5adc6 /app-admin | |
parent | clean up (diff) | |
download | gentoo-2-149e5583d595c6c90d226791fe39b4e230d45252.tar.gz gentoo-2-149e5583d595c6c90d226791fe39b4e230d45252.tar.bz2 gentoo-2-149e5583d595c6c90d226791fe39b4e230d45252.zip |
clean up
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/tmpwatch/ChangeLog | 6 | ||||
-rw-r--r-- | app-admin/tmpwatch/tmpwatch-2.9.13.2.ebuild | 42 |
2 files changed, 5 insertions, 43 deletions
diff --git a/app-admin/tmpwatch/ChangeLog b/app-admin/tmpwatch/ChangeLog index 93ef25cb70f4..b8ef047aa3b6 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.87 2009/11/09 19:45:17 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/tmpwatch/ChangeLog,v 1.88 2009/11/09 19:48:11 fauli Exp $ + + 09 Nov 2009; Christian Faulhammer <fauli@gentoo.org> + -tmpwatch-2.9.13.2.ebuild: + clean up 09 Nov 2009; Christian Faulhammer <fauli@gentoo.org> -tmpwatch-2.9.14.ebuild: diff --git a/app-admin/tmpwatch/tmpwatch-2.9.13.2.ebuild b/app-admin/tmpwatch/tmpwatch-2.9.13.2.ebuild deleted file mode 100644 index e2d9e63e151d..000000000000 --- a/app-admin/tmpwatch/tmpwatch-2.9.13.2.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/tmpwatch/tmpwatch-2.9.13.2.ebuild,v 1.8 2008/07/24 15:50:06 armin76 Exp $ - -inherit rpm versionator - -RPM_P="${PN}-$(replace_version_separator 3 '-')" -MY_P="${RPM_P%-*}" - -DESCRIPTION="Files which haven't been accessed in a given period of time are removed from specified directories" -HOMEPAGE="https://fedorahosted.org/tmpwatch/" -# !!!!!!!!! -# new URL from next version on, no damn RPM anymore! https://fedorahosted.org/releases/t/m/tmpwatch/tmpwatch-2.9.13.tar.bz2 -#!!!!!!!!!!!!!!!!!!!!!! -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' -} |