aboutsummaryrefslogtreecommitdiff
path: root/textproc/aspell/Makefile
blob: 7aae8fd2b923e254b6e61d84ec109f62d746c62d (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# New ports collection makefile for:	aspell
# Date created:				7 December 1998
# Whom:					Josh Gilliam <josh@quick.net>
#
# $FreeBSD$
#

PORTNAME=	aspell
PORTVERSION=	0.60.6.1
CATEGORIES=	textproc
MASTER_SITES=	${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR=	aspell
.if defined(WITHOUT_DICTEN)
PKGNAMESUFFIX=	-without-dicten
.endif
DISTFILES=	${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}
EXTRACT_ONLY=	${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}

MAINTAINER=	thierry@FreeBSD.org
COMMENT=	Spelling checker with better suggestion logic than ispell

LICENSE=	LGPL21

GNU_CONFIGURE=	yes
CONFIGURE_ARGS=		--enable-dict-dir=${DATADIR}	\
			--enable-docdir=${DOCSDIR}	\
			--enable-static
PTHREAD_CFLAGS=		# Disable threading
PTHREAD_LIBS=		# libaspell may be used by unthreaded apps.
CPPFLAGS+=		-I${LOCALBASE}/include ${PTHREAD_CFLAGS}
LDFLAGS+=		-L${LOCALBASE}/lib ${PTHREAD_LIBS}
USE_GMAKE=		yes
USE_ICONV=		yes
USE_PERL5_BUILD=	yes
USE_LDCONFIG=		yes

SLAVEDIRS=		textproc/aspell-without-dicten

MAKE_ARGS=		NOPORTDOCS=${NOPORTDOCS}
VERINST=		${PORTVERSION:R:R}
SUB_FILES=		aspell.ver
PLIST_SUB=		VER=${VERINST}
SUB_LIST=		VERINST=${VERINST}

.if defined(WITHOUT_DICTEN)
CONFLICTS=		aspell-0.*
DICT_TARGET=
.else
VERDICT_EN=		6-en-7.1-0
DICT_SUFFIX=		.tar.bz2
MASTER_SITES+=		${MASTER_SITE_GNU:S|$|:dicten|}
MASTER_SITE_SUBDIR+=	aspell/dict/en/:dicten
DISTFILES+=		aspell${VERDICT_EN}${DICT_SUFFIX}:dicten
CONFLICTS=		aspell-without-dicten-0.*
DICT_TARGET=		inst-dicten
CONF_DICT_ENV=		ASPELL="${PREFIX}/bin/aspell"	\
			WORD_LIST_COMPRESS="${PREFIX}/bin/word-list-compress"
.endif

.if defined(WITH_ISPELL)
CONFLICTS+=		ispell* ??-ispell*
SCRIPTS=		ispell spell
PLIST_SUB+=		SCRIPTS=""
.else
PLIST_SUB+=		SCRIPTS="@comment "
.endif

.if defined(WITHOUT_NLS)
CONFIGURE_ARGS+=	--disable-nls
PLIST_SUB+=		NLS="@comment "
.else
USE_GETTEXT=		yes
PLIST_SUB+=		NLS=""
.endif

.if !defined(NOPORTDOCS)
MAN1=			aspell-import.1 aspell.1 pspell-config.1		\
			run-with-aspell.1 word-list-compress.1 prezip-bin.1
INFO=			aspell-dev aspell
.endif

# Does not link without at least -O
.if !defined(CFLAGS) || ${CFLAGS:M-O*} == ""
CFLAGS+=		-O
.endif

.include <bsd.port.pre.mk>

.if ${OSVERSION} < 602107
CONFIGURE_ARGS+=	--disable-wide-curses
.else
CONFIGURE_ARGS+=	--enable-curses=ncursesw
.endif

pre-everything::
	@${ECHO_MSG} ""
.if !defined(WITH_ISPELL)
	@${ECHO_MSG} "Define WITH_ISPELL to install Ispell's wrapper."
	@${ECHO_MSG} ""
.endif
.if !defined(WITHOUT_DICTEN)
	@${ECHO_MSG} "Define WITHOUT_DICTEN to not install english dictionary."
	@${ECHO_MSG} ""
.endif

post-extract:
.if !defined(WITHOUT_DICTEN)
	cd ${WRKDIR} && \
	${TAR} -xjf ${DISTDIR}/aspell${VERDICT_EN}${DICT_SUFFIX}
.endif

pre-configure:
	@cd ${WRKSRC} && ${ACLOCAL}

post-install:	${DICT_TARGET}
	${INSTALL_DATA} ${WRKDIR}/aspell.ver ${PREFIX}/etc
.if defined(WITH_ISPELL)
	${INSTALL_SCRIPT} ${SCRIPTS:S|^|${WRKSRC}/scripts/|} ${PREFIX}/bin
.endif
	@${ECHO_CMD} "@dirrm share/aspell" >> ${TMPPLIST}
	@${ECHO_CMD} "@dirrm lib/aspell-${VERINST}" >> ${TMPPLIST}

inst-dicten:
# Install en-aspell by default
.if !exists(${LOCALBASE}/lib/aspell-${VERINST}/en.dat) && !defined(WITHOUT_DICTEN)
	@${ECHO_MSG} "===>   Installing for en dictionaries"
	cd ${WRKDIR}/aspell${VERDICT_EN} &&		\
	 ${CONF_DICT_ENV} ./${CONFIGURE_SCRIPT} &&	\
	 ${GMAKE} ${INSTALL_TARGET}
	${SED} -e "s|%%VER%%|${VERINST}|" ${MASTERDIR}/pkg-plist.en	\
		>> ${TMPPLIST}
.endif

.include <bsd.port.post.mk>