aboutsummaryrefslogtreecommitdiff
path: root/net-p2p/ncdc/Makefile
blob: ced4bad8cd37cf19ca47d467192ecfc4c83625be (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# New ports collection makefile for:	ncdc
# Date created:				28 November 2011
# Whom:					Dmitriy Limonov
#
# $FreeBSD$
#

PORTNAME=	ncdc
PORTVERSION=	1.6
CATEGORIES=	net-p2p
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE} \
		http://dev.yorhel.nl/download/
MASTER_SITE_SUBDIR=	${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}

MAINTAINER=	earl1k@mail.ru
COMMENT=	Lightweight direct connect client with ncurses interface

LIB_DEPENDS=	sqlite3:${PORTSDIR}/databases/sqlite3 \
		xml2:${PORTSDIR}/textproc/libxml2

OPTIONS=	GDBM "Build ncdc-db-upgrade" off

USE_GNOME=	glib20
USE_GMAKE=	yes
GNU_CONFIGURE=	yes
MAKEFILE=	GNUmakefile
MAN1=		ncdc.1 ncdc-gen-cert.1 ncdc-db-upgrade.1
PLIST_FILES=	bin/ncdc bin/ncdc-gen-cert

#force base compiler,linker flags to avoid linking to ncurses from ports
CFLAGS+=	-I/usr/include -I${LOCALBASE}/include
LDFLAGS+=	-L/usr/lib -L${LOCALBASE}/lib

.include <bsd.port.options.mk>

.if defined(WITH_GDBM)
LIB_DEPENDS+=	gdbm:${PORTSDIR}/databases/gdbm
PLIST_FILES+=	bin/ncdc-db-upgrade
.else
post-patch:
	@${REINPLACE_CMD} \
		-e '/#include <gdbm.h>/d' \
		${WRKSRC}/src/fl_local.c
	@${REINPLACE_CMD} \
		-e '/have_gdbm=yes/d' \
		${WRKSRC}/configure
.endif

.include <bsd.port.mk>