aboutsummaryrefslogtreecommitdiffstats
path: root/science/liblinear/Makefile
blob: 28ff34e483ce00c8d5a2b280583849070d925b0d (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
46
47
48
49
50
51
52
# New ports collection Makefile for: liblr
# Date created:                      May 14 2007
# Whom:                              Rong-En Fan <rafan@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=   liblinear
PORTVERSION=    1.80
CATEGORIES= science math
MASTER_SITES=   http://www.csie.ntu.edu.tw/~cjlin/liblinear/ \
        http://www.csie.ntu.edu.tw/~cjlin/liblinear/oldfiles/
DISTNAME=   ${PORTNAME}-${PORTVERSION:C/0$//}

MAINTAINER= rafan@FreeBSD.org
COMMENT=    A library for Large Linear Classification

LICENSE=    BSD
LICENSE_FILE=   ${WRKSRC}/COPYRIGHT

OPTIONS=    OCFLAGS "Use optimized CFLAGS" On

USE_ZIP=    yes

TXT_DOCS=   COPYRIGHT README

.if !defined(NOPORTDOCS)
PORTDOCS=   ${TXT_DOCS}
.endif

PLIST_FILES=    bin/train bin/predict

.include <bsd.port.pre.mk>

.if !defined(WITHOUT_OCFLAGS)
# same as LIBLINEAR itself
CFLAGS=     -Wall -O3
.endif

do-install:
    ${INSTALL_PROGRAM} ${WRKSRC}/train ${PREFIX}/bin
    ${INSTALL_PROGRAM} ${WRKSRC}/predict ${PREFIX}/bin

post-install:
.if !defined(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}
    for f in ${TXT_DOCS}; do \
      ${INSTALL_DATA} ${WRKSRC}/$$f ${DOCSDIR}; \
    done
.endif

.include <bsd.port.post.mk>