mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
51 lines
1.1 KiB
Makefile
51 lines
1.1 KiB
Makefile
# Created by: Andreas Klemm <andreas@klemm.gtn.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tar
|
|
PORTVERSION= 1.27
|
|
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
|
|
|
|
LICENSE= GPLv3
|
|
|
|
INFO= tar
|
|
|
|
USES= iconv:${STATIC_ARGS}
|
|
USE_XZ= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --program-prefix=g \
|
|
--disable-silent-rules
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
CONFIGURE_ENV= DEFAULT_ARCHIVE=/dev/sa0 \
|
|
DEFAULT_RMT_COMMAND=/etc/rmt
|
|
# supply result to skip a test that will abort configure if run as root
|
|
CONFIGURE_ENV+= gl_cv_func_mknod_works=yes
|
|
|
|
OPTIONS_DEFINE= NLS STATIC
|
|
OPTIONS_SUB= yes
|
|
|
|
NLS_USES= gettext:${STATIC_ARGS}
|
|
NLS_CONFIGURE_ENABLE= nls
|
|
|
|
STATIC_LDFLAGS= -static
|
|
STATIC_CONFIGURE_ENV= SHLIBEXT=""
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MSTATIC}
|
|
STATIC_ARGS= build
|
|
.else
|
|
STATIC_ARGS= lib
|
|
.endif
|
|
|
|
regression-test: build
|
|
@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} check
|
|
|
|
.include <bsd.port.mk>
|