mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
b95d127471
- 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)
41 lines
1.0 KiB
Makefile
41 lines
1.0 KiB
Makefile
# Created by: Dmitriy Limonov
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ncdc
|
|
PORTVERSION= 1.19.1
|
|
PORTREVISION= 3
|
|
CATEGORIES= net-p2p
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} \
|
|
http://dev.yorhel.nl/download/
|
|
|
|
MAINTAINER= earl1k@mail.ru
|
|
COMMENT= Lightweight direct connect client with ncurses interface
|
|
|
|
LICENSE= MIT
|
|
|
|
LIB_DEPENDS= libsqlite3.so:${PORTSDIR}/databases/sqlite3 \
|
|
libpcre.so:${PORTSDIR}/devel/pcre \
|
|
libgmp.so:${PORTSDIR}/math/gmp \
|
|
libgnutls.so:${PORTSDIR}/security/gnutls \
|
|
libgcrypt.so:${PORTSDIR}/security/libgcrypt \
|
|
libnettle.so:${PORTSDIR}/security/nettle \
|
|
libp11-kit.so:${PORTSDIR}/security/p11-kit
|
|
|
|
USES= gmake pkgconfig ncurses
|
|
USE_GNOME= glib20
|
|
GNU_CONFIGURE= yes
|
|
PLIST_FILES= bin/ncdc \
|
|
man/man1/ncdc.1.gz
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
OPTIONS_DEFINE= GEOIP
|
|
|
|
GEOIP_CONFIGURE_WITH= geoip
|
|
GEOIP_CONFIGURE_ENV= GEOIP_CFLAGS="-I${LOCALBASE}/include" \
|
|
GEOIP_LIBS="-L${LOCALBASE}/lib -lGeoIP"
|
|
GEOIP_LIB_DEPENDS= libGeoIP.so:${PORTSDIR}/net/GeoIP
|
|
|
|
.include <bsd.port.mk>
|