56 lines
1.3 KiB
Makefile
56 lines
1.3 KiB
Makefile
# $OpenBSD: Makefile,v 1.6 2010/11/20 19:56:48 espie Exp $
|
|
|
|
COMMENT = spelling, stemming, morphological analysis and generation
|
|
|
|
DISTNAME = hunspell-1.2.12
|
|
|
|
SHARED_LIBS = hunspell-1.2 0.0 # .0.0
|
|
|
|
CATEGORIES = textproc
|
|
|
|
HOMEPAGE = http://hunspell.sourceforge.net
|
|
|
|
MAINTAINER = Edd Barrett <edd@openbsd.org>
|
|
|
|
# GPL/LGPL/MPL
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
WANTLIB += c m ncurses ncursesw readline stdc++
|
|
|
|
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=hunspell/}
|
|
|
|
MODULES = devel/gettext
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib -L${WRKBUILD}/src/hunspell/.libs"
|
|
CONFIGURE_ARGS = ${CONFIGURE_SHARED} \
|
|
--with-ui \
|
|
--with-readline
|
|
|
|
USE_LIBTOOL = yes
|
|
USE_GROFF = Yes
|
|
|
|
# default dictionary
|
|
RUN_DEPENDS = textproc/mozilla-dicts,-en-GB
|
|
|
|
REGRESS_DEPENDS = shells/bash
|
|
|
|
pre-configure:
|
|
${SUBST_CMD} ${WRKSRC}/tests/test.sh \
|
|
${WRKSRC}/src/tools/hunspell.cxx \
|
|
${WRKSRC}/man/hu/hunspell.1 \
|
|
${WRKSRC}/man/hunspell.1
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/hunspell
|
|
ln -sf ${LOCALBASE}/share/mozilla-dicts/en-GB.aff \
|
|
${PREFIX}/share/hunspell/default.aff
|
|
ln -sf ${LOCALBASE}/share/mozilla-dicts/en-GB.dic \
|
|
${PREFIX}/share/hunspell/default.dic
|
|
|
|
.include <bsd.port.mk>
|