summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-apps')
-rw-r--r--sys-apps/slocate/ChangeLog6
-rw-r--r--sys-apps/slocate/files/digest-slocate-2.7-r21
-rw-r--r--sys-apps/slocate/files/digest-slocate-2.7-r31
-rw-r--r--sys-apps/slocate/files/digest-slocate-2.7-r41
-rw-r--r--sys-apps/slocate/slocate-2.7-r2.ebuild70
-rw-r--r--sys-apps/slocate/slocate-2.7-r3.ebuild77
-rw-r--r--sys-apps/slocate/slocate-2.7-r4.ebuild77
7 files changed, 5 insertions, 228 deletions
diff --git a/sys-apps/slocate/ChangeLog b/sys-apps/slocate/ChangeLog
index 7426f1ba07be..6b2de455ba3e 100644
--- a/sys-apps/slocate/ChangeLog
+++ b/sys-apps/slocate/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-apps/slocate
# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/slocate/ChangeLog,v 1.45 2004/07/22 04:31:51 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/slocate/ChangeLog,v 1.46 2004/07/27 08:36:27 mr_bones_ Exp $
+
+ 27 Jul 2004; Michael Sterrett <mr_bones_@gentoo.org> -slocate-2.7-r2.ebuild,
+ -slocate-2.7-r3.ebuild, -slocate-2.7-r4.ebuild:
+ prune ebuilds
22 Jul 2004; Mike Frysinger <vapier@gentoo.org> files/updatedb.conf:
Add subfs to the prune list #56432 by Andreas Simon.
diff --git a/sys-apps/slocate/files/digest-slocate-2.7-r2 b/sys-apps/slocate/files/digest-slocate-2.7-r2
deleted file mode 100644
index f312912325b1..000000000000
--- a/sys-apps/slocate/files/digest-slocate-2.7-r2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 4872830642ea2ed5f9aff932720583c9 slocate-2.7.tar.gz 87240
diff --git a/sys-apps/slocate/files/digest-slocate-2.7-r3 b/sys-apps/slocate/files/digest-slocate-2.7-r3
deleted file mode 100644
index f312912325b1..000000000000
--- a/sys-apps/slocate/files/digest-slocate-2.7-r3
+++ /dev/null
@@ -1 +0,0 @@
-MD5 4872830642ea2ed5f9aff932720583c9 slocate-2.7.tar.gz 87240
diff --git a/sys-apps/slocate/files/digest-slocate-2.7-r4 b/sys-apps/slocate/files/digest-slocate-2.7-r4
deleted file mode 100644
index f312912325b1..000000000000
--- a/sys-apps/slocate/files/digest-slocate-2.7-r4
+++ /dev/null
@@ -1 +0,0 @@
-MD5 4872830642ea2ed5f9aff932720583c9 slocate-2.7.tar.gz 87240
diff --git a/sys-apps/slocate/slocate-2.7-r2.ebuild b/sys-apps/slocate/slocate-2.7-r2.ebuild
deleted file mode 100644
index 0e3058319679..000000000000
--- a/sys-apps/slocate/slocate-2.7-r2.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/slocate/slocate-2.7-r2.ebuild,v 1.13 2004/07/15 02:34:57 agriffis Exp $
-
-DESCRIPTION="Secure locate provides a secure way to index and quickly search for files on your system (drop-in replacement for 'locate')"
-HOMEPAGE="http://www.geekreview.org/slocate/"
-SRC_URI="ftp://ftp.geekreview.org/slocate/src/slocate-${PV}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="x86 amd64 ppc sparc alpha hppa mips ia64"
-IUSE=""
-
-DEPEND="sys-apps/shadow
- >=sys-apps/sed-4"
-
-src_install() {
-
- dodir /usr/share/man/man1
-
- sed -i -e "/groupadd/s/^/#/;/chown.*slocate/s/^/#/" Makefile || die
- make DESTDIR=${D} install || die
-
- # make install for this package is blocked by sandbox
- dosym slocate /usr/bin/locate
- dosym slocate /usr/bin/updatedb
- fperms 0755 /etc/cron.daily/slocate
- keepdir /var/lib/slocate
-
- # If this file doesn't exist, the first run of updatedb will create
- # it anyway. But doing this shuts it up.
- if [ ! -f ${ROOT}/var/lib/slocate/slocate.db ] ; then
- touch ${D}/var/lib/slocate/slocate.db
- fi
-
- dodoc INSTALL LICENSE COPYING AUTHORS NEWS README ChangeLog
-
- # man page fixing
- rm -rf ${D}/usr/share/man/man1/locate.1.gz
- dosym slocate.1.gz /usr/share/man/man1/locate.1.gz
-
-
- insinto /etc
- doins ${FILESDIR}/updatedb.conf
- fperms 0644 /etc/updatedb.conf
-}
-
-pkg_postinst() {
- touch /var/lib/slocate/slocate.db
-
- # /var/lib/slocate is owned by group slocate and so is the executable
- if ! groupmod slocate; then
- groupadd slocate 2> /dev/null || die "Failed to create slocate group"
- fi
-
- chown root:slocate /usr/bin/slocate
-
- # If nobody else minds I'd like to see 2711 become the system wide default. -solar
- has sfperms ${FEATURES} && chmod 2711 /usr/bin/slocate || chmod 2755 /usr/bin/slocate
-
- chown -R root:slocate /var/lib/slocate
- chmod 0750 /var/lib/slocate
-
- ewarn "If you merged slocate-2.7.ebuild, please remove"
- ewarn "/etc/cron.daily/slocate.cron the .cron is no longer"
- ewarn "in the filename"
- echo
- einfo "Note that the /etc/updatedb.conf file is generic"
- einfo "Please customize it to your system requirements"
-}
diff --git a/sys-apps/slocate/slocate-2.7-r3.ebuild b/sys-apps/slocate/slocate-2.7-r3.ebuild
deleted file mode 100644
index 946b3640adb0..000000000000
--- a/sys-apps/slocate/slocate-2.7-r3.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/slocate/slocate-2.7-r3.ebuild,v 1.7 2004/07/15 02:34:57 agriffis Exp $
-
-inherit flag-o-matic
-
-DESCRIPTION="secure way to index and quickly search for files on your system (drop-in replacement for 'locate')"
-HOMEPAGE="http://www.geekreview.org/slocate/"
-SRC_URI="ftp://ftp.geekreview.org/slocate/src/slocate-${PV}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~amd64 ~ppc ~sparc ~alpha ~hppa ~mips ~ia64 ppc64"
-IUSE=""
-
-DEPEND="sys-apps/shadow
- >=sys-apps/sed-4"
-
-src_compile() {
- filter-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
- econf || die
- emake || die
-}
-
-src_install() {
- dodir /usr/share/man/man1
-
- sed -i -e "/groupadd/s/^/#/;/chown.*slocate/s/^/#/" Makefile || die
- make DESTDIR=${D} install || die
-
- # make install for this package is blocked by sandbox
- dosym slocate /usr/bin/locate
- dosym slocate /usr/bin/updatedb
- fperms 0755 /etc/cron.daily/slocate
- keepdir /var/lib/slocate
-
- # If this file doesn't exist, the first run of updatedb will create
- # it anyway. But doing this shuts it up.
- if [ ! -f ${ROOT}/var/lib/slocate/slocate.db ] ; then
- touch ${D}/var/lib/slocate/slocate.db
- fi
-
- dodoc INSTALL LICENSE COPYING AUTHORS NEWS README ChangeLog
-
- # man page fixing
- rm -rf ${D}/usr/share/man/man1/locate.1.gz
- dosym slocate.1.gz /usr/share/man/man1/locate.1.gz
-
-
- insinto /etc
- doins ${FILESDIR}/updatedb.conf
- fperms 0644 /etc/updatedb.conf
-}
-
-pkg_postinst() {
- touch /var/lib/slocate/slocate.db
-
- # /var/lib/slocate is owned by group slocate and so is the executable
- if ! groupmod slocate; then
- groupadd slocate 2> /dev/null || die "Failed to create slocate group"
- fi
-
- chown root:slocate /usr/bin/slocate
-
- # If nobody else minds I'd like to see 2711 become the system wide default. -solar
- has sfperms ${FEATURES} && chmod 2711 /usr/bin/slocate || chmod 2755 /usr/bin/slocate
-
- chown -R root:slocate /var/lib/slocate
- chmod 0750 /var/lib/slocate
-
- ewarn "If you merged slocate-2.7.ebuild, please remove"
- ewarn "/etc/cron.daily/slocate.cron the .cron is no longer"
- ewarn "in the filename"
- echo
- einfo "Note that the /etc/updatedb.conf file is generic"
- einfo "Please customize it to your system requirements"
-}
diff --git a/sys-apps/slocate/slocate-2.7-r4.ebuild b/sys-apps/slocate/slocate-2.7-r4.ebuild
deleted file mode 100644
index 99f08a49640e..000000000000
--- a/sys-apps/slocate/slocate-2.7-r4.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/slocate/slocate-2.7-r4.ebuild,v 1.4 2004/07/15 02:34:57 agriffis Exp $
-
-inherit flag-o-matic
-
-DESCRIPTION="secure way to index and quickly search for files on your system (drop-in replacement for 'locate')"
-HOMEPAGE="http://www.geekreview.org/slocate/"
-SRC_URI="ftp://ftp.geekreview.org/slocate/src/slocate-${PV}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86 ~amd64 ~ppc ~sparc alpha ~hppa ~mips ia64 ppc64"
-IUSE=""
-
-DEPEND="sys-apps/shadow
- >=sys-apps/sed-4"
-
-src_compile() {
- filter-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
- econf || die
- emake || die
-}
-
-src_install() {
- dodir /usr/share/man/man1
-
- sed -i -e "/groupadd/s/^/#/;/chown.*slocate/s/^/#/" Makefile || die
- make DESTDIR=${D} install || die
-
- # make install for this package is blocked by sandbox
- dosym slocate /usr/bin/locate
- dosym slocate /usr/bin/updatedb
- fperms 0755 /etc/cron.daily/slocate
- keepdir /var/lib/slocate
-
- # If this file doesn't exist, the first run of updatedb will create
- # it anyway. But doing this shuts it up.
- if [ ! -f ${ROOT}/var/lib/slocate/slocate.db ] ; then
- touch ${D}/var/lib/slocate/slocate.db
- fi
-
- dodoc INSTALL LICENSE COPYING AUTHORS NEWS README ChangeLog
-
- # man page fixing
- rm -rf ${D}/usr/share/man/man1/locate.1.gz
- dosym slocate.1.gz /usr/share/man/man1/locate.1.gz
-
-
- insinto /etc
- doins ${FILESDIR}/updatedb.conf
- fperms 0644 /etc/updatedb.conf
-}
-
-pkg_postinst() {
- touch /var/lib/slocate/slocate.db
-
- # /var/lib/slocate is owned by group slocate and so is the executable
- if ! groupmod slocate; then
- groupadd slocate 2> /dev/null || die "Failed to create slocate group"
- fi
-
- chown root:slocate /usr/bin/slocate
-
- # If nobody else minds I'd like to see 2711 become the system wide default. -solar
- has sfperms ${FEATURES} && chmod 2711 /usr/bin/slocate || chmod 2755 /usr/bin/slocate
-
- chown -R root:slocate /var/lib/slocate
- chmod 0750 /var/lib/slocate
-
- ewarn "If you merged slocate-2.7.ebuild, please remove"
- ewarn "/etc/cron.daily/slocate.cron the .cron is no longer"
- ewarn "in the filename"
- echo
- einfo "Note that the /etc/updatedb.conf file is generic"
- einfo "Please customize it to your system requirements"
-}