dd7417c07e
- Remove MD5 checksum from distinfo PR: ports/153523 [1] Submitted by: Hung-Yi Chen <gaod_AT_hychen_DOT_org> (maintainer) [1]
45 lines
1 KiB
Makefile
45 lines
1 KiB
Makefile
# New ports collection makefile for: liblbfgs
|
|
# Date created: 2010-06-08
|
|
# Whom: Hung-Yi Chen <gaod@hychen.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= liblbfgs
|
|
PORTVERSION= 1.10
|
|
CATEGORIES= math
|
|
MASTER_SITES= http://cloud.github.com/downloads/chokkan/liblbfgs/
|
|
|
|
MAINTAINER= gaod@hychen.org
|
|
COMMENT= A library of Limited-memory Broyden-Fletcher-Goldfarb-Shanno
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_AUTOTOOLS= autoconf:env
|
|
|
|
OPTIONS= OPTIMIZED "Enable SSE2 optimization routines" Off
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if (${OSVERSION} < 700000)
|
|
IGNORE= does not install properly on 6.x
|
|
.endif
|
|
|
|
# Enable/disable compilation optimizations.
|
|
.if defined(WITH_OPTIMIZED)
|
|
CONFIGURE_ARGS+= --enable-sse2
|
|
.endif
|
|
|
|
PLIST_FILES= lib/liblbfgs-1.10.so.0.0 lib/liblbfgs.a lib//liblbfgs.la \
|
|
lib/liblbfgs.so.0.0 include/lbfgs.h
|
|
|
|
PORTDOCS= README INSTALL COPYING AUTHORS ChangeLog NEWS
|
|
|
|
post-patch:
|
|
.if defined(NOPORTDOCS)
|
|
@${REINPLACE_CMD} -e 's/install-data-am$$//' ${WRKSRC}/Makefile.in
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|