a5cdf07c97
Partly from Cyrille Lefevre <clefevre@citeweb.net> via FreeBSD.
35 lines
827 B
Makefile
35 lines
827 B
Makefile
# $OpenBSD: Makefile,v 1.19 2001/01/22 00:13:32 naddy Exp $
|
|
|
|
DISTNAME= tar-1.13.19
|
|
PKGNAME= g${DISTNAME}
|
|
CATEGORIES= archivers
|
|
NEED_VERSION= 1.330
|
|
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/
|
|
|
|
LIB_DEPENDS= intl.1::devel/gettext
|
|
|
|
MAINTAINER= Christian Weisgerber <naddy@openbsd.org>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS= --program-prefix=g
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
DEFAULT_ARCHIVE="/dev/rst0"
|
|
|
|
FLAVORS= static
|
|
FLAVOR?=
|
|
|
|
.if ${FLAVOR:L:Mstatic}
|
|
CONFIGURE_ENV+= LDFLAGS="-L${LOCALBASE}/lib -static"
|
|
.else
|
|
CONFIGURE_ENV+= LDFLAGS="-L${LOCALBASE}/lib"
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|