1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-04 01:48:54 +00:00
freebsd-ports/math/lp_solve/Makefile
Mark Linimon 32e8f5703b er distfile survey, remove obsolete mastersite. It points to the URL
contained in the pkg_descr, but when I tried to access that site, I was
told I was not a member of that group -- not a very useful method of
software distribution IMHO.
2004-04-13 04:03:46 +00:00

44 lines
1.0 KiB
Makefile

# New ports collection makefile for: lp_solve
# Date created: 31 June 2003
# Whom: Pedro F. Giffuni <giffunip@asme.org>
#
# $FreeBSD$
#
PORTNAME= lp_solve
PORTVERSION= 4.0
PORTREVISION= 1
CATEGORIES= math
MASTER_SITES= # none
DISTNAME= ${PORTNAME}_${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Linear Programming Solver
USE_BISON= yes
MAN1= lp_solve.1
USE_REINPLACE= yes
post-patch:
@${REINPLACE_CMD} -e 's,%%CC%%,${CC},g ; \
s,%%CFLAGS%%,${CFLAGS},g' ${WRKSRC}/Makefile
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/lp_solve ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/lp2mps ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/mps2lp ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/lp_solve.1 ${PREFIX}/man/man1
.ifndef NOPORTDOCS
${MKDIR} ${DOCSDIR}
${CP} $(WRKSRC)/HARTMUT_DOCUMENTATION ${DOCSDIR}
${CP} $(WRKSRC)/MPS.description ${DOCSDIR}
${CP} $(WRKSRC)/*.pdf ${DOCSDIR}
${MKDIR} ${EXAMPLESDIR}
${INSTALL_PROGRAM} ${WRKSRC}/demo ${EXAMPLESDIR}
${CP} -R $(WRKSRC)/lp_examples/* ${EXAMPLESDIR}
.endif
.include <bsd.port.mk>