mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
3ab1b8443e
- Bump PORTREVISION on all ports that depend on security/gnutls and adjust all ports that depend on security/gnutls3 - Update mail/anubis to version 4.2 which supports gnutls 3.x - Update mail/libvmime to a development snapshot (recommended by upstream developers) PR: 191274 Exp-run by: antoine Approved by: portmgr (antoine)
76 lines
1.7 KiB
Makefile
76 lines
1.7 KiB
Makefile
# Created by: Koop Mast <einekoai@chello.nl>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gurlchecker
|
|
PORTVERSION= 0.10.1
|
|
PORTREVISION= 22
|
|
CATEGORIES= www gnome
|
|
MASTER_SITES= http://labs.libre-entreprise.org/frs/download.php/%SUBDIR%/
|
|
MASTER_SITE_SUBDIR= 547
|
|
|
|
MAINTAINER= clsung@FreeBSD.org
|
|
COMMENT= Gnome program to check a page/website for broken links
|
|
|
|
LIB_DEPENDS= libgnet-2.0.so:${PORTSDIR}/net/gnet2
|
|
|
|
OPTIONS_DEFINE= CROCO TIDY CLAMAV GNUTLS
|
|
CROCO_DESC=Library for CSS2 validation
|
|
TIDY_DESC=Library for HTML w3c validation
|
|
CLAMAV_DESC=Library for virii scan
|
|
GNUTLS_DESC=Library for HTTPS check
|
|
|
|
OPTIONS_DEFAULT= CLAMAV GNUTLS
|
|
|
|
USE_GNOME= gnomeprefix intlhack libgnomeui
|
|
USES= pathfix gmake pkgconfig
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MNLS}
|
|
USES+= gettext
|
|
PLIST_SUB+= NLS=""
|
|
.else
|
|
PLIST_SUB+= NLS="@comment "
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MCROCO}
|
|
LIB_DEPENDS+= libcroco-0.6.so:${PORTSDIR}/textproc/libcroco
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-croco
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MTIDY}
|
|
LIB_DEPENDS+= libtidy-0.99.so:${PORTSDIR}/www/tidy-lib
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-tidy
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MCLAMAV}
|
|
LIB_DEPENDS+= libclamav.so:${PORTSDIR}/security/clamav
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-clamav
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MGNUTLS}
|
|
LIB_DEPENDS+= libgnutls.so:${PORTSDIR}/security/gnutls
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-gnutls
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
'/maxratio/s|^.*||' ${WRKSRC}/src/ucclam.c
|
|
@${REINPLACE_CMD} -e \
|
|
'/^SUBDIRS/s|doc ui man|ui|g' ${WRKSRC}/Makefile.in
|
|
@${REINPLACE_CMD} -e \
|
|
's|-lresolv||g' ${WRKSRC}/src/Makefile.in
|
|
.if ! ${PORT_OPTIONS:MNLS}
|
|
@${REINPLACE_CMD} -e \
|
|
'/^SUBDIRS/s|po ui|ui|g' ${WRKSRC}/Makefile.in
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|