diff options
author | rafan <rafan@FreeBSD.org> | 2008-12-22 23:48:54 +0800 |
---|---|---|
committer | rafan <rafan@FreeBSD.org> | 2008-12-22 23:48:54 +0800 |
commit | 16d09d655c0cb481b19e335d32d3a63708733df7 (patch) | |
tree | 0772fa82585464e18450cb19142e71855245b125 /science | |
parent | 0a01db7cf5eb5cb8ef8340cb88b8661a6960d118 (diff) | |
download | freebsd-ports-gnome-16d09d655c0cb481b19e335d32d3a63708733df7.tar.gz freebsd-ports-gnome-16d09d655c0cb481b19e335d32d3a63708733df7.tar.zst freebsd-ports-gnome-16d09d655c0cb481b19e335d32d3a63708733df7.zip |
- Add OCFLAGS to make CFLAGS the same as distribution's by default
(this is preferable by the authors).
Diffstat (limited to 'science')
-rw-r--r-- | science/libsvm/Makefile | 7 | ||||
-rw-r--r-- | science/libsvm/files/patch-Makefile | 9 |
2 files changed, 7 insertions, 9 deletions
diff --git a/science/libsvm/Makefile b/science/libsvm/Makefile index 7449f051d9ab..038927ad0159 100644 --- a/science/libsvm/Makefile +++ b/science/libsvm/Makefile @@ -15,6 +15,8 @@ MASTER_SITES= http://www.csie.ntu.edu.tw/~cjlin/libsvm/ \ MAINTAINER= rafan@FreeBSD.org COMMENT= A library for Support Vector Machines +OPTIONS= OCFLAGS "Use optimized CFLAGS" On + USE_ZIP= yes .if defined(PKGNAMESUFFIX) && ${PKGNAMESUFFIX} == "-python" @@ -48,6 +50,11 @@ PORTDOCS= ${TXT_DOCS} .include <bsd.port.pre.mk> +.if !defined(WITHOUT_OCFLAGS) +# same as LIBSVM itself +CFLAGS= -Wall -Wconversion -O3 +.endif + post-patch: post-extract: diff --git a/science/libsvm/files/patch-Makefile b/science/libsvm/files/patch-Makefile deleted file mode 100644 index 7156305752f2..000000000000 --- a/science/libsvm/files/patch-Makefile +++ /dev/null @@ -1,9 +0,0 @@ ---- Makefile.orig 2008-12-22 23:43:29.000000000 +0800 -+++ Makefile 2008-12-22 23:43:58.000000000 +0800 -@@ -1,5 +1,5 @@ - CXX? = g++ --CFLAGS = -Wall -Wconversion -O3 -fPIC -+CFLAGS += -Wall -Wconversion -O3 -fPIC - SHVER = 1 - - all: svm-train svm-predict svm-scale |