freebsd-ports/math/glpk/Makefile
Dmitry Sivachenko 49df911309 Update to 4.28.
PR:		123543
Submitted by:	bf <bf2006a@yahoo.com>
2008-05-19 15:28:27 +00:00

72 lines
1.6 KiB
Makefile

# New ports collection makefile for: GLPK
# Date created: 16 December 2000
# Whom: Dmitry Sivachenko <demon@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= glpk
PORTVERSION= 4.28
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}"
.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
.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/
@${MKDIR} ${DOCSDIR}
for docfile in ${PORTDOCS} ; do \
${INSTALL_MAN} ${WRKSRC}/doc/$${docfile} ${DOCSDIR} ; \
done
.endif
.include <bsd.port.post.mk>