2006-08-03 03:03:18 +00:00
|
|
|
# New ports collection makefile for: yamcha
|
|
|
|
# Date created: Aug 3, 2006
|
|
|
|
# Whom: Cheng-Lung Sung <clsung@FreeBSD.org>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= yamcha
|
|
|
|
PORTVERSION= 0.33
|
|
|
|
CATEGORIES= textproc science
|
|
|
|
MASTER_SITES= http://chasen.org/~taku/software/yamcha/src/
|
|
|
|
|
|
|
|
MAINTAINER= clsung@FreeBSD.org
|
|
|
|
COMMENT= Yet Another Multipurpose CHunk Annotator
|
|
|
|
|
|
|
|
BUILD_DEPENDS= svm_learn:${PORTSDIR}/science/svmlight
|
|
|
|
|
2009-08-02 19:36:34 +00:00
|
|
|
USE_AUTOTOOLS= libtool:22
|
2006-08-03 03:03:18 +00:00
|
|
|
GNU_CONFIGURE= yes
|
- Remove unneeded dependency from gtk12/gtk20 [1]
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Remove X11BASE support in favor of LOCALBASE or PREFIX
- Use USE_LDCONFIG instead of INSTALLS_SHLIB
- Remove unneeded USE_GCC 3.4+
Thanks to all Helpers:
Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr,
ehaupt, nox, itetcu, flz, pav
PR: 116263
Tested on: pointyhat
Approved by: portmgr (pav)
2008-04-19 17:56:05 +00:00
|
|
|
USE_LDCONFIG= yes
|
2006-08-05 10:59:32 +00:00
|
|
|
USE_PERL5_BUILD=yes
|
2006-08-03 03:03:18 +00:00
|
|
|
DOC_FILES= feature.png feature2.png feature3.png \
|
|
|
|
feature4.png feature5.png index.html \
|
|
|
|
yamcha.html yamcha.css
|
|
|
|
|
|
|
|
MAN1= yamcha.1
|
|
|
|
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
|
|
post-install:
|
|
|
|
@${MKDIR} ${DOCSDIR}
|
|
|
|
.for doc in ${DOC_FILES}
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/doc/${doc} ${DOCSDIR}
|
|
|
|
.endfor
|
|
|
|
@${FIND} -s ${DOCSDIR} -type f | \
|
|
|
|
${SED} -e 's|^${PREFIX}/||' >> ${TMPPLIST}
|
|
|
|
@${FIND} -s ${DOCSDIR} -type d | \
|
|
|
|
${SED} -e 's|^${PREFIX}/|@dirrm |' >> ${TMPPLIST}
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|