090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
45 lines
1,021 B
Makefile
45 lines
1,021 B
Makefile
# New ports collection makefile for: gq
|
|
# Date Created: 8 Jun 2000
|
|
# Whom: Roman Shterenzon <roman@xpert.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gq
|
|
PORTVERSION= 1.3.4
|
|
PORTREVISION= 1
|
|
PORTEPOCH= 1
|
|
CATEGORIES= net
|
|
MASTER_SITES= SF/gqclient
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= GTK-based LDAP client
|
|
|
|
LIB_DEPENDS= gnome-keyring:${PORTSDIR}/security/gnome-keyring
|
|
|
|
OPTIONS= DND "Enable Drag and drop support in browse mode" On \
|
|
CACHE "Support the OpenLDAP experimental client cache" On
|
|
|
|
USE_GNOME= gnometarget libglade2 gnomedocutils
|
|
USE_OPENSSL= yes
|
|
USE_OPENLDAP= yes
|
|
USE_GETTEXT= yes
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
|
|
CONFIGURE_ARGS= --with-ldap-prefix=${LOCALBASE}
|
|
|
|
CPPFLAGS= -I${LOCALBASE}/include ${PTHREAD_CFLAGS}
|
|
LDFLAGS= -L${LOCALBASE}/lib ${PTHREAD_LIBS}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !defined(WITHOUT_DND)
|
|
CONFIGURE_ARGS+= --enable-browser-dnd
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_CACHE)
|
|
CONFIGURE_ARGS+= --enable-cache
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|