summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Johanson <latexer@gentoo.org>2003-02-18 02:10:05 +0000
committerPeter Johanson <latexer@gentoo.org>2003-02-18 02:10:05 +0000
commit2c24e8ef503666add92ed555b10ebe94a3427419 (patch)
treef514b9add6e287bdc9d90ed72ab807c25b9979a5 /dev-util
parentsmall corrections for distcc-1.1-r10 (diff)
downloadhistorical-2c24e8ef503666add92ed555b10ebe94a3427419.tar.gz
historical-2c24e8ef503666add92ed555b10ebe94a3427419.tar.bz2
historical-2c24e8ef503666add92ed555b10ebe94a3427419.zip
Added a patch for copyright dates. marked stable.
Diffstat (limited to 'dev-util')
-rw-r--r--dev-util/lintool/ChangeLog7
-rw-r--r--dev-util/lintool/files/digest-lintool-0.2.3-r12
-rw-r--r--dev-util/lintool/lintool-0.2.3-r1.ebuild29
3 files changed, 37 insertions, 1 deletions
diff --git a/dev-util/lintool/ChangeLog b/dev-util/lintool/ChangeLog
index 4aba28720196..f809eaa4ca1f 100644
--- a/dev-util/lintool/ChangeLog
+++ b/dev-util/lintool/ChangeLog
@@ -1,12 +1,17 @@
# ChangeLog for dev-util/lintool
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/lintool/ChangeLog,v 1.10 2003/02/12 17:04:55 latexer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/lintool/ChangeLog,v 1.11 2003/02/18 02:10:05 latexer Exp $
11 Feb 2003; Guy Martin <gmsoft@gentoo.org> :
Added hppa to keywords.
06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
+*lintool-0.2.3-r1 (17 Feb 2003)
+
+ 17 Feb 2003; Peter Johanson <latexer@gentoo.org> lintool-0.2.3-r1.ebuild files/digest-lintool-0.2.3-r1 :
+ Added a patch to do copyright dates properly
+
*lintool-0.2.4 (30 Oct 2002)
12 Feb 2003; Peter Johanson <latexer@gentoo.org> lintool-0.2.4.ebuild :
diff --git a/dev-util/lintool/files/digest-lintool-0.2.3-r1 b/dev-util/lintool/files/digest-lintool-0.2.3-r1
new file mode 100644
index 000000000000..9bb52717898d
--- /dev/null
+++ b/dev-util/lintool/files/digest-lintool-0.2.3-r1
@@ -0,0 +1,2 @@
+MD5 4c310a05a148d73d387e0035f5009f73 lintool-0.2.3.tar.bz2 19689
+MD5 19aca3c4872b05d40dfe61048490d4f0 lintool-copyright-patch.diff 1049
diff --git a/dev-util/lintool/lintool-0.2.3-r1.ebuild b/dev-util/lintool/lintool-0.2.3-r1.ebuild
new file mode 100644
index 000000000000..a87b00c8d9c7
--- /dev/null
+++ b/dev-util/lintool/lintool-0.2.3-r1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/lintool/lintool-0.2.3-r1.ebuild,v 1.1 2003/02/18 02:10:05 latexer Exp $
+
+inherit eutils
+
+DESCRIPTION="Gentoo Linux \"lint\" utility"
+HOMEPAGE="http://www.gentoo.org/~karltk/projects/lintool/"
+SRC_URI="http://www.gentoo.org/~karltk/projects/lintool/releases/${P}.tar.bz2
+ mirror://gentoo/lintool-copyright-patch.diff"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="x86 ppc sparc hppa alpha"
+DEPEND=">=dev-lang/python-2.2"
+S="${WORKDIR}/${P}"
+
+src_unpack(){
+ unpack ${A}
+ cd ${S}
+ epatch ${DISTDIR}/lintool-copyright-patch.diff
+}
+src_compile() {
+ emake || die
+}
+
+src_install () {
+ make DESTDIR=${D} install || die
+ dodoc README NEWS ChangeLog COPYING AUTHORS
+}