aboutsummaryrefslogtreecommitdiff
path: root/archivers
diff options
context:
space:
mode:
authorXin LI <delphij@FreeBSD.org>2013-10-25 20:56:15 +0000
committerXin LI <delphij@FreeBSD.org>2013-10-25 20:56:15 +0000
commit8e8194fa3822f4d7b6fad86efe6911b65afba6d6 (patch)
tree46cca221d834e21fe7e272c304adcca11d5e4c26 /archivers
parentc154bb5fb8e455945d692d154db845df650b4f46 (diff)
downloadports-8e8194fa3822f4d7b6fad86efe6911b65afba6d6.tar.gz
ports-8e8194fa3822f4d7b6fad86efe6911b65afba6d6.zip
Fix stagedir.
PR: ports/183289 Submitted by: Takefu <takefu airport fm>
Notes
Notes: svn path=/head/; revision=331636
Diffstat (limited to 'archivers')
-rw-r--r--archivers/arc/Makefile19
-rw-r--r--archivers/arc/pkg-descr2
2 files changed, 12 insertions, 9 deletions
diff --git a/archivers/arc/Makefile b/archivers/arc/Makefile
index 466a489d8456..b021d9fcf894 100644
--- a/archivers/arc/Makefile
+++ b/archivers/arc/Makefile
@@ -9,17 +9,20 @@ MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
MAINTAINER= delphij@FreeBSD.org
COMMENT= Create & extract files from DOS .ARC files
-NO_STAGE= yes
-PLIST_FILES= bin/arc bin/marc
+LICENSE= GPLv2
+
+PLIST_FILES= bin/arc bin/marc man/man1/arc.1.gz
PORTDOCS= Arc521.doc
-MAN1= arc.1
+
+.include <bsd.port.pre.mk>
do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/arc ${WRKSRC}/marc ${PREFIX}/bin
- ${INSTALL_MAN} ${WRKSRC}/arc.1 ${MANPREFIX}/man/man1
-.if !defined(NOPORTDOCS)
- @${MKDIR} ${DOCSDIR}
- ${INSTALL_DATA} ${WRKSRC}/Arc521.doc ${DOCSDIR}
+ ${INSTALL_PROGRAM} ${WRKSRC}/arc ${WRKSRC}/marc\
+ ${STAGEDIR}/${PREFIX}/bin
+ ${INSTALL_MAN} ${WRKSRC}/arc.1 ${STAGEDIR}/${PREFIX}/man/man1
+.if ${PORT_OPTIONS:MDOCS}
+ @${MKDIR} ${STAGEDIR}/${DOCSDIR}
+ ${INSTALL_DATA} ${WRKSRC}/Arc521.doc ${STAGEDIR}/${DOCSDIR}
.endif
.include <bsd.port.mk>
diff --git a/archivers/arc/pkg-descr b/archivers/arc/pkg-descr
index 140fc373e03f..72b9abe41e23 100644
--- a/archivers/arc/pkg-descr
+++ b/archivers/arc/pkg-descr
@@ -3,4 +3,4 @@ contains files which are compressed according to the most efficient
of three algorithms. ARC archives are usually only used for compatibility
with MS-DOS.
-WWW: http://arc.sourceforge.net/
+WWW: http://arc.sourceforge.net/