summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2004-09-19 01:18:30 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2004-09-19 01:18:30 +0000
commitcae8d0ef8e89812df87be713c02e9fb4a89a28bd (patch)
treee3e5306445e896c6cd79595f0131f74ad29d30d6 /dev-util/pscan
parentx11-base/xfree -> virtual/x11 (diff)
downloadhistorical-cae8d0ef8e89812df87be713c02e9fb4a89a28bd.tar.gz
historical-cae8d0ef8e89812df87be713c02e9fb4a89a28bd.tar.bz2
historical-cae8d0ef8e89812df87be713c02e9fb4a89a28bd.zip
Initial commit. Ebuild by Robin H. Johnson <robbat2@gentoo.org>.
Diffstat (limited to 'dev-util/pscan')
-rw-r--r--dev-util/pscan/ChangeLog9
-rw-r--r--dev-util/pscan/Manifest4
-rw-r--r--dev-util/pscan/files/digest-pscan-200007211
-rw-r--r--dev-util/pscan/metadata.xml8
-rw-r--r--dev-util/pscan/pscan-20000721.ebuild25
5 files changed, 47 insertions, 0 deletions
diff --git a/dev-util/pscan/ChangeLog b/dev-util/pscan/ChangeLog
new file mode 100644
index 000000000000..25138a3ea159
--- /dev/null
+++ b/dev-util/pscan/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for dev-util/pscan
+# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/pscan/ChangeLog,v 1.1 2004/09/19 01:18:30 robbat2 Exp $
+
+*pscan-20000721 (18 Sep 2004)
+
+ 18 Sep 2004; Robin H. Johnson <robbat2@gentoo.org> +pscan-20000721.ebuild:
+ Initial commit. Ebuild by Robin H. Johnson <robbat2@gentoo.org>.
+
diff --git a/dev-util/pscan/Manifest b/dev-util/pscan/Manifest
new file mode 100644
index 000000000000..50d22d2b786f
--- /dev/null
+++ b/dev-util/pscan/Manifest
@@ -0,0 +1,4 @@
+MD5 8c507fa1532b2dcfc4c17e35d9f2dd7f pscan-20000721.ebuild 775
+MD5 f3640062ad8e8ca7e297ec564ba954a7 ChangeLog 378
+MD5 21cd68602737d7c996bceabf6e62c468 metadata.xml 223
+MD5 79eadb4eb3e61751b21c893cdd0a1708 files/digest-pscan-20000721 56
diff --git a/dev-util/pscan/files/digest-pscan-20000721 b/dev-util/pscan/files/digest-pscan-20000721
new file mode 100644
index 000000000000..7ea50c0fd572
--- /dev/null
+++ b/dev-util/pscan/files/digest-pscan-20000721
@@ -0,0 +1 @@
+MD5 9a83db546f0398d2eb7162b9c3f7cecc pscan.tar.gz 14555
diff --git a/dev-util/pscan/metadata.xml b/dev-util/pscan/metadata.xml
new file mode 100644
index 000000000000..5d9f5be9d49d
--- /dev/null
+++ b/dev-util/pscan/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>no-herd</herd>
+<maintainer>
+ <email>robbat2@gentoo.org</email>
+</maintainer>
+</pkgmetadata>
diff --git a/dev-util/pscan/pscan-20000721.ebuild b/dev-util/pscan/pscan-20000721.ebuild
new file mode 100644
index 000000000000..b2122295d333
--- /dev/null
+++ b/dev-util/pscan/pscan-20000721.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/pscan/pscan-20000721.ebuild,v 1.1 2004/09/19 01:18:30 robbat2 Exp $
+
+DESCRIPTION="PScan: A limited problem scanner for C source files"
+HOMEPAGE="http://www.striker.ottawa.on.ca/~aland/pscan/"
+# I wish upstream would version their files, even if it's only with a date
+SRC_URI="http://www.striker.ottawa.on.ca/~aland/pscan/pscan.tar.gz"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE=""
+RDEPEND="virtual/libc"
+DEPEND="${RDEPEND} sys-devel/gcc sys-devel/flex"
+S="${WORKDIR}/${PN}"
+
+src_compile() {
+ emake CC="gcc ${CFLAGS}"
+}
+
+src_install() {
+ into /usr
+ dobin pscan
+ dodoc COPYING README find_formats.sh test.c wu-ftpd.pscan
+}