blob: 7c26475aa10262a5864e36c020914cf7af3ea250 (
plain)
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
|
# New ports collection makefile for: libconfuse
# Date created: 18 September 2004
# Whom: Juraj Lutter <otis@sk.freebsd.org>
#
# $FreeBSD$
#
PORTNAME= libconfuse
PORTVERSION= 2.5
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_SAVANNAH} \
ftp://ftp.wilbury.sk/pub/FreeBSD/local/distfiles/
MASTER_SITE_SUBDIR= confuse
DISTNAME= confuse-${PORTVERSION}
MAINTAINER= otis@freebsd.sk
COMMENT= Configuration file parsing library
.if defined(WITH_CHECK)
LIB_DEPENDS+= ${LOCALBASE}/lib/libcheck.a:${PORTSDIR}/devel/libcheck
.endif
USE_ICONV= yes
USE_LIBTOOL_VER= 15
INSTALLS_SHLIB= yes
CONFIGURE_ARGS+= --disable-nls
CFLAGS+= -I${WRKSRC}/src
.if defined(WITH_CHECK)
CONFIGURE_ARGS+= --with-check=${LOCALBASE}
CFLAGS+= -I${LOCALBASE}/include
.endif
.include <bsd.port.mk>
|