diff options
author | 2002-11-08 13:59:10 +0000 | |
---|---|---|
committer | 2002-11-08 13:59:10 +0000 | |
commit | 936af0f6070ee0b37d202426799445dd036e3d2d (patch) | |
tree | fdb15f656f2ca518abbe712bb0999cac94dcd5d1 /app-admin/tmpwatch/tmpwatch-2.8.4.ebuild | |
parent | Fixed FHS issue (diff) | |
download | historical-936af0f6070ee0b37d202426799445dd036e3d2d.tar.gz historical-936af0f6070ee0b37d202426799445dd036e3d2d.tar.bz2 historical-936af0f6070ee0b37d202426799445dd036e3d2d.zip |
Initial import.
Diffstat (limited to 'app-admin/tmpwatch/tmpwatch-2.8.4.ebuild')
-rw-r--r-- | app-admin/tmpwatch/tmpwatch-2.8.4.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/app-admin/tmpwatch/tmpwatch-2.8.4.ebuild b/app-admin/tmpwatch/tmpwatch-2.8.4.ebuild new file mode 100644 index 000000000000..c566a4e2622e --- /dev/null +++ b/app-admin/tmpwatch/tmpwatch-2.8.4.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/tmpwatch/tmpwatch-2.8.4.ebuild,v 1.1 2002/11/08 13:59:10 aliz Exp $ + +RPM_V="4" + +S=${WORKDIR}/${P} +DESCRIPTION="Utility recursively searches through specified directories and removes files which have not been accessed in a specified period of time." +SRC_URI="ftp://ftp.redhat.com/pub/redhat/linux/rawhide/SRPMS/SRPMS/${P}-${RPM_V}.src.rpm" +HOMEPAGE="ftp://ftp.redhat.com/pub/redhat/linux/rawhide/SRPMS/SRPMS" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +DEPEND="virtual/glibc + app-arch/rpm2targz" + +src_unpack() { + cd ${WORKDIR} + rpm2targz ${DISTDIR}/${P}-${RPM_V}.src.rpm + tar zxf ${P}-${RPM_V}.src.tar.gz + tar zxf ${P}.tar.gz + + cd ${S} + sed "s/..RPM_OPT_FLAGS./${CFLAGS}/" \ + < Makefile > Makefile.new + mv -f Makefile.new Makefile +} + +src_compile() { + emake || die +} + +src_install() { + preplib /usr + + dosbin tmpwatch + doman tmpwatch.8 +} |