aboutsummaryrefslogtreecommitdiffstats
path: root/science/svmlight/Makefile
blob: 155d3589588e03fabab189af2247ac3bffc3cb74 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# New ports collection makefile for: svmlight
# Date created:     2006-07-18
# Whom:     Gea-Suan Lin <gslin@gslin.org>
#
# $FreeBSD$
#

PORTNAME=   svmlight
PORTVERSION=    6.02
CATEGORIES= science
MASTER_SITES=   http://osmot.cs.cornell.edu/svm_light/v${PORTVERSION}/
DISTNAME=   svm_light

PATCH_SITES=    http://cpansearch.perl.org/src/KWILLIAMS/Algorithm-SVMLight-0.09/
PATCHFILES= SVMLight.patch
PATCH_DIST_STRIP=-p1

MAINTAINER= gslin@gslin.org
COMMENT=    An implementation of Support Vector Machines (SVMs) in C

RESTRICTED= only for education and research

CFLAGS+=    -fPIC
MAKE_ARGS=  CC="${CC}" CFLAGS="${CFLAGS}" LD="${CC}" LFLAGS="${CFLAGS}"
NO_WRKSUBDIR=   yes
USE_GMAKE=  yes
USE_LDCONFIG=   yes

do-install:
    ${MKDIR} ${PREFIX}/include/svmlight
    ${INSTALL_DATA} ${WRKSRC}/*.h ${PREFIX}/include/svmlight
.for file in svm_classify svm_learn
    ${INSTALL_PROGRAM} ${WRKSRC}/${file} ${PREFIX}/bin
.endfor
    ${INSTALL_DATA} ${WRKSRC}/libsvmlight.* ${PREFIX}/lib
    ${MV} ${PREFIX}/lib/libsvmlight.so ${PREFIX}/lib/libsvmlight.so.1
    ${LN} -s ${PREFIX}/lib/libsvmlight.so.1 ${PREFIX}/lib/libsvmlight.so
# It's license request, do not remove
    ${MKDIR} ${DOCSDIR}
    ${INSTALL_DATA} ${WRKSRC}/LICENSE.txt ${DOCSDIR}

post-install:
    @${CAT} ${WRKSRC}/LICENSE.txt

.include <bsd.port.mk>