Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/libsvm/
Date: Sun, 25 Jun 2017 09:58:14
Message-Id: 1498384689.4019b06e731b1064c23334e1141f080f28a0365d.jer@gentoo
1 commit: 4019b06e731b1064c23334e1141f080f28a0365d
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 25 09:57:56 2017 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 25 09:58:09 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4019b06e
7
8 sci-libs/libsvm: Version bump.
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 sci-libs/libsvm/Manifest | 1 +
13 sci-libs/libsvm/libsvm-3.22.ebuild | 117 +++++++++++++++++++++++++++++++++++++
14 2 files changed, 118 insertions(+)
15
16 diff --git a/sci-libs/libsvm/Manifest b/sci-libs/libsvm/Manifest
17 index 9ef4802893d..d0f562e713d 100644
18 --- a/sci-libs/libsvm/Manifest
19 +++ b/sci-libs/libsvm/Manifest
20 @@ -1 +1,2 @@
21 DIST libsvm-3.21.tar.gz 847291 SHA256 519e0bdc0e31ab8246e9035e7ca91f794c16084f80abe4dffe776261d23c772f SHA512 697a7505100e48746a87e3e4ab025524fa581856320da3a187ac501138ce0a5bc7885ff37454ae5e75d6b0eab94e368b6bcd36601ad18db3b2fb35d2f360520a WHIRLPOOL d0ef916d37a3cc24680b6eba62d29caca9c36fa41ae8f22445137e044c7cf66a754c3d12670697fce174b388fe30906b2a4dc437cb38e7c6f1dd8dde85f51b84
22 +DIST libsvm-3.22.tar.gz 850563 SHA256 6d81c67d3b13073eb5a25aa77188f141b242ec328518fad95367ede253d0a77d SHA512 80a22fd2c2a82f70b8279fa5d8c5a2838b10ee439cf6d725816d608f8e45990ba1780ae6750cad78b25c1c18daf2c2315b342b9e329affbd5729d6fd7da87f7a WHIRLPOOL 0a720edf30f874ace0a7c7dab02df634fa64a0b134cf8ec7c153f7ff6ac794b6ea0ebcef6cfa54ac298c67a3a79e251565bbb5f3a75019a446d04bd065cf8279
23
24 diff --git a/sci-libs/libsvm/libsvm-3.22.ebuild b/sci-libs/libsvm/libsvm-3.22.ebuild
25 new file mode 100644
26 index 00000000000..a87166cdefc
27 --- /dev/null
28 +++ b/sci-libs/libsvm/libsvm-3.22.ebuild
29 @@ -0,0 +1,117 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +PYTHON_COMPAT=( python{2_7,3_4,3_5} )
36 +
37 +inherit flag-o-matic java-pkg-opt-2 python-r1 toolchain-funcs
38 +
39 +DESCRIPTION="Library for Support Vector Machines"
40 +HOMEPAGE="http://www.csie.ntu.edu.tw/~cjlin/libsvm/"
41 +SRC_URI="http://www.csie.ntu.edu.tw/~cjlin/libsvm/${P}.tar.gz"
42 +
43 +LICENSE="BSD"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
46 +IUSE="java openmp python tools"
47 +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
48 +
49 +DEPEND="
50 + java? ( >=virtual/jdk-1.4 )
51 + python? ( ${PYTHON_DEPS} )"
52 +RDEPEND="
53 + java? ( >=virtual/jre-1.4 )
54 + python? ( ${PYTHON_DEPS} )
55 + tools? ( sci-visualization/gnuplot )"
56 +
57 +PATCHES=(
58 + "${FILESDIR}/3.11-openmp.patch"
59 + "${FILESDIR}/3.14-makefile.patch"
60 +)
61 +
62 +pkg_setup() {
63 + if use openmp; then
64 + if ! tc-has-openmp; then
65 + ewarn "OpenMP is not supported by your currently selected compiler"
66 +
67 + if tc-is-clang; then
68 + ewarn "OpenMP support in sys-devel/clang is provided by sys-libs/libomp,"
69 + ewarn "which you will need to build ${CATEGORY}/${PN} for USE=\"openmp\""
70 + fi
71 +
72 + die "need openmp capable compiler"
73 + fi
74 +
75 + append-cflags -fopenmp
76 + append-cxxflags -fopenmp
77 + append-cppflags -DOPENMP
78 + fi
79 +}
80 +
81 +src_prepare() {
82 + default
83 +
84 + sed -i -e "s@\.\./@${EPREFIX}/usr/bin/@g" tools/*.py \
85 + || die "Failed to fix paths in python files"
86 + sed -i -e "s|./grid.py|${EPREFIX}/usr/bin/svm-grid|g" tools/*.py \
87 + || die "Failed to fix paths for svm-grid"
88 + sed -i -e 's/grid.py/svm-grid/g' tools/grid.py \
89 + || die "Failed to rename grid.py to svm-grid"
90 +
91 + if use java; then
92 + local JAVAC_FLAGS="$(java-pkg_javac-args)"
93 + sed -i \
94 + -e "s/JAVAC_FLAGS =/JAVAC_FLAGS=${JAVAC_FLAGS}/g" \
95 + java/Makefile || die "Failed to fix java makefile"
96 + fi
97 + tc-export CXX CC
98 +}
99 +
100 +src_compile() {
101 + default
102 + use java && emake -C java
103 +}
104 +
105 +src_install() {
106 + dobin svm-train svm-predict svm-scale
107 + dolib.so *.so*
108 + doheader svm.h
109 +
110 + DOCS=( README )
111 +
112 + if use tools; then
113 + local t
114 + for t in tools/*.py; do
115 + python_foreach_impl python_newscript ${t} svm-$(basename ${t} .py)
116 + done
117 +
118 + mv tools/README{,.tools} || die
119 + DOCS+=( tools/README.tools )
120 +
121 + insinto /usr/share/doc/${PF}/examples
122 + docompress -x /usr/share/doc/${PF}/examples
123 + doins heart_scale
124 + doins -r svm-toy
125 + fi
126 +
127 + if use python ; then
128 + installation() {
129 + touch python/__init__.py || die
130 + python_moduleinto libsvm
131 + python_domodule python/*.py
132 + }
133 + python_foreach_impl installation
134 +
135 + mv python/README{,.python} || die
136 + DOCS+=( python/README.python )
137 + fi
138 +
139 + HTML_DOCS=( FAQ.html )
140 + if use java; then
141 + java-pkg_dojar java/libsvm.jar
142 + HTML_DOCS+=( java/test_applet.html )
143 + fi
144 +
145 + einstalldocs
146 +}