91f98f0e4f
* New option --overwrite-dir. * Fixes for buffer overrun, porting, and copyright notice problems. * Add Korean message catalog. Fixes: * Don't pick up spurious iconv dependency. * Remove home page from pkg-descr. It provides little but historical information, and links to an outdated version of the GNU tar manuals, a current version of which ships with the port. Approved by: trevor
34 lines
806 B
Makefile
34 lines
806 B
Makefile
# New ports collection makefile for: gtar
|
|
# Date created: Sa 6 Jun 1998 10:24:51 CEST
|
|
# Whom: Andreas Klemm <andreas@klemm.gtn.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tar
|
|
PORTVERSION= 1.13.25
|
|
CATEGORIES= archivers sysutils
|
|
MASTER_SITES= ftp://alpha.gnu.org/gnu/tar/ \
|
|
ftp://ftp.sunsite.org.uk/Mirrors/alpha.gnu.org/gnu/tar/ \
|
|
ftp://ftp.funet.fi/pub/mirrors/alpha.gnu.org/gnu/tar/
|
|
PKGNAMEPREFIX= g
|
|
|
|
MAINTAINER= naddy@FreeBSD.org
|
|
|
|
LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --program-prefix=g
|
|
CONFIGURE_ENV= CPPFLAGS='-I${LOCALBASE}/include' \
|
|
LDFLAGS='-L${LOCALBASE}/lib ${LDSTATIC}' \
|
|
DEFAULT_ARCHIVE='/dev/sa0' \
|
|
MAKEINFO='makeinfo --no-split' \
|
|
am_cv_func_iconv=no
|
|
|
|
.if defined(WANT_STATIC)
|
|
LDSTATIC= -static
|
|
.else
|
|
LDSTATIC=
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|