diff options
author | delphij <delphij@FreeBSD.org> | 2013-10-26 04:56:15 +0800 |
---|---|---|
committer | delphij <delphij@FreeBSD.org> | 2013-10-26 04:56:15 +0800 |
commit | 34fbc5da4cd0da72d9c5f0633cac54838418e2e4 (patch) | |
tree | 46cca221d834e21fe7e272c304adcca11d5e4c26 /archivers/arc | |
parent | 9b8a5f5639789c52a43f8898a41ec3e9a0f8fd8a (diff) | |
download | freebsd-ports-gnome-34fbc5da4cd0da72d9c5f0633cac54838418e2e4.tar.gz freebsd-ports-gnome-34fbc5da4cd0da72d9c5f0633cac54838418e2e4.tar.zst freebsd-ports-gnome-34fbc5da4cd0da72d9c5f0633cac54838418e2e4.zip |
Fix stagedir.
PR: ports/183289
Submitted by: Takefu <takefu airport fm>
Diffstat (limited to 'archivers/arc')
-rw-r--r-- | archivers/arc/Makefile | 19 | ||||
-rw-r--r-- | archivers/arc/pkg-descr | 2 |
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/ |