freebsd-ports/ftp/wzdftpd/Makefile
Tijl Coosemans edb7229dd4 Split devel/gettext in devel/gettext-runtime and devel/gettext-tools. The
first contains runtime libraries such as libintl and the latter contains
developer tools such as msgfmt.  Ports that use gettext will usually need
a LIB_DEPENDS on gettext-runtime and a BUILD_DEPENDS on gettext-tools.

USES=gettext-runtime can be used to set a LIB/BUILD/RUN_DEPENDS on
devel/gettext-runtime and USES=gettext-tools can be used to set a
BUILD/RUN_DEPENDS on devel/gettext-tools.  USES=gettext is now the same
as "USES=gettext-runtime gettext-tools" meaning a LIB_DEPENDS on
devel/gettext-runtime and a BUILD_DEPENDS on devel/gettext-tools.

Update gettext to 0.19.3.

Remove :oldver from converters/libiconv and devel/gettext-runtime.  Leave
symlinks with the old library versions to avoid the need to bump
PORTREVISION on a large number of dependent ports.  When most of the
dependent ports have had normal version updates, PORTREVISION can be
bumped on the remaining ones (low number) and the links can be removed.

Fix some ports that installed files in lib/locale instead of share/locale.

PR:		194038
Reviewed by:	bapt
Exp-run:	antoine
Approved by:	portmgr (antoine)
2014-11-29 18:22:32 +00:00

106 lines
2.8 KiB
Makefile

# Created by: Roman Bogorodskiy
# $FreeBSD$
PORTNAME= wzdftpd
PORTVERSION= 0.8.3
PORTREVISION= 3
CATEGORIES= ftp ipv6
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-sources/${PORTNAME}-${PORTVERSION:R}
MAINTAINER= ports@FreeBSD.org
COMMENT= Modular FTP server configurable online using SITE commands
LICENSE= GPLv2 # (or later)
OPTIONS_DEFINE= ICONV IPV6 MYSQL PERL PGSQL SQLITE TCL DOCS
OPTIONS_RADIO= TLS ZEROCONF
OPTIONS_RADIO_TLS= GNUTLS OPENSSL
OPTIONS_RADIO_ZEROCONF= AVAHI HOWL
OPTIONS_DEFAULT= AVAHI GNUTLS
HOWL_DESC= Zeroconf support via Howl
OPTIONS_SUB= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --sysconfdir=${ETCDIR} --without-pam --disable-bonjour
USES= autoreconf gettext-tools libtool pkgconfig
USE_LDCONFIG= yes
USE_RC_SUBR= wzdftpd
CPPFLAGS+= -I${LOCALBASE}/include
LIBS+= -L${LOCALBASE}/lib
ICONV_CONFIGURE_ON= ${ICONV_CONFIGURE_ARG}
ICONV_CONFIGURE_OFF= --disable-utf8
ICONV_USES= iconv
TCL_CONFIGURE_ON= --with-tcl=${TCL_LIBDIR}
TCL_CONFIGURE_OFF= --without-tcl
TCL_USES= tcl
OPENSSL_CONFIGURE_ENABLE= openssl
OPENSSL_USE= OPENSSL=yes
GNUTLS_CONFIGURE_ENABLE= gnutls
GNUTLS_LIB_DEPENDS= libgnutls.so:${PORTSDIR}/security/gnutls
IPV6_CONFIGURE_ENABLE= ipv6
PERL_CONFIGURE_ENABLE= perl
PERL_USES= perl5
MYSQL_CONFIGURE_ENABLE= mysql
MYSQL_USE= MYSQL=yes
PGSQL_CONFIGURE_ON= --with-pgsql=${LOCALBASE}
PGSQL_CONFIGURE_OFF= --disable-pgsql
PGSQL_USES= pgsql
SQLITE_CONFIGURE_ENABLE= sqlite3
SQLITE_USE= SQLITE=3
AVAHI_CONFIGURE_ON= --with-zeroconf --enable-avahi
AVAHI_LIB_DEPENDS= libdbus-1.so:${PORTSDIR}/devel/dbus \
libavahi-core.so:${PORTSDIR}/net/avahi-app
HOWL_CONFIGURE_ON= --with-zeroconf --enable-howl
HOWL_CPPFLAGS= -I${LOCALBASE}/include/howl
HOWL_LIB_DEPENDS= libhowl.so:${PORTSDIR}/net/howl
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MAVAHI} || ${PORT_OPTIONS:MHOWL}
PLIST_SUB+= ZEROCONF=""
.else
PLIST_SUB+= ZEROCONF="@comment "
.endif
post-patch:
@${TOUCH} ${WRKSRC}/config.rpath
@${ECHO_CMD} "ACLOCAL_AMFLAGS= -I ac-helpers" >> ${WRKSRC}/Makefile.am
@${REINPLACE_CMD} -e \
'/LDFLAGS/s|@PTHREAD_CFLAGS@|@LTLIBICONV@|' \
${WRKSRC}/libwzd-core/Makefile.am
@${REINPLACE_CMD} -e \
's|INSTALLDIRS=vendor|INSTALLPRIVLIB=$${prefix}/lib| ; \
/MAKE/s| install| pure_install|' \
${WRKSRC}/libwzd-perl/Makefile.am
.for i in backends modules
@${FIND} ${WRKSRC}/${i} -name "Makefile.am" | ${XARGS} \
${REINPLACE_CMD} -e \
'/^libdir/s|$${pkgdatadir}|$${prefix}/lib/wzdftpd|'
.endfor
@${FIND} ${WRKSRC} -name "*_tls.c" | ${XARGS} ${REINPLACE_CMD} -e \
'/<gcrypt.h>/d ; \
/gcry_control/d' \
post-install:
(cd ${WRKSRC} && ${INSTALL_DATA} *.pc ${STAGEDIR}${PREFIX}/libdata/pkgconfig )
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for i in AUTHORS ChangeLog NEWS Permissions.ReadMeFirst README \
TLS.ReadMeFirst UPGRADING wzd_tls.cnf
(cd ${WRKSRC} && ${INSTALL_DATA} ${i} ${STAGEDIR}${DOCSDIR})
.endfor
.include <bsd.port.mk>