f96d629351
If "HAVE_EGCS" is defined, aspell will not depend on the STL port and will use the natvie EGCS STL instead.
56 lines
1.5 KiB
Makefile
56 lines
1.5 KiB
Makefile
# New ports collection makefile for: aspell
|
|
# Version required: .24
|
|
# Date created: 7 December 1998
|
|
# Whom: Josh Gilliam <josh@quick.net>
|
|
#
|
|
# $Id: Makefile,v 1.1.1.1 1998/12/24 16:29:00 flathill Exp $
|
|
#
|
|
|
|
DISTNAME= aspell-.27
|
|
PKGNAME= aspell-0.27
|
|
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= josh@quick.net
|
|
|
|
.if defined(HAVE_EGCS)
|
|
BUILD_DEPENDS= eg++:${PORTSDIR}/lang/egcs
|
|
CC= egcc
|
|
CXX= eg++
|
|
.else
|
|
BUILD_DEPENDS= ${PREFIX}/include/stlport/hash_map:${PORTSDIR}/devel/stlport
|
|
.endif
|
|
|
|
GNU_CONFIGURE= yes
|
|
.if defined(HAVE_EGCS)
|
|
CONFIGURE_ENV= CXXFLAGS="${CXXFLAGS} -I${WRKSRC}"
|
|
.else
|
|
CONFIGURE_ENV= CXXFLAGS="${CXXFLAGS} -I${PREFIX}/include/stlport"
|
|
.endif
|
|
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.mk>
|