summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2008-11-12 23:45:00 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2008-11-12 23:45:00 +0000
commit3ad8a455b9432ec9db77b99f467d31af9c37d6c1 (patch)
tree79b66b7c64792560b55b9af4de0ea80a7c8a5196 /dev-util/patchutils
parentVersion bump for openoffice-3 compatibility (see bug #246443). (diff)
downloadgentoo-2-3ad8a455b9432ec9db77b99f467d31af9c37d6c1.tar.gz
gentoo-2-3ad8a455b9432ec9db77b99f467d31af9c37d6c1.tar.bz2
gentoo-2-3ad8a455b9432ec9db77b99f467d31af9c37d6c1.zip
Add myself as maintainer.
(Portage version: 2.2_rc14/cvs/Linux 2.6.27-gentoo-r2 x86_64)
Diffstat (limited to 'dev-util/patchutils')
-rw-r--r--dev-util/patchutils/ChangeLog8
-rw-r--r--dev-util/patchutils/metadata.xml5
-rw-r--r--dev-util/patchutils/patchutils-0.3.0.ebuild26
3 files changed, 37 insertions, 2 deletions
diff --git a/dev-util/patchutils/ChangeLog b/dev-util/patchutils/ChangeLog
index 31457dbcd03b..e56f84a652d6 100644
--- a/dev-util/patchutils/ChangeLog
+++ b/dev-util/patchutils/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for dev-util/patchutils
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/patchutils/ChangeLog,v 1.38 2008/01/07 12:22:39 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/patchutils/ChangeLog,v 1.39 2008/11/12 23:45:00 flameeyes Exp $
+
+*patchutils-0.3.0 (12 Nov 2008)
+
+ 12 Nov 2008; Diego Pettenò <flameeyes@gentoo.org> metadata.xml,
+ +patchutils-0.3.0.ebuild:
+ Add myself as maintainer.
07 Jan 2008; Robin H. Johnson <robbat2@gentoo.org>
-patchutils-0.2.23.ebuild, -patchutils-0.2.29.ebuild,
diff --git a/dev-util/patchutils/metadata.xml b/dev-util/patchutils/metadata.xml
index 40149c995561..dbc584cde50f 100644
--- a/dev-util/patchutils/metadata.xml
+++ b/dev-util/patchutils/metadata.xml
@@ -1,5 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <herd>shell-tools</herd>
+ <maintainer>
+ <email>flameeyes@gentoo.org</email>
+ </maintainer>
+ <herd>shell-tools</herd>
</pkgmetadata>
diff --git a/dev-util/patchutils/patchutils-0.3.0.ebuild b/dev-util/patchutils/patchutils-0.3.0.ebuild
new file mode 100644
index 000000000000..5a6e217d4ad6
--- /dev/null
+++ b/dev-util/patchutils/patchutils-0.3.0.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/patchutils/patchutils-0.3.0.ebuild,v 1.1 2008/11/12 23:45:00 flameeyes Exp $
+
+WANT_AUTOMAKE=1.8
+inherit autotools
+
+DESCRIPTION="A collection of tools that operate on patch files"
+HOMEPAGE="http://cyberelk.net/tim/patchutils/"
+SRC_URI="http://cyberelk.net/tim/data/patchutils/stable/${P}.tar.bz2"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+IUSE="test"
+
+RDEPEND=""
+# The testsuite makes use of gendiff(1) that comes from rpm, thus if
+# the user wants to run tests, it should install that too.
+DEPEND="test? ( app-arch/rpm )"
+
+src_install() {
+ emake DESTDIR="${D}" install || die "emake install failed"
+
+ dodoc AUTHORS BUGS ChangeLog NEWS README TODO || die "dodoc failed"
+}