mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
badd7a1eba
Alias is a new USES tool that allows DragonFly to masquerade as FreeBSD by setting CFLAGS+= -D__FreeBSD__. For some ports, this fixes the build without the need for additional patches. Approved by: portmgr (bapt, blanket)
30 lines
662 B
Makefile
30 lines
662 B
Makefile
# Created by: ache
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= arc
|
|
PORTVERSION= 5.21p
|
|
CATEGORIES= archivers
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= delphij@FreeBSD.org
|
|
COMMENT= Create & extract files from DOS .ARC files
|
|
|
|
LICENSE= GPLv2
|
|
|
|
CONFLICTS= php5-arcanist-*
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
USES= alias
|
|
PLIST_FILES= bin/arc bin/marc man/man1/arc.1.gz
|
|
PORTDOCS= Arc521.doc
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/arc ${WRKSRC}/marc\
|
|
${STAGEDIR}/${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/arc.1 ${STAGEDIR}/${PREFIX}/man/man1
|
|
@${MKDIR} ${STAGEDIR}/${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/Arc521.doc ${STAGEDIR}/${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|