diff options
author | 2003-01-09 21:55:27 +0000 | |
---|---|---|
committer | 2003-01-09 21:55:27 +0000 | |
commit | 2dec3918ad8c50ecbdf2e19490b8bb8b223c5a5d (patch) | |
tree | 3e338ae11298a287057d201642337b2b1c38f723 /sys-apps/slocate | |
parent | marked stable for x86 (diff) | |
download | historical-2dec3918ad8c50ecbdf2e19490b8bb8b223c5a5d.tar.gz historical-2dec3918ad8c50ecbdf2e19490b8bb8b223c5a5d.tar.bz2 historical-2dec3918ad8c50ecbdf2e19490b8bb8b223c5a5d.zip |
fixed permissions for crontab file
Diffstat (limited to 'sys-apps/slocate')
-rw-r--r-- | sys-apps/slocate/ChangeLog | 9 | ||||
-rw-r--r-- | sys-apps/slocate/slocate-2.6.ebuild | 8 |
2 files changed, 10 insertions, 7 deletions
diff --git a/sys-apps/slocate/ChangeLog b/sys-apps/slocate/ChangeLog index 19545a454e54..8eac9b8ef309 100644 --- a/sys-apps/slocate/ChangeLog +++ b/sys-apps/slocate/ChangeLog @@ -1,11 +1,14 @@ # ChangeLog for sys-apps/slocate # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/slocate/ChangeLog,v 1.5 2002/12/13 11:00:33 blizzy Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/slocate/ChangeLog,v 1.6 2003/01/09 21:55:27 mholzer Exp $ - 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords - *slocate-2.6 (09 Jul 2002) + 09 Jan 2003; Martin Holzer <mholzer@gentoo.org> : slocate-2.6.ebuild : + Fixed Permissions for crontab file. + + 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords + 20 Jul 2002; Mark Guertin <gerk@gentoo.org> slocate-2.6.ebuild : Added ppc to keywords diff --git a/sys-apps/slocate/slocate-2.6.ebuild b/sys-apps/slocate/slocate-2.6.ebuild index f020f4a8c1be..0ae348a5d090 100644 --- a/sys-apps/slocate/slocate-2.6.ebuild +++ b/sys-apps/slocate/slocate-2.6.ebuild @@ -1,12 +1,12 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/slocate/slocate-2.6.ebuild,v 1.9 2002/12/09 04:37:26 manson Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/slocate/slocate-2.6.ebuild,v 1.10 2003/01/09 21:55:27 mholzer Exp $ S=${WORKDIR}/${P} DESCRIPTION="Secure locate provides a secure way to index and quickly search for files on your system (drop-in replacement for 'locate')" SRC_URI="ftp://ftp.geekreview.org/slocate/src/slocate-${PV}.tar.gz" HOMEPAGE="http://www.geekreview.org/slocate/" -KEYWORDS="x86 ppc sparc " +KEYWORDS="x86 ppc sparc" SLOT="0" DEPEND="virtual/glibc" LICENSE="GPL-2" @@ -26,8 +26,8 @@ src_install() { dodir /var/lib/slocate ; touch ${D}/var/lib/slocate/.keep insinto /etc/cron.daily - chmod +x slocate.cron - doins slocate.cron + doins slocate.cron + fperms 0755 /etc/cron.daily/slocate.cron # man pages are already compressed for us insinto /usr/share/man/man1 |