1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-29 01:13:08 +00:00
freebsd-ports/misc/susv2/Makefile

37 lines
921 B
Makefile

# Created by: Simon 'corecode' Schubert <corecode@corecode.ath.cx>
# $FreeBSD$
PORTNAME= susv2
PORTVERSION= 1.0
CATEGORIES= misc
MASTER_SITES= #
DISTNAME= susv2
MAINTAINER= ports@FreeBSD.org
COMMENT= Single UNIX Specification Version 2
RESTRICTED= Redistribution of the documents is not permitted
USE_BZIP2= yes
NO_BUILD= yes
PORTDOCS= *
NO_STAGE= yes
.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}
@${FIND} ${WRKSRC} | ${SED} -e 's#^${WRKSRC}##' | while read file; do \
if ${TEST} -d "${WRKSRC}$$file"; then \
${MKDIR} "${DOCSDIR}$$file"; \
else \
${INSTALL_DATA} "${WRKSRC}$$file" "${DOCSDIR}$$file"; \
fi; \
done
.include <bsd.port.post.mk>