summaryrefslogtreecommitdiffstats
path: root/www/qdecoder/Makefile
blob: 8fb8f47bbf9d5d2cfb6b2b0fc836ecf830c1c017 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# New ports collection makefile for:    qDecoder library
# Date created:         Sep 10 1999
# Whom:                 CHOI Junho <cjh@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=	qdecoder
PORTVERSION=	9.0.2
CATEGORIES=	www
MASTER_SITES=	ftp://ftp.qdecoder.org/pub/qDecoder/
DISTNAME=	qDecoder-${PORTVERSION}

MAINTAINER=	ports@FreeBSD.org
COMMENT=	C/C++ language library including CGI supports

CONFLICTS=	qDecoder-[5-7]*

HAS_CONFIGURE=	yes
USE_LDCONFIG=	yes

OPTIONS=	Q_DEBUG "enable debuging output" off
OPTIONS+=	Q_CGI "enable CGI APIs" on
OPTIONS+=	Q_SOCKET "enable socket APIs" on
OPTIONS+=	Q_IPC "enable IPC APIs" on
OPTIONS+=	Q_DATASTRUCTURE "enable data-structure APIs" on
OPTIONS+=	Q_MYSQL "enable MySQL database supports" off
OPTIONS+=	Q_LFS "enable large-file supports" off
OPTIONS+=	Q_SENDFILE "use sendfile() if possible" off

.include <bsd.port.pre.mk>

.if defined(WITH_Q_DEBUG)
CONFIGURE_ARGS+="--enable-debug"
.endif

.if defined(WITH_Q_LFS)
CONFIGURE_ARGS+="--enable-lfs"
.endif

.if defined(WITH_Q_SENDFILE)
CONFIGURE_ARGS+="--enable-sendfile"
.endif

.if defined(WITH_Q_MYSQL)
CONFIGURE_ARGS+="--enable-mysql=${LOCALBASE}/include/mysql"
USE_MYSQL=yes
.endif

.if defined(WITHOUT_Q_CGI)
CONFIGURE_ARGS+="--disable-cgi"
.endif

.if defined(WITHOUT_Q_SOCKET)
CONFIGURE_ARGS+="--disable-socket"
.endif

.if defined(WITHOUT_Q_IPC)
CONFIGURE_ARGS+="--disable-ipc"
.endif

.if defined(WITHOUT_Q_DATASTRUCTURE)
CONFIGURE_ARGS+="--disable-datastructure"
.endif

post-install:
.if !defined(NOPORTDOCS)
	${MKDIR} ${DOCSDIR}
	(cd ${WRKSRC} && ${COPYTREE_SHARE} "AUTHORS CHANGES COPYING INSTALL qDecoder.jpg" ${DOCSDIR})
	(cd ${WRKSRC}/doc && ${COPYTREE_SHARE} "html" ${DOCSDIR})
.endif
.if !defined(NOPORTEXAMPLES)
	${MKDIR} ${EXAMPLESDIR}
	(cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} "Makefile *.c *.conf *.html* qDecoder-upload" ${EXAMPLESDIR})
.endif

.include <bsd.port.post.mk>
OpenPOWER on IntegriCloud