diff options
author | makc <makc@FreeBSD.org> | 2013-03-16 00:03:04 +0800 |
---|---|---|
committer | makc <makc@FreeBSD.org> | 2013-03-16 00:03:04 +0800 |
commit | 2c32d5b47bb4939cd2da39476afaa69796ff005f (patch) | |
tree | e261ce29736186dc8a16edc5853d515369123f0f /math | |
parent | 1662f91f21d76226d62fc7ed3db6c5786a154873 (diff) | |
download | freebsd-ports-gnome-2c32d5b47bb4939cd2da39476afaa69796ff005f.tar.gz freebsd-ports-gnome-2c32d5b47bb4939cd2da39476afaa69796ff005f.tar.zst freebsd-ports-gnome-2c32d5b47bb4939cd2da39476afaa69796ff005f.zip |
- Clean up cmake usage
- Trim header and adjust COMMENT while here
Approved by: Tz-Huan Huang (maintainer)
Diffstat (limited to 'math')
-rw-r--r-- | math/fann/Makefile | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/math/fann/Makefile b/math/fann/Makefile index 9ea7d07a8786..46b9efb0c272 100644 --- a/math/fann/Makefile +++ b/math/fann/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: fann -# Date created: 2007-03-04 -# Whom: Tz-Huan Huang <tzhuan@csie.org> -# +# Created by: Tz-Huan Huang <tzhuan@csie.org> # $FreeBSD$ -# PORTNAME= fann PORTVERSION= 2.2.0 @@ -12,7 +8,7 @@ MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} DISTNAME= FANN-2.2.0-Source MAINTAINER= tzhuan@csie.org -COMMENT= A free open source neural network library +COMMENT= Free open source neural network library WRKSRC= ${WRKDIR}/FANN-2.2.0-Source @@ -23,7 +19,4 @@ USE_LDCONFIG= yes post-patch: ${REINPLACE_CMD} -e 's|/lib/pkgconfig|/libdata/pkgconfig|g' ${WRKSRC}/CMakeLists.txt -post-configure: - ${ENV} CPP=${CPP} CC=${CC} CXX=${CXX} ${CMAKE_BIN} ${WRKSRC} -DCMAKE_INSTALL_PREFIX=${PREFIX} - .include <bsd.port.mk> |