blob: 00976b3695e08dedbffdcafc93c59b8e5571b1b7 (
plain)
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
|
# $FreeBSD$
PORTNAME= libexttextcat
PORTVERSION= 3.4.3
CATEGORIES= textproc
MASTER_SITES= http://dev-www.libreoffice.org/src/libexttextcat/
MAINTAINER= office@FreeBSD.org
COMMENT= Language guessing by N-Gram-Based Text Categorization
LICENSE= BSD
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
USE_XZ= yes
USES= gmake pathfix
PORTDOCS= README README.libtextcat TODO
OPTIONS_DEFINE= DOCS
NO_STAGE= yes
.include <bsd.port.options.mk>
PLIST_SUB+= EXEEXT='x'
MAKE_ARGS= EXEEXT=x
post-install:
.if ${PORT_OPTIONS:MDOCS}
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
.endif
check:
cd ${WRKSRC}/src && make check
.include <bsd.port.mk>
|