mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
0e9052fb92
LICENSE_FILE for GPLv2 - Modernize LIB_DEPENDS syntax, convert USE_GMAKE, clean up Makefile and port description text while here
38 lines
880 B
Makefile
38 lines
880 B
Makefile
# Created by: Joerg Pulz <Joerg.Pulz@frm2.tum.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ldapvi
|
|
PORTVERSION= 1.7
|
|
PORTREVISION= 3
|
|
CATEGORIES= sysutils net
|
|
MASTER_SITES= http://www.lichteblau.com/download/ \
|
|
LOCAL/sbz
|
|
|
|
MAINTAINER= sbz@FreeBSD.org
|
|
COMMENT= Tool to update LDAP entries with a text editor
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libpopt.so:${PORTSDIR}/devel/popt
|
|
|
|
USES= gmake iconv pkgconfig
|
|
USE_OPENLDAP= yes
|
|
USE_GNOME= glib20
|
|
GNU_CONFIGURE= yes
|
|
MAKEFILE= GNUmakefile
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz \
|
|
${DOCSDIR_REL}/manual.css ${DOCSDIR_REL}/manual.xml \
|
|
${DOCSDIR_REL}/bg.png ${DOCSDIR_REL}/html.xsl
|
|
PLIST_DIRS= ${DOCSDIR_REL}
|
|
|
|
# XXX should probably be converted to OptionsNG
|
|
.if !defined(WANT_OPENLDAP_SASL) || defined(WITHOUT_SASL)
|
|
CONFIGURE_ARGS= --without-sasl
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|