svn commit: r305730 - in head/devel: . checkbashisms
Bryan Drewery
bdrewery at FreeBSD.org
Thu Oct 11 15:49:49 UTC 2012
Author: bdrewery
Date: Thu Oct 11 15:49:48 2012
New Revision: 305730
URL: http://svn.freebsd.org/changeset/ports/305730
Log:
checkbashisms is a perl script that checks for commonly used
bash features that are not supported by POSIX shells.
WWW: http://sourceforge.net/projects/checkbaskisms
Feature safe: yes
Added:
head/devel/checkbashisms/
head/devel/checkbashisms/Makefile (contents, props changed)
head/devel/checkbashisms/distinfo (contents, props changed)
head/devel/checkbashisms/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Thu Oct 11 14:58:20 2012 (r305729)
+++ head/devel/Makefile Thu Oct 11 15:49:48 2012 (r305730)
@@ -189,6 +189,7 @@
SUBDIR += cgit
SUBDIR += cgprof
SUBDIR += charva
+ SUBDIR += checkbashisms
SUBDIR += checkheaders
SUBDIR += chrpath
SUBDIR += cil
Added: head/devel/checkbashisms/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/checkbashisms/Makefile Thu Oct 11 15:49:48 2012 (r305730)
@@ -0,0 +1,34 @@
+# $FreeBSD$
+
+PORTNAME= checkbashisms
+PORTVERSION= 2.0.0.2
+CATEGORIES= devel perl5
+MASTER_SITES= SF/${SF_PROJECT}/${DISTVERSION}
+DISTNAME= ${PORTNAME}
+EXTRACT_SUFX=
+
+MAINTAINER= bdrewery at FreeBSD.org
+COMMENT= Script to check for Bash features not defined by POSIX
+
+LICENSE= GPLv2
+
+SF_PROJECT= checkbaskisms
+
+USE_PERL5_RUN= yes
+NO_BUILD= yes
+NO_WRKSUBDIR= yes
+
+PLIST_FILES= bin/${DISTNAME}
+
+do-extract:
+ @${MKDIR} ${WRKSRC}
+ @${CP} ${DISTDIR}/${DISTNAME} ${WRKSRC}
+
+do-patch:
+ @${REINPLACE_CMD} -e "s| /usr/bin/perl|${PERL}|" \
+ ${WRKSRC}/${DISTNAME}
+
+do-install:
+ ${INSTALL_SCRIPT} ${WRKSRC}/${DISTNAME} ${PREFIX}/bin/${DISTNAME}
+
+.include <bsd.port.mk>
Added: head/devel/checkbashisms/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/checkbashisms/distinfo Thu Oct 11 15:49:48 2012 (r305730)
@@ -0,0 +1,2 @@
+SHA256 (checkbashisms) = 4da61b7f08b55609e80c648d215f0201aa9b5f1df53aab6252129537a7f7a0ee
+SIZE (checkbashisms) = 21258
Added: head/devel/checkbashisms/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/checkbashisms/pkg-descr Thu Oct 11 15:49:48 2012 (r305730)
@@ -0,0 +1,4 @@
+checkbashisms is a perl script that checks for commonly used
+bash features that are not supported by POSIX shells.
+
+WWW: http://sourceforge.net/projects/checkbaskisms
More information about the svn-ports-head
mailing list