blob: 2c374ae22d66a2f26222e654fbf9b6a251db9965 (
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
38
39
40
41
42
43
44
45
46
|
# $NetBSD: Makefile,v 1.4 2018/11/22 15:06:09 nia Exp $
#
DISTNAME= enchant-2.2.3
PKGNAME= enchant2-2.2.3
PKGREVISION= 1
CATEGORIES= textproc
MASTER_SITES= ${MASTER_SITE_GITHUB:=AbiWord/}
GITHUB_PROJECT= enchant
GITHUB_RELEASE= v${PKGVERSION_NOREV}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://abiword.github.io/enchant/
COMMENT= Generic spell checking library
LICENSE= gnu-lgpl-v2.1
USE_TOOLS+= pkg-config autoconf
USE_LANGUAGES= c c++11
USE_PKGLOCALEDIR= yes
USE_LIBTOOL= yes
PKGCONFIG_OVERRIDE+= enchant.pc.in
GNU_CONFIGURE= yes
CFLAGS.SunOS+= -D__EXTENSIONS__
INSTALLATION_DIRS+= share/examples
MAKE_DIRS+= ${PREFIX}/share/enchant
CONF_FILES= ${PREFIX}/share/examples/enchant.ordering ${PREFIX}/share/enchant/enchant.ordering
# unsupported in pkgsrc - other dictionaries can be used instead
# avoid PLIST problems
CONFIGURE_ARGS+= --without-hspell
CONFIGURE_ARGS+= --without-uspell
CONFIGURE_ARGS+= --without-voikko
# XXX: needs unittest-cpp as a test dependency
#TEST_TARGET= check
post-install:
cd ${DESTDIR}${PREFIX}/share && ${MV} enchant/enchant.ordering examples/enchant.ordering
.include "options.mk"
.include "../../devel/glib2/buildlink3.mk"
#BUILDLINK_DEPMETHOD.unittest-cpp= build # XXX: for tests
#.include "../../wip/unittest-cpp/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|