2b11f06ef2
Exclude AIX from PLIST.rmt Reviewed by wiz@
71 lines
2 KiB
Makefile
71 lines
2 KiB
Makefile
# $NetBSD: Makefile,v 1.89 2015/04/23 09:15:19 sevan Exp $
|
|
#
|
|
# Please run 'make files/gtar.1' when updating version of this package
|
|
# to regenerate the man page. converters/help2man is needed.
|
|
|
|
.include "../../archivers/gtar/Makefile.common"
|
|
|
|
PKGNAME= ${DISTNAME:S/tar/gtar-base/}
|
|
PKGREVISION= 1
|
|
COMMENT= The GNU tape archiver with remote magnetic tape support
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
CONFLICTS= gcpio-[0-9]*
|
|
|
|
USE_PKGLOCALEDIR= yes
|
|
USE_TOOLS+= msgfmt
|
|
GNU_CONFIGURE= yes
|
|
|
|
INSTALLATION_DIRS= ${PKGMANDIR}/man1
|
|
INSTALLATION_DIRS+= ${PKGGNUDIR}bin ${PKGGNUDIR}libexec
|
|
INSTALLATION_DIRS+= ${PKGGNUDIR}${PKGMANDIR}/man1
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
CONFIGURE_ARGS+= --program-prefix=g
|
|
|
|
# lie to configure about gettext -- it does not need GNU gettext
|
|
CONFIGURE_ENV+= gt_cv_func_gnugettext2_libintl=yes
|
|
# allow configure to run as root
|
|
CONFIGURE_ENV+= FORCE_UNSAFE_CONFIGURE=1
|
|
|
|
.if ${OS_VARIANT} == "SCOOSR5"
|
|
# SCO OpenServer 5.0.7/3.2 has strtoimax in inttypes.h, but not in library.
|
|
CONFIGURE_ENV+= gl_cv_have_raw_decl_strtoimax=no
|
|
CONFIGURE_ENV+= ac_cv_have_decl_strtoimax=no
|
|
LDFLAGS.SCO_SV+= -lsocket
|
|
.endif
|
|
|
|
PLIST_VARS+= gtar rmt
|
|
|
|
TEST_TARGET= check
|
|
|
|
# don't include rmt if gtar won't build it
|
|
.if ${OPSYS} != "Interix" && ${OPSYS} != "Darwin" && ${OS_VARIANT} != "SCOOSR5" && ${OPSYS} != "AIX"
|
|
PLIST.rmt= yes
|
|
.endif
|
|
|
|
# XXX see similar hack in coreutils.
|
|
.if ${OPSYS} != "Linux"
|
|
CONFIGURE_ENV+= gt_cv_func_gnugettext3_libintl=yes
|
|
.endif
|
|
|
|
.if ${OPSYS} == "MirBSD"
|
|
CPPFLAGS+= -Dstrtoimax=strtoll -Dstrtoumax=strtoull
|
|
.endif
|
|
|
|
SYMLINKS= bin/gtar ${PKGGNUDIR}bin/tar \
|
|
${PKGMANDIR}/man1/gtar.1 ${PKGGNUDIR}${PKGMANDIR}/man1/tar.1
|
|
|
|
.if defined(PLIST.rmt) && ${PLIST.rmt} == "yes"
|
|
SYMLINKS+= libexec/grmt ${PKGGNUDIR}libexec/rmt
|
|
.endif
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/doc/tar.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/gtar.1
|
|
.for o n in ${SYMLINKS}
|
|
${LN} -sf ${PREFIX}/${o} ${DESTDIR}${PREFIX}/${n}
|
|
.endfor
|
|
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|