summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2006-05-23 02:31:45 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2006-05-23 02:31:45 +0000
commit62c58832731749c06dcbfc89ef33d37301a3b76f (patch)
tree1d1793fbdb076842b9d83ce8156ae1b4dd883e4f /dev-util/cvsutils
parentadded to ~mips for testing (diff)
downloadgentoo-2-62c58832731749c06dcbfc89ef33d37301a3b76f.tar.gz
gentoo-2-62c58832731749c06dcbfc89ef33d37301a3b76f.tar.bz2
gentoo-2-62c58832731749c06dcbfc89ef33d37301a3b76f.zip
Bug #123708 - QA cleanup. All keywords except x86/ppc explictly dropped - please test and re-add.
(Portage version: 2.1_rc1-r2)
Diffstat (limited to 'dev-util/cvsutils')
-rw-r--r--dev-util/cvsutils/ChangeLog6
-rw-r--r--dev-util/cvsutils/cvsutils-0.2.3.ebuild24
2 files changed, 20 insertions, 10 deletions
diff --git a/dev-util/cvsutils/ChangeLog b/dev-util/cvsutils/ChangeLog
index 5b2d14421833..1cb1eabb1c03 100644
--- a/dev-util/cvsutils/ChangeLog
+++ b/dev-util/cvsutils/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-util/cvsutils
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/cvsutils/ChangeLog,v 1.1 2006/02/22 14:08:25 lostlogic Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cvsutils/ChangeLog,v 1.2 2006/05/23 02:31:45 robbat2 Exp $
+
+ 23 May 2006; Robin H. Johnson <robbat2@gentoo.org> cvsutils-0.2.3.ebuild:
+ Bug #123708 - QA cleanup. All keywords except x86/ppc explictly dropped -
+ please test and re-add.
*cvsutils-0.2.3 (22 Feb 2006)
diff --git a/dev-util/cvsutils/cvsutils-0.2.3.ebuild b/dev-util/cvsutils/cvsutils-0.2.3.ebuild
index 56599fb0dac5..a1ae2fe49fba 100644
--- a/dev-util/cvsutils/cvsutils-0.2.3.ebuild
+++ b/dev-util/cvsutils/cvsutils-0.2.3.ebuild
@@ -1,23 +1,29 @@
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/cvsutils/cvsutils-0.2.3.ebuild,v 1.1 2006/02/22 14:08:25 lostlogic Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cvsutils/cvsutils-0.2.3.ebuild,v 1.2 2006/05/23 02:31:45 robbat2 Exp $
+
+inherit autotools
-inherit eutils
DESCRIPTION="A small bundle of utilities to work with CVS repositories"
HOMEPAGE="http://www.red-bean.com/cvsutils/"
SRC_URI="http://www.red-bean.com/cvsutils/releases/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
-DEPEND="sys-apps/sed"
+KEYWORDS="~x86 ~ppc"
+DEPEND=""
RDEPEND="dev-lang/perl"
-S=${WORKDIR}/${P}
-src_compile() {
- econf || die "econf failed"
- emake || die "emake failed"
+MAKEOPTS="${MAKEOPTS} -j1"
+
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+ # clean up some of the internals quickly
+ autoupdate || die "autoupdate failed"
+ eautoreconf || die "eautoreconf failed"
}
src_install() {
- einstall || die
+ emake install DESTDIR="${D}" || die "emake install failed"
+ dodoc AUTHORS README THANKS TODO NEWS
}