summaryrefslogtreecommitdiff
path: root/textproc/ispell/Makefile
blob: 5263073d28d4463bb70b45899b499768d1bc57a5 (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
# New ports collection makefile for:    ispell
# http://fmg-www.cs.ucla.edu/fmg-members/geoff/ispell.html
# Version required:     3.1.20
# Date created:         6 November 1994
# Whom:                 jmz
#
# $FreeBSD$
#

DISTNAME=	ispell-3.1
PKGNAME=	ispell-3.1.20c
CATEGORIES=	textproc elisp
MASTER_SITES=	ftp://ftp.cs.ucla.edu/pub/ispell-3.1/ \
		ftp://ftp.kiarchive.ru/pub/unix/text/ispell/
DISTFILES=	ispell-3.1.20.tar.gz

PATCH_SITES=    ftp://ftp.kiarchive.ru/pub/unix/text/ispell/
PATCHFILES=     ispell-html-mode.patch

MAINTAINER=	jmz@FreeBSD.org

MAKE_FLAGS=	TMPDIR=${WRKDIR} -f
MAN1=		ispell.1 sq.1
MAN4=		ispell.4 english.4
MLINKS=		ispell.1 buildhash.1 ispell.1 findaffix.1 ispell.1 munchlist.1\
		ispell.1 tryaffix.1 sq.1 unsq.1

.if !defined(ISPELL_FR)
.if (make(patch) || make(configure) || make(build) || make (install))
.BEGIN:
	@${ECHO_MSG} '*********************************************************'
	@${ECHO_MSG} '* Note that you can build a french or british version   *'
	@${ECHO_MSG} '* by typing "make french" or "make british"             *'
	@${ECHO_MSG} '*********************************************************'
.endif
.else
EXTRA_DICT=	francais-IREQ-1.4.tar.gz
MASTER_SITES+=	ftp://ftp.robot.ireq.ca/pub/ispell/
DISTFILES+=	${EXTRA_DICT}
.endif

pre-extract:
.if !defined(LANG)
	@${ECHO_MSG} '******************************************************'
	@${ECHO_MSG} '* Note that you can build a british version by       *'
	@${ECHO_MSG} '* typing "make british" following a "make clean"     *'
	@${ECHO_MSG} '******************************************************'
.endif

pre-configure:
.if defined(EXTRA_DICT)
	@${ECHO} ${EXTRA_DICT} > ${WRKDIR}/extra_dict
.else
	@${ECHO} -n
.endif

post-configure:
	@${ECHO} "#define CFLAGS \"${CFLAGS}\"" >> ${WRKSRC}/local.h

british:
	@${ECHO_MSG} "Okay, making a british version of ispell...."
	@${MAKE} ${.MAKEFLAGS} LANG=british all

french:
	@${ECHO_MSG} "Okay, making a french/english version of ispell...."
	@${MAKE} ${.MAKEFLAGS} ISPELL_FR=yes

.include <bsd.port.mk>