66 lines
1.5 KiB
Makefile
66 lines
1.5 KiB
Makefile
# Created by: Andreas Klemm <andreas@klemm.gtn.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tar
|
|
PORTVERSION= 1.26
|
|
CATEGORIES= archivers sysutils
|
|
MASTER_SITES= ${MASTER_SITE_GNU}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
PKGNAMEPREFIX= g
|
|
|
|
MAINTAINER= naddy@FreeBSD.org
|
|
COMMENT= GNU version of the traditional tape archiver
|
|
|
|
# only force dependencies for compressors that have a single-letter option
|
|
#RUN_DEPENDS= # see below
|
|
|
|
INFO= tar
|
|
|
|
USE_AUTOTOOLS= autoconf:env # autom4te
|
|
USE_XZ= yes
|
|
USE_ICONV= yes
|
|
GNU_CONFIGURE= yes
|
|
MAKE_JOBS_SAFE= yes
|
|
CONFIGURE_ARGS= --program-prefix=g \
|
|
--disable-silent-rules
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib ${LDSTATIC}
|
|
CONFIGURE_ENV= DEFAULT_ARCHIVE=/dev/sa0 \
|
|
DEFAULT_RMT_COMMAND=/etc/rmt
|
|
|
|
OPTIONS_DEFINE= STATIC
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MSTATIC}
|
|
LDSTATIC= -static
|
|
MAKE_ARGS+= LIBINTL='$$(LTLIBINTL)' LIBICONV='$$(LTLIBICONV)'
|
|
.else
|
|
LDSTATIC=
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MNLS}
|
|
USE_GETTEXT= yes
|
|
PLIST_SUB+= NLS=""
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-nls
|
|
PLIST_SUB+= NLS="@comment "
|
|
.endif
|
|
|
|
regression-test: build
|
|
@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} check
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 800505 || (${OSVERSION} >= 900000 && ${OSVERSION} < 900012)
|
|
RUN_DEPENDS+= xz:${PORTSDIR}/archivers/xz
|
|
.endif
|
|
|
|
# supply result to skip a test that will abort configure if run as root
|
|
.if ${OSVERSION} < 800040
|
|
CONFIGURE_ENV+= gl_cv_func_mknod_works=no
|
|
.else
|
|
CONFIGURE_ENV+= gl_cv_func_mknod_works=yes
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|