diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2012-11-12 13:07:30 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2012-11-12 13:07:30 +0000 |
commit | 1a28d6e8a44c71f3b3c33e6aa370ca18be16c8b3 (patch) | |
tree | d0759c428ce830520a4b11180674eb6a68574f2e /sys-apps/mlocate | |
parent | Stable for HPPA (bug #440764). (diff) | |
download | gentoo-2-1a28d6e8a44c71f3b3c33e6aa370ca18be16c8b3.tar.gz gentoo-2-1a28d6e8a44c71f3b3c33e6aa370ca18be16c8b3.tar.bz2 gentoo-2-1a28d6e8a44c71f3b3c33e6aa370ca18be16c8b3.zip |
Version bump to latest. Remove older. Fixes bug#437144.
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 8EEE3BE8)
Diffstat (limited to 'sys-apps/mlocate')
-rw-r--r-- | sys-apps/mlocate/ChangeLog | 9 | ||||
-rw-r--r-- | sys-apps/mlocate/mlocate-0.26.ebuild (renamed from sys-apps/mlocate/mlocate-0.24.ebuild) | 21 |
2 files changed, 17 insertions, 13 deletions
diff --git a/sys-apps/mlocate/ChangeLog b/sys-apps/mlocate/ChangeLog index 0ee26d6dfbb1..d42819f3eb90 100644 --- a/sys-apps/mlocate/ChangeLog +++ b/sys-apps/mlocate/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-apps/mlocate # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/mlocate/ChangeLog,v 1.105 2012/08/19 16:56:06 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/mlocate/ChangeLog,v 1.106 2012/11/12 13:07:30 scarabeus Exp $ + +*mlocate-0.26 (12 Nov 2012) + + 12 Nov 2012; Tomáš Chvátal <scarabeus@gentoo.org> +mlocate-0.26.ebuild, + -mlocate-0.24.ebuild: + Version bump to latest. Remove older. Fixes bug#437144. 19 Aug 2012; Raúl Porcel <armin76@gentoo.org> mlocate-0.25.ebuild: alpha/ia64/sparc stable wrt #422183 @@ -384,4 +390,3 @@ +files/updatedb.conf, +metadata.xml, +mlocate-0.17.ebuild: new ebuild for bug 127010, thanks to José Romildo Malaquias <j.romildo@gmail.com> - diff --git a/sys-apps/mlocate/mlocate-0.24.ebuild b/sys-apps/mlocate/mlocate-0.26.ebuild index 4e1de453ef8b..7f0ebadac22e 100644 --- a/sys-apps/mlocate/mlocate-0.24.ebuild +++ b/sys-apps/mlocate/mlocate-0.26.ebuild @@ -1,9 +1,8 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/mlocate/mlocate-0.24.ebuild,v 1.10 2012/05/24 04:16:36 vapier Exp $ - -EAPI="3" +# $Header: /var/cvsroot/gentoo-x86/sys-apps/mlocate/mlocate-0.26.ebuild,v 1.1 2012/11/12 13:07:30 scarabeus Exp $ +EAPI=4 inherit eutils user DESCRIPTION="Merging locate is an utility to index and quickly search for files" @@ -12,7 +11,7 @@ SRC_URI="https://fedorahosted.org/releases/m/l/mlocate/${P}.tar.xz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" IUSE="nls selinux" RDEPEND="!sys-apps/slocate @@ -27,31 +26,31 @@ pkg_setup() { } src_configure() { - econf $(use_enable nls) || die + econf $(use_enable nls) } src_compile() { - emake groupname=locate || die + emake groupname=locate } src_install() { - emake groupname=locate DESTDIR="${D}" install || die + emake groupname=locate DESTDIR="${D}" install dodoc AUTHORS ChangeLog README NEWS insinto /etc - doins "${FILESDIR}"/updatedb.conf || die - doins "${FILESDIR}"/mlocate-cron.conf || die + doins "${FILESDIR}"/updatedb.conf + doins "${FILESDIR}"/mlocate-cron.conf fperms 0644 /etc/{updatedb,mlocate-cron}.conf insinto /etc/cron.daily - newins "${FILESDIR}/mlocate.cron-r2" mlocate + newins "${FILESDIR}"/mlocate.cron-r2 mlocate fperms 0755 /etc/cron.daily/mlocate fowners 0:locate /usr/bin/locate fperms go-r,g+s /usr/bin/locate keepdir /var/lib/mlocate - chown -R 0:locate "${D}"/var/lib/mlocate + chown -R 0:locate "${ED}"/var/lib/mlocate fperms 0750 /var/lib/mlocate } |