- Update to 1.17 [1] - Add LICENSE (MIT) PR: ports/179680 [1] Submitted by: Dmitriy Limonov <earl1k@mail.ru> (maintainer) Approved by: culot / jpaetzel (mentors, implicit)
35 lines
817 B
Makefile
35 lines
817 B
Makefile
# Created by: Dmitriy Limonov
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ncdc
|
|
PORTVERSION= 1.17
|
|
PORTREVISION= 1
|
|
CATEGORIES= net-p2p
|
|
MASTER_SITES= SF \
|
|
http://dev.yorhel.nl/download/
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= earl1k@mail.ru
|
|
COMMENT= Lightweight direct connect client with ncurses interface
|
|
|
|
LICENSE= MIT
|
|
|
|
LIB_DEPENDS= sqlite3:${PORTSDIR}/databases/sqlite3 \
|
|
pcre:${PORTSDIR}/devel/pcre \
|
|
gmp:${PORTSDIR}/math/gmp \
|
|
gnutls:${PORTSDIR}/security/gnutls \
|
|
gcrypt:${PORTSDIR}/security/libgcrypt \
|
|
nettle:${PORTSDIR}/security/nettle \
|
|
p11-kit:${PORTSDIR}/security/p11-kit
|
|
|
|
USES= pkgconfig ncurses
|
|
USE_GNOME= glib20
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
MAN1= ncdc.1
|
|
PLIST_FILES= bin/ncdc
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
.include <bsd.port.mk>
|