1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-29 01:13:08 +00:00
freebsd-ports/textproc/aspell/Makefile
Sunpoet Po-Chuan Hsieh d5511738ac - Convert to new options helper
- Pet portlint: use a tab (not space) after a variable name
2013-11-15 10:08:03 +00:00

63 lines
1.5 KiB
Makefile

# Created by: Josh Gilliam <josh@quick.net>
# $FreeBSD$
PORTNAME= aspell
PORTVERSION= 0.60.6.1
PORTREVISION= 3
CATEGORIES= textproc
MASTER_SITES= ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= aspell
MAINTAINER= office@FreeBSD.org
COMMENT= Spelling checker with better suggestion logic than ispell
LICENSE= LGPL21
OPTIONS_DEFINE= NLS DOCS ISPELL
OPTIONS_SUB= yes
ISPELL_DESC= Install the ispell wrapper
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-dict-dir=${DATADIR} \
--enable-docdir=${DOCSDIR} \
--enable-curses=ncursesw \
--enable-static
USES= gmake iconv perl5 shebangfix
USE_LDCONFIG= yes
SHEBANG_FILES= scripts/aspell-import
VERINST= ${PORTVERSION:R:R}
SUB_FILES= aspell.ver
PLIST_SUB= VER=${VERINST}
SUB_LIST= VERINST=${VERINST}
INFO= aspell-dev aspell
NLS_USES= gettext
NLS_CONFIGURE_ARGS= --disable-nls
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MISPELL}
CONFLICTS+= ispell* ??-ispell*
SCRIPTS= ispell spell
.endif
# Does not link without at least -O
.if !defined(CFLAGS) || ${CFLAGS:M-O*} == ""
CFLAGS+= -O
.endif
post-install: ${DICT_TARGET}
@${INSTALL_DATA} ${WRKDIR}/aspell.ver ${STAGEDIR}${PREFIX}/etc
.if ${PORT_OPTIONS:MISPELL}
@${INSTALL_SCRIPT} ${SCRIPTS:S|^|${WRKSRC}/scripts/|} ${STAGEDIR}${PREFIX}/bin
.endif
@${ECHO_CMD} "@dirrm share/aspell" >> ${TMPPLIST}
@${ECHO_CMD} "@dirrm lib/aspell-${VERINST}" >> ${TMPPLIST}
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libaspell.so.16 \
${STAGEDIR}${PREFIX}/lib/libpspell.so.16
.include <bsd.port.mk>