If a port used other USE_GNOME items it was untouched. The ports that used other USES were fixed by hand. PR: ports/177081 Reviewed by: bapt Approved by: portmgr (miwi)
37 lines
657 B
Makefile
37 lines
657 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= libexttextcat
|
|
PORTVERSION= 3.4.0
|
|
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
|
|
|
|
USE_XZ= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
USES= pathfix
|
|
USE_LDCONFIG= yes
|
|
|
|
PORTDOCS= README README.libtextcat TODO
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.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>
|