85b9e25367
bin/dir is just a shorthand for a subcommand of zpaqfranz. Installing it would conflict with misc/gnuls, so make it optional and disabled by default. PR: 265651 Reported by: diizzy (on IRC) Approved by: Franco Corbelli <franco@francocorbelli.com> (maintainer) Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D36292
32 lines
667 B
Makefile
32 lines
667 B
Makefile
PORTNAME= zpaqfranz
|
|
DISTVERSION= 55.12
|
|
PORTREVISION= 1
|
|
CATEGORIES= archivers
|
|
MASTER_SITES= http://www.francocorbelli.it/zpaqfranz/freebsd/
|
|
|
|
MAINTAINER= franco@francocorbelli.com
|
|
COMMENT= Swiss army knife for the serious backup manager
|
|
|
|
LICENSE= BSD2CLAUSE MIT
|
|
LICENSE_COMB= dual
|
|
|
|
NO_WRKSUBDIR= yes
|
|
|
|
OPTIONS_DEFINE= DIRCOMMAND
|
|
DIRCOMMAND_DESC= Add a symlink to call the dir subcommand directly
|
|
|
|
PLIST_FILES= bin/zpaqfranz
|
|
|
|
DIRCOMMAND_PLIST_FILES= bin/dir
|
|
DIRCOMMAND_CONFLICTS_INSTALL= gnuls
|
|
|
|
post-install-DIRCOMMAND-off:
|
|
${RM} ${STAGEDIR}${LOCALBASE}/bin/dir
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} != "amd64"
|
|
CFLAGS+= -DNOJIT
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|