blob: 44277e45b382bf246a7d950b0c665b234a51b8b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/slocate/slocate-3.1-r1.ebuild,v 1.1 2006/04/21 05:23:00 vapier Exp $
inherit flag-o-matic eutils
DESCRIPTION="Secure way to index and quickly search for files on your system (drop-in replacement for 'locate')"
HOMEPAGE="http://slocate.trakker.ca/"
SRC_URI="http://slocate.trakker.ca/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE=""
DEPEND="sys-apps/shadow"
RDEPEND="${DEPEND}
!sys-apps/rlocate"
pkg_setup() {
if [[ -n $(egetent group slocate) ]] ; then
eerror "The 'slocate' group has been renamed to 'locate'."
eerror "You seem to already have a 'slocate' group."
eerror "Please rename it:"
eerror "groupmod -n locate slocate"
die "Change 'slocate' to 'locate'"
fi
enewgroup locate 245
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-build.patch
epatch "${FILESDIR}"/${P}-incompat-warning.patch
epatch "${FILESDIR}"/${P}-cron.patch
}
src_compile() {
filter-lfs-flags
# this is safe since slocate only has 1 binary
append-ldflags $(bindnow-flags)
emake -C src || die
}
src_install() {
dobin src/slocate || die
dodir /usr/bin
dosym slocate /usr/bin/locate
dosym slocate /usr/bin/updatedb
exeinto /etc/cron.daily
newexe debian/cron.daily slocate || die
doman doc/*.1
dosym slocate.1 /usr/share/man/man1/locate.1
keepdir /var/lib/slocate
dodoc Changelog README WISHLIST notes
insinto /etc
doins "${FILESDIR}"/updatedb.conf
fowners root:locate /usr/bin/slocate
fperms go-r,g+s /usr/bin/slocate
chown -R root:locate "${D}"/var/lib/slocate
fperms 0750 /var/lib/slocate
}
pkg_postinst() {
if [[ -f ${ROOT}/etc/cron.daily/slocate.cron ]]; then
ewarn "If you merged slocate-2.7.ebuild, please remove"
ewarn "/etc/cron.daily/slocate.cron since .cron has been removed"
ewarn "from the filename"
echo
fi
einfo "Note that the /etc/updatedb.conf file is generic"
einfo "Please customize it to your system requirements"
echo
ewarn "The slocate database created by slocate-2.x is incompatible"
ewarn "with slocate-3.x. Make sure you run updatedb!"
}
|