diff options
author | Robert Coie <rac@gentoo.org> | 2003-05-08 17:44:31 +0000 |
---|---|---|
committer | Robert Coie <rac@gentoo.org> | 2003-05-08 17:44:31 +0000 |
commit | f5ad15668a31b5bf2239789beed58e377c6fd5f0 (patch) | |
tree | e865a19fba18d1e41964433bc10ab37c0672507b /dev-util | |
parent | initial import (diff) | |
download | gentoo-2-f5ad15668a31b5bf2239789beed58e377c6fd5f0.tar.gz gentoo-2-f5ad15668a31b5bf2239789beed58e377c6fd5f0.tar.bz2 gentoo-2-f5ad15668a31b5bf2239789beed58e377c6fd5f0.zip |
initial import
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/splint/ChangeLog | 10 | ||||
-rw-r--r-- | dev-util/splint/Manifest | 3 | ||||
-rw-r--r-- | dev-util/splint/files/digest-splint-3.0.1.6 | 1 | ||||
-rw-r--r-- | dev-util/splint/splint-3.0.1.6.ebuild | 19 |
4 files changed, 32 insertions, 1 deletions
diff --git a/dev-util/splint/ChangeLog b/dev-util/splint/ChangeLog new file mode 100644 index 000000000000..b491e381938b --- /dev/null +++ b/dev-util/splint/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-util/splint +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/splint/ChangeLog,v 1.1 2003/05/08 17:44:29 rac Exp $ + +*splint-3.0.1.6 (08 May 2003) + + 08 May 2003; <rac@gentoo.org> splint-3.0.1.6.ebuild: + initial import. based on ebuild submitted by Matt Hartley + <matthartley@yahoo.com> in bug 14410. + diff --git a/dev-util/splint/Manifest b/dev-util/splint/Manifest index 5f75adc58073..d57888ee0b03 100644 --- a/dev-util/splint/Manifest +++ b/dev-util/splint/Manifest @@ -1,2 +1,3 @@ -MD5 d8bf79c35beec4d72b2471f33743a389 splint-3.0.1.6.ebuild 460 +MD5 f319e899c118beb38868822c23d466ad splint-3.0.1.6.ebuild 557 +MD5 008c61a9a90fd01717d3145f663c7f5a ChangeLog 396 MD5 6c02dbe00c00b90917d9ab37920c27f1 files/digest-splint-3.0.1.6 68 diff --git a/dev-util/splint/files/digest-splint-3.0.1.6 b/dev-util/splint/files/digest-splint-3.0.1.6 new file mode 100644 index 000000000000..e7475d1ef9cf --- /dev/null +++ b/dev-util/splint/files/digest-splint-3.0.1.6 @@ -0,0 +1 @@ +MD5 3b19e62d5b3a8883ac356dff3615234c splint-3.0.1.6.src.tgz 1592456 diff --git a/dev-util/splint/splint-3.0.1.6.ebuild b/dev-util/splint/splint-3.0.1.6.ebuild new file mode 100644 index 000000000000..6b99e61cd937 --- /dev/null +++ b/dev-util/splint/splint-3.0.1.6.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/splint/splint-3.0.1.6.ebuild,v 1.1 2003/05/08 17:44:29 rac Exp $ + +DESCRIPTION="Check C programs for vulnerabilities and programming mistakes" +HOMEPAGE="http://lclint.cs.virginia.edu/" +SRC_URI="http://www.splint.org/downloads/${P}.src.tgz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" + +DEPEND="sys-devel/gcc" + +src_install() { + make DESTDIR=${D} install || die + dobin ${S}/splint + doman ${S}/doc/*.1 +} |