1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00

new port: misc/susv2 (Single UNIX Specification Version 2)

PR:		ports/37003
Submitted by:	Simon 'corecode' Schubert <corecode@corecode.ath.cx>
This commit is contained in:
Edwin Groothuis 2003-01-16 15:07:14 +00:00
parent 64060e1922
commit e4fe032f49
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=73265
5 changed files with 52 additions and 0 deletions

View File

@ -294,6 +294,7 @@
SUBDIR += splitvt
SUBDIR += sshbuddy
SUBDIR += stan
SUBDIR += susv2
SUBDIR += sword
SUBDIR += sword-modules
SUBDIR += tcb

43
misc/susv2/Makefile Normal file
View File

@ -0,0 +1,43 @@
# New ports collection makefile for: susv2
# Date created: 11 April 2002
# Whom: Simon 'corecode' Schubert <corecode@corecode.ath.cx>
#
# $FreeBSD$
#
PORTNAME= susv2
PORTVERSION= 1.0
CATEGORIES= misc
MASTER_SITES= #
DISTNAME= susv2
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/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 \
${INSTALL_DATA} "${WRKSRC}$$file" "${DOCSDIR}$$file"; \
${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/susv2/distinfo Normal file
View File

@ -0,0 +1 @@
MD5 (susv2.tar.bz2) = 549a54f3f24c6f7660bd36f63a1a109b

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

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

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

@ -0,0 +1,6 @@
The Singe UNIX Specification Version 2 is a set of
numerous HTML pages describing this standard.
WWW: http://www.unix-systems.org/online.html
- Simon 'corecode' Schubert