1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-12 07:27:57 +00:00

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>
This commit is contained in:
Edwin Groothuis 2003-01-19 12:01:37 +00:00
parent 2f341d2e47
commit e237745925
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=73475
5 changed files with 57 additions and 0 deletions

View File

@ -295,6 +295,7 @@
SUBDIR += sshbuddy
SUBDIR += stan
SUBDIR += susv2
SUBDIR += susv3
SUBDIR += sword
SUBDIR += sword-modules
SUBDIR += tcb

48
misc/susv3/Makefile Normal file
View File

@ -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>

1
misc/susv3/distinfo Normal file
View File

@ -0,0 +1 @@
MD5 (susv3.tar.bz2) = 1dd3a50022c8eb683e720962d56e30db

1
misc/susv3/pkg-comment Normal file
View File

@ -0,0 +1 @@
Single UNIX Specification Version 3

6
misc/susv3/pkg-descr Normal file
View File

@ -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