diff options
author | edwin <edwin@FreeBSD.org> | 2003-01-19 12:01:37 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-01-19 12:01:37 +0000 |
commit | ffda2c2ec0b5dd49928301501619a877c7eaec47 (patch) | |
tree | b6346ce677011ffacc5e74c811b4c825f4d78a0b /misc | |
parent | 39aa51c84d51cdca706dc20a2b31859f3f4a022e (diff) | |
download | FreeBSD-ports-ffda2c2ec0b5dd49928301501619a877c7eaec47.zip FreeBSD-ports-ffda2c2ec0b5dd49928301501619a877c7eaec47.tar.gz |
new port: misc/susv3 (Single UNIX Specification Version 3)
The Singe UNIX Specification Version 3 is a set of numerous
HTML pages describing this standard.
PR: ports/37004
Submitted by: Simon 'corecode' Schubert <corecode@corecode.ath.cx>
Diffstat (limited to 'misc')
-rw-r--r-- | misc/Makefile | 1 | ||||
-rw-r--r-- | misc/susv3/Makefile | 48 | ||||
-rw-r--r-- | misc/susv3/distinfo | 1 | ||||
-rw-r--r-- | misc/susv3/pkg-comment | 1 | ||||
-rw-r--r-- | misc/susv3/pkg-descr | 6 |
5 files changed, 57 insertions, 0 deletions
diff --git a/misc/Makefile b/misc/Makefile index 8fa4a17..6a4485e 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -295,6 +295,7 @@ SUBDIR += sshbuddy SUBDIR += stan SUBDIR += susv2 + SUBDIR += susv3 SUBDIR += sword SUBDIR += sword-modules SUBDIR += tcb diff --git a/misc/susv3/Makefile b/misc/susv3/Makefile new file mode 100644 index 0000000..962150f --- /dev/null +++ b/misc/susv3/Makefile @@ -0,0 +1,48 @@ +# New ports collection makefile for: susv3 +# Date created: 11 April 2002 +# Whom: Simon 'corecode' Schubert <corecode@corecode.ath.cx> +# +# $FreeBSD$ +# + +PORTNAME= susv3 +PORTVERSION= 1.1 +CATEGORIES= misc +MASTER_SITES= # +DISTNAME= susv3 + +MAINTAINER= corecode@corecode.ath.cx + +RESTRICTED= "Redistribution of the documents is not permitted" + +USE_BZIP2= yes +NO_BUILD= yes + +PLIST= ${WRKDIR}/pkg-plist + +.include <bsd.port.pre.mk> + +.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) +IGNORE= "may not be redistributed because of licensing reasons. Please visit http://www.unix-systems.org/version3/online.html to accept their license and download ${DISTFILES} into ${DISTDIR}" +.endif + +do-install: + @${MKDIR} ${DOCSDIR} + @> ${PLIST} + @${FIND} ${WRKSRC} | ${SED} -e 's#^${WRKSRC}##' | while read file; do \ + if ${TEST} -d "${WRKSRC}$$file"; then \ + ${MKDIR} "${DOCSDIR}$$file"; \ + ${ECHO} "@dirrm ${DOCSDIR:S#^${PREFIX}/##}$$file" >> ${PLIST}; \ + else \ + if ${TEST} -L "${WRKSRC}$$file"; then \ + ${LN} -s "`${LS} -l \"${WRKSRC}$$file\" | ${SED} -e 's/^.*> //'`" \ + "${DOCSDIR}$$file"; \ + else \ + ${INSTALL_DATA} "${WRKSRC}$$file" "${DOCSDIR}$$file"; \ + fi; \ + ${ECHO} "${DOCSDIR:S#^${PREFIX}/##}$$file" >> ${PLIST}; \ + fi; \ + done + @(${RM} -f ${PLIST}; ${SED} -ne '/^@/{G;h;};/^@/!p;$${g;p;}' > ${PLIST}) < ${PLIST} + +.include <bsd.port.post.mk> diff --git a/misc/susv3/distinfo b/misc/susv3/distinfo new file mode 100644 index 0000000..b238719 --- /dev/null +++ b/misc/susv3/distinfo @@ -0,0 +1 @@ +MD5 (susv3.tar.bz2) = 1dd3a50022c8eb683e720962d56e30db diff --git a/misc/susv3/pkg-comment b/misc/susv3/pkg-comment new file mode 100644 index 0000000..01660c9 --- /dev/null +++ b/misc/susv3/pkg-comment @@ -0,0 +1 @@ +Single UNIX Specification Version 3 diff --git a/misc/susv3/pkg-descr b/misc/susv3/pkg-descr new file mode 100644 index 0000000..9c3ba60 --- /dev/null +++ b/misc/susv3/pkg-descr @@ -0,0 +1,6 @@ +The Singe UNIX Specification Version 3 is a set of +numerous HTML pages describing this standard. + +WWW: http://www.unix-systems.org/version3/online.html + +- Simon 'corecode' Schubert |