blob: 70376117167c75ece08fedb2978ff09bc676830d (
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
|
# New ports collection makefile for: hunspell
# Date created: 2011-07-20
# Whom: Baptiste Daroussin <bapt@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= hunspell
PORTVERSION= 1.1
CATEGORIES= hebrew textproc
MASTER_SITES= http://hspell.ivrix.org.il/
DISTNAME= hspell-${PORTVERSION}
MAINTAINER= bapt@FreeBSD.org
COMMENT= Hunspell hebrew dictionnary
BUILD_DEPENDS= iconv:${PORTSDIR}/converters/libiconv
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-fatverb
USE_GMAKE= yes
USE_PERL5_BUILD= yes
ALL_TARGET= myspell
PLIST_FILES= share/hunspell/he.aff \
share/hunspell/he.dic
PLIST_DIRS= share/hunspell
post-patch:
@${REINPLACE_CMD} 's|/usr/bin/perl|${PERL}|g' ${WRKSRC}/pmerge
do-install:
@${MKDIR} ${PREFIX}/share/hunspell
@${INSTALL_DATA} ${WRKSRC}/he.aff \
${WRKSRC}/he.dic \
${PREFIX}/share/hunspell/
.include <bsd.port.mk>
|