mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
37f54e0f66
- Convert to USES=libtool and bump dependent ports - Avoid USE_AUTOTOOLS - Don't use PTHREAD_LIBS - Use MAKE_CMD databases/glom: - Drop :keepla - Add INSTALL_TARGET=install-strip databases/libgda4* databases/libgda5*: - Convert to USES=libtool and bump dependent ports - USES=tar:xz - Use INSTALL_TARGET=install-strip - Use @sample databases/libgdamm: - Drop :keepla - USES=tar:bzip2 - Use INSTALL_TARGET=install-strip databases/libgdamm5: - Add INSTALL_TARGET=install-strip - Drop --enable-static (inherited from old repocopy) devel/anjuta x11-toolkits/py-gnome-extras: - Drop :keepla dns/powerdns dns/powerdns-devel: - Convert to USES=libtool - Add INSTALL_TARGET=install-strip - Disable static modules - Stop creating library symlinks with .0 suffix, not needed for dynamically opened modules mail/dovecot2: - Add USES=libtool mail/dovecot2-pigeonhole: - Drop CONFIGURE_TARGET (incorrect for Dragonfly) - Add USES=libtool and INSTALL_TARGET=install-strip math/gnumeric: - USES=libtool tar:xz Approved by: portmgr (implicit, bump unstaged ports)
44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
# Created by: Roman Shterenzon <roman@xpert.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gq
|
|
PORTVERSION= 1.3.4
|
|
PORTREVISION= 10
|
|
PORTEPOCH= 1
|
|
CATEGORIES= net
|
|
MASTER_SITES= SF/${PORTNAME}client/GQ%20Unstable/${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= GTK-based LDAP client
|
|
|
|
LIB_DEPENDS= libgnome-keyring.so:${PORTSDIR}/security/gnome-keyring
|
|
|
|
OPTIONS_DEFINE= DND CACHE
|
|
OPTIONS_DEFAULT= DND CACHE
|
|
DND_DESC= Enable Drag and drop support in browse mode
|
|
CACHE_DESC= Support the OpenLDAP experimental client cache
|
|
|
|
USE_GNOME= libglade2 gnomedocutils
|
|
USE_OPENSSL= yes
|
|
USE_OPENLDAP= yes
|
|
USES= gettext gmake pkgconfig shared-mime-info desktop-file-utils
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-ldap-prefix=${LOCALBASE}
|
|
DND_CONFIGURE_ENABLE= browser-dns
|
|
CACHE_CONFIGURE_ENABLE= cache
|
|
INSTALLS_ICONS= yes
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS} -Wno-return-type
|
|
LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS}
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|glib/.*\.h>|glib.h>|g' \
|
|
${WRKSRC}/src/syntax.h \
|
|
${WRKSRC}/src/glib-helpers.[ch] \
|
|
${WRKSRC}/src/gq-hash.h \
|
|
${WRKSRC}/src/gq-main-loop.h \
|
|
${WRKSRC}/src/gq-stack.[ch] \
|
|
${WRKSRC}/src/gq-tab.h
|
|
|
|
.include <bsd.port.mk>
|