diff options
author | Christian Faulhammer <opfer@gentoo.org> | 2007-08-29 06:13:40 +0000 |
---|---|---|
committer | Christian Faulhammer <opfer@gentoo.org> | 2007-08-29 06:13:40 +0000 |
commit | 7d7ff9d482d20b2dd9b8d7b69e6eb14291693241 (patch) | |
tree | 39f459e90d8192e73df4892525c94ca2d9b4b683 /sys-apps | |
parent | opengl also needs glut, fixing deps, thanks to Rickard Närström <rickard.na... (diff) | |
download | gentoo-2-7d7ff9d482d20b2dd9b8d7b69e6eb14291693241.tar.gz gentoo-2-7d7ff9d482d20b2dd9b8d7b69e6eb14291693241.tar.bz2 gentoo-2-7d7ff9d482d20b2dd9b8d7b69e6eb14291693241.zip |
version bump, adds some information to man pages and fixes a memory leak. See bug 190562
(Portage version: 2.1.2.12)
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/mlocate/ChangeLog | 8 | ||||
-rw-r--r-- | sys-apps/mlocate/files/digest-mlocate-0.18 | 3 | ||||
-rw-r--r-- | sys-apps/mlocate/mlocate-0.18.ebuild | 59 |
3 files changed, 69 insertions, 1 deletions
diff --git a/sys-apps/mlocate/ChangeLog b/sys-apps/mlocate/ChangeLog index 35f06159922d..b35fdb05a7e3 100644 --- a/sys-apps/mlocate/ChangeLog +++ b/sys-apps/mlocate/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-apps/mlocate # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/mlocate/ChangeLog,v 1.3 2007/08/24 07:06:49 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/mlocate/ChangeLog,v 1.4 2007/08/29 06:13:39 opfer Exp $ + +*mlocate-0.18 (29 Aug 2007) + + 29 Aug 2007; Christian Faulhammer <opfer@gentoo.org> +mlocate-0.18.ebuild: + version bump, adds some information to man pages and fixes a memory leak. + See bug 190562 24 Aug 2007; Christian Faulhammer <opfer@gentoo.org> mlocate-0.17.ebuild: stable x86 diff --git a/sys-apps/mlocate/files/digest-mlocate-0.18 b/sys-apps/mlocate/files/digest-mlocate-0.18 new file mode 100644 index 000000000000..c77e2a6f33af --- /dev/null +++ b/sys-apps/mlocate/files/digest-mlocate-0.18 @@ -0,0 +1,3 @@ +MD5 c4352d10b47e569297caedd2c2d22675 mlocate-0.18.tar.bz2 310037 +RMD160 6fdc6eaa479e0bc4d9caaaec1facbdb45372738d mlocate-0.18.tar.bz2 310037 +SHA256 cb7af6422d37b96b2ca919d1636ddf3d957136c25f52a330cc9006c14abf1f95 mlocate-0.18.tar.bz2 310037 diff --git a/sys-apps/mlocate/mlocate-0.18.ebuild b/sys-apps/mlocate/mlocate-0.18.ebuild new file mode 100644 index 000000000000..6e028e756bb8 --- /dev/null +++ b/sys-apps/mlocate/mlocate-0.18.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/mlocate/mlocate-0.18.ebuild,v 1.1 2007/08/29 06:13:39 opfer Exp $ + +inherit eutils + +DESCRIPTION="Merging locate is an utility to index and quickly search for files" +HOMEPAGE="http://carolina.mff.cuni.cz/~trmac/blog/mlocate/" +SRC_URI="http://people.redhat.com/mitr/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="!sys-apps/slocate + !sys-apps/rlocate" + +pkg_setup() { + enewgroup locate +} + +src_compile() { + econf || die "econf failed" + emake groupname=locate || die "emake failed" +} + +src_install() { + emake groupname=locate DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS ChangeLog README NEWS + + insinto /etc + doins "${FILESDIR}/updatedb.conf" + fperms 0644 /etc/updatedb.conf + + insinto /etc/cron.daily + newins "${FILESDIR}/mlocate.cron" mlocate + fperms 0755 /etc/cron.daily/mlocate + + fowners 0:locate /usr/bin/locate + fperms go-r,g+s /usr/bin/locate + + chown -R 0:locate "${D}/var/lib/mlocate" + fperms 0750 /var/lib/mlocate + keepdir /var/lib/mlocate +} + +src_test() { + if has userpriv ${FEATURES} && ! has usersandbox ${FEATURES}; then + make check-local || die "test suite failed" + else + ewarn "Activate FEATURES=userpriv and deactivate FEATURES=usersandbox to run testsuite." + fi +} + +pkg_postinst() { + elog "Note that the /etc/updatedb.conf file is generic" + elog "Please customize it to your system requirements" +} |