mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
6782202db5
* Member names containing '..' components are now skipped when extracting. * Report erroneous use of position-sensitive options. * --numeric-owner now affects private headers too. * Fixed the --delay-directory-restore option * The --warnings=failed-read option * The --warnings=none option now suppresses all warnings * Fix reporting of hardlink mismatches during compare
43 lines
956 B
Makefile
43 lines
956 B
Makefile
# Created by: Andreas Klemm <andreas@klemm.gtn.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tar
|
|
PORTVERSION= 1.30
|
|
CATEGORIES= archivers sysutils
|
|
MASTER_SITES= GNU
|
|
PKGNAMEPREFIX= g
|
|
|
|
MAINTAINER= naddy@FreeBSD.org
|
|
COMMENT= GNU version of the traditional tape archiver
|
|
|
|
LICENSE= GPLv3+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
INFO= tar
|
|
|
|
USES= charsetfix cpe iconv:${STATIC_ARGS} localbase makeinfo tar:xz
|
|
CPE_VENDOR= gnu
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --program-prefix=g
|
|
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
|
|
|
|
TEST_DEPENDS= autom4te:devel/autoconf
|
|
TEST_TARGET= check
|
|
|
|
OPTIONS_DEFINE= NLS STATIC
|
|
OPTIONS_SUB= yes
|
|
|
|
NLS_USES= gettext-runtime:${STATIC_ARGS}
|
|
NLS_CONFIGURE_ENABLE= nls
|
|
|
|
STATIC_LDFLAGS= -static
|
|
STATIC_CONFIGURE_ENV= SHLIBEXT=""
|
|
|
|
STATIC_VARS= STATIC_ARGS=build
|
|
STATIC_VARS_OFF= STATIC_ARGS=lib
|
|
|
|
.include <bsd.port.mk>
|