5615100fa3
* New option --exclude-tag allows to specify "exclusion tag files". * The --exclude-cache option now excludes the directories themselves, too. * Support for reading ustar type 'N' logical records has been removed. * Race conditions around 'tar -x --same-owner' have been fixed.
45 lines
916 B
Makefile
45 lines
916 B
Makefile
# $OpenBSD: Makefile,v 1.41 2006/12/14 20:29:00 naddy Exp $
|
|
|
|
COMMENT= "GNU version of the traditional tar archiver"
|
|
|
|
DISTNAME= tar-1.16.1
|
|
PKGNAME= g${DISTNAME}
|
|
CATEGORIES= archivers
|
|
HOMEPAGE= http://www.gnu.org/software/tar/
|
|
|
|
MAINTAINER= Christian Weisgerber <naddy@openbsd.org>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
FAKE= all
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=tar/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MODULES= devel/gettext
|
|
RUN_DEPENDS= :bzip2-*:archivers/bzip2
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ARGS= --program-prefix=g
|
|
CONFIGURE_ENV= CPPFLAGS="-I${DEPBASE}/include" \
|
|
LDFLAGS="-L${DEPBASE}/lib ${LDSTATIC}" \
|
|
DEFAULT_ARCHIVE=/dev/rst0 \
|
|
DEFAULT_RMT_COMMAND=/etc/rmt
|
|
MODGNU_CONFIG_GUESS_DIRS=${WRKSRC}/build-aux
|
|
|
|
FLAVORS= static
|
|
FLAVOR?=
|
|
|
|
.if ${FLAVOR:L:Mstatic}
|
|
LDSTATIC= -static
|
|
MODULES=
|
|
.else
|
|
LDSTATIC=
|
|
WANTLIB= c
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|