mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
6f6fbe4bdf
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav
41 lines
831 B
Makefile
41 lines
831 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: libggz
|
|
# Date created: Oct 8, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libggz
|
|
PORTVERSION= ${GGZ_VERSION}
|
|
PORTREVISION= 9
|
|
CATEGORIES= games
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= The GGZ Gaming Zone - Base Library
|
|
|
|
LIB_DEPENDS= gcrypt.18:${PORTSDIR}/security/libgcrypt
|
|
|
|
USE_AUTOTOOLS= libtool
|
|
USE_GNOME= gnomehack
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-debug
|
|
USE_LDCONFIG= yes
|
|
|
|
MAN3= ggz.h.3
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS}
|
|
LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS}
|
|
|
|
.if defined(WITH_GNUTLS)
|
|
LIB_DEPENDS+= gnutls.47:${PORTSDIR}/security/gnutls
|
|
CONFIGURE_ARGS+= --with-tls=GnuTLS
|
|
.else
|
|
USE_OPENSSL= yes
|
|
CONFIGURE_ARGS+= --with-tls=OpenSSL
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
.include "${PORTSDIR}/games/libggz/bsd.ggz.mk"
|
|
.include <bsd.port.post.mk>
|