1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-30 21:49:25 +00:00
freebsd-ports/textproc/aspell/Makefile
Sheldon Hearn e5ef3d6e60 Change MAINTAINER: josh@quick.net -> ade@lovett.com
The previous maintainer is unreachable (mail bounces).

PR:	13166
1999-08-19 12:35:41 +00:00

51 lines
1.4 KiB
Makefile

# New ports collection makefile for: aspell
# Version required: 0.27.2
# Date created: 7 December 1998
# Whom: Josh Gilliam <josh@quick.net>
#
# $Id: Makefile,v 1.6 1999/08/17 19:36:53 cpiazza Exp $
#
DISTNAME= aspell-.27.2
PKGNAME= aspell-0.27.2
CATEGORIES= textproc
MASTER_SITES= http://metalab.unc.edu/kevina/aspell/ \
ftp://ftp.kddlabs.co.jp/pub/Tools/aspell/ \
ftp://maroon.webmaster.com/pub/aspell/
MAINTAINER= ade@lovett.com
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 400004
BUILD_DEPENDS= g++295:${PORTSDIR}/lang/egcs
CC= gcc295
CXX= g++295
.endif
GNU_CONFIGURE= yes
CONFIGURE_ENV= CXXFLAGS="${CXXFLAGS} -I${WRKSRC}"
USE_GMAKE= yes
MAKE_ARGS= NOPORTDOCS=${NOPORTDOCS}
WORDLIST?= /usr/share/dict/words
.if !exists(${WORDLIST})
WORDLIST= ${WRKSRC}/english.wl
.endif
post-patch:
@${MV} ${WRKSRC}/Makefile.in ${WRKSRC}/Makefile.in.pre_sed
@${SED} -e 's%@WORDLIST@%${WORDLIST}%' \
< ${WRKSRC}/Makefile.in.pre_sed > ${WRKSRC}/Makefile.in
@${ECHO_MSG} "===> Using ${WORDLIST} as English word list."
pre-install:
@${RM} -f ${WRKSRC}/manual/man-html/C_Credits.html \
${WRKSRC}/manual/man-html/D_Glossary.html \
${WRKSRC}/manual/man-html/E_Copyright.html \
${WRKSRC}/manual/man-text/C_Credits.txt \
${WRKSRC}/manual/man-text/D_Glossary.txt \
${WRKSRC}/manual/man-text/E_Copyright.txt
.include <bsd.port.post.mk>