diff options
author | max <max@FreeBSD.org> | 1997-09-05 17:40:54 +0000 |
---|---|---|
committer | max <max@FreeBSD.org> | 1997-09-05 17:40:54 +0000 |
commit | 7babc957e61f876569548cecfdc8820e72eaa086 (patch) | |
tree | a077002a6ab1a35dae82b077a1213e9dde7b3dc9 /audio/mikmod | |
parent | 191d4e9779ac546345cfd8bd16983f749ce8a871 (diff) | |
download | FreeBSD-ports-7babc957e61f876569548cecfdc8820e72eaa086.zip FreeBSD-ports-7babc957e61f876569548cecfdc8820e72eaa086.tar.gz |
Define RESTRICTED as this is shareware and registration is required
to redistribute the source and commercial use of binaries.
Also, install some doc files that have copyright info.
Diffstat (limited to 'audio/mikmod')
-rw-r--r-- | audio/mikmod/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/audio/mikmod/Makefile b/audio/mikmod/Makefile index 3e35696..9400d2e 100644 --- a/audio/mikmod/Makefile +++ b/audio/mikmod/Makefile @@ -13,11 +13,19 @@ MASTER_SITES= http://www.chiark.greenend.org.uk/~stevem/mikmod/ MAINTAINER= doconnor@ist.flinders.edu.au +RESTRICTED= "Registration required for redistribution and commercial use." + WRKSRC= ${WRKDIR}/${DISTNAME}/source MAN1= mikmod.1 do-install: ( cd ${WRKSRC} ; ${INSTALL_PROGRAM} mikmod mikcvt ${PREFIX}/bin ) ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/docs/mikmod.1 ${PREFIX}/man/man1 +.if !defined(NOPORTDOCS) + ${MKDIR} ${PREFIX}/share/doc/mikmod +.for f in credits.txt mikmod.txt register.frm + ${INSTALL_DATA} ${WRKDIR}/${DISTNAME}/docs/$f ${PREFIX}/share/doc/mikmod +.endfor +.endif .include <bsd.port.mk> |