1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-12 03:00:28 +00:00
freebsd-ports/mail/wmbiff/Makefile
Kurt Jaeger b95d127471 security/libgcrypt: 1.5.3_3 -> 1.6.1
- Update to 1.6.1
- Remove some unneeded patches
- Fix pkg-plist
- report configure bug upstream
  https://bugs.g10code.com/gnupg/issue1668
- report API breakage downstream and find that MacPorts had the same issue
  https://rt.cpan.org/Ticket/Display.html?id=97201
- bump PORTREVISION for dependent ports (approx. 100 ports)
- Thanks to exp-run by antoine@ to find ports that break
- patch ports that would otherwise break
  security/shishi with PR 192164 is already committed
  [1] devel/ccrtp
  [2] editors/abiword
  [3] security/p5-Crypt-GCrypt

PR:		191256, 192162 [1], 192163 [2], 192166 [3]
Submitted by:	Carlos Jacobo Puga Medina <cjpugmed@gmail.com>
Approved by:	maintainer timeout, antoine (exp-run), portmgr (implicit)
2014-07-30 03:57:23 +00:00

48 lines
1.1 KiB
Makefile

# Created by: Jim Mock <jim@FreeBSD.org>
# $FreeBSD$
PORTNAME= wmbiff
PORTVERSION= 0.4.27
PORTREVISION= 15
CATEGORIES= mail windowmaker afterstep
MASTER_SITES= SF
MAINTAINER= garga@FreeBSD.org
COMMENT= xbiff-like Window Maker dock app
LICENSE= GPLv2
OPTIONS_DEFINE= GNUTLS
USE_XORG= xpm
GNU_CONFIGURE= yes
PLIST_FILES= bin/wmbiff \
lib/wmbiff/security.debian.rb \
man/man1/wmbiff.1.gz \
man/man5/wmbiffrc.5.gz \
%%DATADIR%%/sample.wmbiffrc \
%%DATADIR%%/skins/wmbiff-master-contrast.xpm \
%%DATADIR%%/skins/wmbiff-master-led.xpm
PLIST_DIRS= %%DATADIR%%/skins \
%%DATADIR%% \
lib/wmbiff
.include <bsd.port.pre.mk>
.if ${PORT_OPTIONS:MGNUTLS}
LIB_DEPENDS+= libgcrypt.so:${PORTSDIR}/security/libgcrypt \
libgnutls.so:${PORTSDIR}/security/gnutls
CONFIGURE_ARGS+= --with-libgnutls-prefix=${LOCALBASE} \
--with-libgcrypt-prefix=${LOCALBASE}
.else
CONFIGURE_ARGS+= --disable-crypto
.endif
post-install:
@${ECHO_MSG} "===> Installing sample.wmbiffrc to ${DATADIR}"
@${ECHO_MSG} "===> Modify it to suit your needs and copy to ~/.wmbiffrc"
${INSTALL_DATA} -m 644 ${WRKSRC}/wmbiff/sample.wmbiffrc ${STAGEDIR}${DATADIR}
.include <bsd.port.post.mk>