diff options
author | kris <kris@FreeBSD.org> | 2001-08-23 17:03:03 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2001-08-23 17:03:03 +0800 |
commit | babdbc6e21b1bce38a83a94d9095685732d090d8 (patch) | |
tree | 0a5e1dd36444c161936d66437292ec76163818bf | |
parent | c639c24f5c8af21e57e5d4e1c9c6fb76bf992abb (diff) | |
download | freebsd-ports-gnome-babdbc6e21b1bce38a83a94d9095685732d090d8.tar.gz freebsd-ports-gnome-babdbc6e21b1bce38a83a94d9095685732d090d8.tar.zst freebsd-ports-gnome-babdbc6e21b1bce38a83a94d9095685732d090d8.zip |
Add rats-1.1
This is RATS, a rough auditing tool for security, developed by
Secure Software Solutions. It is a tool for scanning source code
(C, C++, Perl, and Python) and flagging common security related
programming errors such as buffer overflows and TOCTOU (Time Of
Check, Time Of Use) race conditions. As its name implies, the tool
performs only a rough analysis of source code. It will not find
every error and will also find things that are not errors. Manual
inspection of your code is still necessary, but greatly aided with
this tool.
Obtained from: OpenBSD
-rw-r--r-- | security/Makefile | 1 | ||||
-rw-r--r-- | security/rats/Makefile | 29 | ||||
-rw-r--r-- | security/rats/distinfo | 3 | ||||
-rw-r--r-- | security/rats/pkg-comment | 1 | ||||
-rw-r--r-- | security/rats/pkg-descr | 11 | ||||
-rw-r--r-- | security/rats/pkg-plist | 6 |
6 files changed, 51 insertions, 0 deletions
diff --git a/security/Makefile b/security/Makefile index 7ac219faec3b..26b140815ccc 100644 --- a/security/Makefile +++ b/security/Makefile @@ -151,6 +151,7 @@ SUBDIR += racoon SUBDIR += radiusniff SUBDIR += rain + SUBDIR += rats SUBDIR += rid SUBDIR += rsaref SUBDIR += ruby-acl diff --git a/security/rats/Makefile b/security/rats/Makefile new file mode 100644 index 000000000000..53c127959327 --- /dev/null +++ b/security/rats/Makefile @@ -0,0 +1,29 @@ +# Ports collection makefile for: rats +# Date created: 22 August 2001 +# Whom: Kris Kennaway <kris@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= rats +PORTVERSION= 1.1 +CATEGORIES= devel security +MASTER_SITES= http://www.securesw.com/rats/ + +MAINTAINER= kris@FreeBSD.org + +LIB_DEPENDS= expat.1:${PORTSDIR}/textproc/expat + +GNU_CONFIGURE= yes +CONFIGURE_ARGS+=--with-expat-lib=${LOCALBASE}/lib \ + --with-expat-include=${LOCALBASE}/include/xml + +ALL_TARGET= rats + +post-install: +.if !defined(NOPORTDOCS) + ${MKDIR} ${PREFIX}/share/doc/rats + ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/rats +.endif + +.include <bsd.port.mk> diff --git a/security/rats/distinfo b/security/rats/distinfo new file mode 100644 index 000000000000..66fcc2710bff --- /dev/null +++ b/security/rats/distinfo @@ -0,0 +1,3 @@ +MD5 (rats-1.1.tar.gz) = 39bd3a5f9bdecff15b0fec0c1bb5203a +RMD160 (rats-1.1.tar.gz) = c944b3a74ed4e73e423c0e477ce2babe9f6efffa +SHA1 (rats-1.1.tar.gz) = 80d7585299c370986b5caa4bff69b29545a668b8 diff --git a/security/rats/pkg-comment b/security/rats/pkg-comment new file mode 100644 index 000000000000..c01d93cfaf98 --- /dev/null +++ b/security/rats/pkg-comment @@ -0,0 +1 @@ +Source code auditing tool diff --git a/security/rats/pkg-descr b/security/rats/pkg-descr new file mode 100644 index 000000000000..85fcef1337b2 --- /dev/null +++ b/security/rats/pkg-descr @@ -0,0 +1,11 @@ +This is RATS, a rough auditing tool for security, developed by +Secure Software Solutions. It is a tool for scanning source code +(C, C++, Perl, and Python) and flagging common security related +programming errors such as buffer overflows and TOCTOU (Time Of +Check, Time Of Use) race conditions. As its name implies, the tool +performs only a rough analysis of source code. It will not find +every error and will also find things that are not errors. Manual +inspection of your code is still necessary, but greatly aided with +this tool. + +WWW: http://www.securesw.com/rats/ diff --git a/security/rats/pkg-plist b/security/rats/pkg-plist new file mode 100644 index 000000000000..0b9058d30a04 --- /dev/null +++ b/security/rats/pkg-plist @@ -0,0 +1,6 @@ +bin/rats +lib/rats-c.xml +lib/rats-perl.xml +lib/rats-python.xml +%%PORTDOCS%%share/doc/rats/README +%%PORTDOCS%%@dirrm share/doc/rats |