diff options
author | Justin Lecher <jlec@gentoo.org> | 2015-05-28 06:18:24 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2015-05-28 06:18:24 +0000 |
commit | 4826f3673ff97ffaa048f8c4006f76df1d2dc2a1 (patch) | |
tree | dd128ff7d08f79b33f7017c8311a1da4fa41414e /sci-libs | |
parent | Drop old (diff) | |
download | gentoo-2-4826f3673ff97ffaa048f8c4006f76df1d2dc2a1.tar.gz gentoo-2-4826f3673ff97ffaa048f8c4006f76df1d2dc2a1.tar.bz2 gentoo-2-4826f3673ff97ffaa048f8c4006f76df1d2dc2a1.zip |
Drop old
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key E9402A79B03529A2!)
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/libsvm/ChangeLog | 5 | ||||
-rw-r--r-- | sci-libs/libsvm/libsvm-3.17.ebuild | 92 |
2 files changed, 4 insertions, 93 deletions
diff --git a/sci-libs/libsvm/ChangeLog b/sci-libs/libsvm/ChangeLog index 066332a68bea..2ed2fbe9e3cd 100644 --- a/sci-libs/libsvm/ChangeLog +++ b/sci-libs/libsvm/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-libs/libsvm # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libsvm/ChangeLog,v 1.42 2015/05/27 11:24:33 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libsvm/ChangeLog,v 1.43 2015/05/28 06:18:24 jlec Exp $ + + 28 May 2015; Justin Lecher <jlec@gentoo.org> -libsvm-3.17.ebuild: + Drop old 27 May 2015; Agostino Sarubbo <ago@gentoo.org> libsvm-3.17-r1.ebuild: Stable for x86, wrt bug #538508 diff --git a/sci-libs/libsvm/libsvm-3.17.ebuild b/sci-libs/libsvm/libsvm-3.17.ebuild deleted file mode 100644 index 77f32ab519e1..000000000000 --- a/sci-libs/libsvm/libsvm-3.17.ebuild +++ /dev/null @@ -1,92 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libsvm/libsvm-3.17.ebuild,v 1.7 2015/04/08 18:49:16 mgorny Exp $ - -EAPI=5 - -PYTHON_COMPAT=( python{2_7,3_3,3_4} ) - -inherit eutils java-pkg-opt-2 python-r1 flag-o-matic toolchain-funcs - -DESCRIPTION="Library for Support Vector Machines" -HOMEPAGE="http://www.csie.ntu.edu.tw/~cjlin/libsvm/" -SRC_URI="http://www.csie.ntu.edu.tw/~cjlin/libsvm/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ppc ppc64 x86 ~amd64-linux ~x86-linux" -IUSE="java openmp python tools" - -DEPEND="java? ( >=virtual/jdk-1.4 )" -RDEPEND=" - java? ( >=virtual/jre-1.4 ) - tools? ( sci-visualization/gnuplot )" - -pkg_setup() { - if use openmp; then - if [[ $(tc-getCC)$ == *gcc* ]] && ! tc-has-openmp; then - ewarn "You are using gcc but without OpenMP capabilities" - die "Need an OpenMP capable compiler" - else - append-ldflags -fopenmp - append-cxxflags -fopenmp - fi - append-cxxflags -DOPENMP - fi -} - -src_prepare() { - epatch \ - "${FILESDIR}"/3.11-openmp.patch \ - "${FILESDIR}"/3.14-makefile.patch - sed -i -e "s@\.\./@${EPREFIX}/usr/bin/@g" tools/*.py \ - || die "Failed to fix paths in python files" - - if use java; then - local JAVAC_FLAGS="$(java-pkg_javac-args)" - sed -i \ - -e "s/JAVAC_FLAGS =/JAVAC_FLAGS=${JAVAC_FLAGS}/g" \ - java/Makefile || die "Failed to fix java makefile" - fi - tc-export CXX -} - -src_compile() { - default - use java && emake -C java -} - -src_install() { - dobin svm-train svm-predict svm-scale - dolib.so *.so* - insinto /usr/include - doins svm.h - dohtml FAQ.html - dodoc README - - if use tools; then - local t - for t in tools/*.py; do - newbin ${t} svm-$(basename ${t} .py) - done - newdoc tools/README README.tools - insinto /usr/share/doc/${PF} - doins heart_scale - doins -r svm-toy - fi - - if use python ; then - installation() { - touch python/__init__.py || die - python_moduleinto libsvm - python_domodule python/*.py - } - python_foreach_impl installation - newdoc python/README README.python - fi - - if use java; then - java-pkg_dojar java/libsvm.jar - dohtml java/test_applet.html - fi -} |