mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
8155707f26
o deinstall info properly. o add WANT_STATIC flavor. PR: 24502 Submitted by: Cyrille Lefevre <clefevre@citeweb.net>, maintainer
32 lines
773 B
Makefile
32 lines
773 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.19
|
|
PKGNAMEPREFIX= g
|
|
CATEGORIES= sysutils archivers
|
|
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/
|
|
|
|
MAINTAINER= naddy@mips.inka.de
|
|
|
|
LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --program-prefix=g
|
|
CONFIGURE_ENV= CPPFLAGS='-I${LOCALBASE}/include' \
|
|
DEFAULT_ARCHIVE='/dev/sa0'
|
|
|
|
.if defined(WANT_STATIC)
|
|
CONFIGURE_ENV+= LDFLAGS='-L${LOCALBASE}/lib -static'
|
|
.else
|
|
CONFIGURE_ENV+= LDFLAGS='-L${LOCALBASE}/lib'
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|