aboutsummaryrefslogtreecommitdiffstats
path: root/math/glpk/Makefile
blob: b69b7e9c65fd1e5711b90a8bcb05594bdbc9df7f (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
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
# New ports collection makefile for:    GLPK
# Date created:     16 December 2000
# Whom:         Dmitry Sivachenko <demon@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=   glpk
PORTVERSION=    4.30
CATEGORIES= math
MASTER_SITES=   ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= glpk

MAINTAINER= demon@FreeBSD.org
COMMENT=    A GNU Linear Programming Kit

LIB_DEPENDS=    gmp:${PORTSDIR}/math/libgmp4

OPTIONS=    IODBC   "Enable MathProg iodbc support" Off \
        MYSQL   "Enable MathProg mysql support" Off

GNU_CONFIGURE=  yes
USE_GMAKE=  yes
USE_LDCONFIG=   yes
CFLAGS+=    -trigraphs
CPPFLAGS+=  -I${LOCALBASE}/include
LDFLAGS+=   -L${LOCALBASE}/lib
CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
CONFIGURE_ARGS+=    --with-gmp --with-zlib

.include <bsd.port.pre.mk>

.ifdef(WITH_IODBC || WITH_MYSQL)
CONFIGURE_ARGS+=    --enable-dl=dlfcn
.else
CONFIGURE_ARGS+=    --disable-dl
.endif

.ifdef(WITH_IODBC)
CONFIGURE_ARGS+=    --enable-odbc
LIB_DEPENDS+=       iodbc.3:${PORTSDIR}/databases/libiodbc
.else
CONFIGURE_ARGS+=    --disable-odbc
.endif

.ifdef(WITH_MYSQL)
CONFIGURE_ARGS+=    --enable-mysql
USE_MYSQL=      yes
.else
CONFIGURE_ARGS+=    --disable-mysql
.endif

.if !defined(NOPORTDOCS)
PORTDOCS=   bench.txt bench1.txt glpk.ps glpk_faq.txt gmpl.ps \
        gomory.djvu opb.txt tables.txt updating.djvu
.endif

post-patch:
    @${REINPLACE_CMD} -e "s;\/usr\/include\/mysql;${LOCALBASE}\/include\/mysql;g" \
    ${WRKSRC}/configure

post-install:
    @${INSTALL_DATA} ${WRKSRC}/include/*.h ${PREFIX}/include/

.if !defined(NOPORTDOCS)
    @${CP} ${WRKSRC}/doc/memo/gomory.djvu ${WRKSRC}/doc/
    @${CP} ${WRKSRC}/doc/memo/updating.djvu ${WRKSRC}/doc/
    @${MKDIR} ${DOCSDIR}
    for docfile in ${PORTDOCS} ; do \
        ${INSTALL_MAN} ${WRKSRC}/doc/$${docfile} ${DOCSDIR} ; \
    done
.endif

.include <bsd.port.post.mk>