summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Faulhammer <fauli@gentoo.org>2009-07-22 20:49:40 +0000
committerChristian Faulhammer <fauli@gentoo.org>2009-07-22 20:49:40 +0000
commitf55199dcfb5ca83bbc12ccad8da71d2f851c1ef4 (patch)
tree668dbfe008184c686f7f504c0817a74783b7a76c /sys-apps
parentVersion bump. (diff)
downloadgentoo-2-f55199dcfb5ca83bbc12ccad8da71d2f851c1ef4.tar.gz
gentoo-2-f55199dcfb5ca83bbc12ccad8da71d2f851c1ef4.tar.bz2
gentoo-2-f55199dcfb5ca83bbc12ccad8da71d2f851c1ef4.zip
test for usersandbox and userpriv in FEATURES is not needed anymore as upstream fixed the test suite, this cloes bug 278743 by bangert
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'sys-apps')
-rw-r--r--sys-apps/mlocate/ChangeLog6
-rw-r--r--sys-apps/mlocate/mlocate-0.22.ebuild16
2 files changed, 9 insertions, 13 deletions
diff --git a/sys-apps/mlocate/ChangeLog b/sys-apps/mlocate/ChangeLog
index b227b4178881..ceb7c2d1cf18 100644
--- a/sys-apps/mlocate/ChangeLog
+++ b/sys-apps/mlocate/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-apps/mlocate
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/mlocate/ChangeLog,v 1.46 2009/06/11 21:11:13 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/mlocate/ChangeLog,v 1.47 2009/07/22 20:49:40 fauli Exp $
+
+ 22 Jul 2009; Christian Faulhammer <fauli@gentoo.org> mlocate-0.22.ebuild:
+ test for usersandbox and userpriv in FEATURES is not needed anymore as
+ upstream fixed the test suite, this cloes bug 278743 by bangert
11 Jun 2009; Christian Faulhammer <fauli@gentoo.org>
-mlocate-0.21.1.ebuild:
diff --git a/sys-apps/mlocate/mlocate-0.22.ebuild b/sys-apps/mlocate/mlocate-0.22.ebuild
index 631b99b5c79a..3b6ae047e36c 100644
--- a/sys-apps/mlocate/mlocate-0.22.ebuild
+++ b/sys-apps/mlocate/mlocate-0.22.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/mlocate/mlocate-0.22.ebuild,v 1.5 2009/06/11 19:57:44 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/mlocate/mlocate-0.22.ebuild,v 1.6 2009/07/22 20:49:40 fauli Exp $
inherit eutils
@@ -21,12 +21,12 @@ pkg_setup() {
}
src_compile() {
- econf || die "econf failed"
- emake groupname=locate || die "emake failed"
+ econf || die
+ emake groupname=locate || die
}
src_install() {
- emake groupname=locate DESTDIR="${D}" install || die "emake install failed"
+ emake groupname=locate DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog README NEWS
insinto /etc
@@ -49,14 +49,6 @@ src_install() {
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"