1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-16 07:58:04 +00:00
freebsd-ports/textproc/spellutils/Makefile
2014-04-27 20:21:47 +00:00

39 lines
839 B
Makefile

# Created by: thierry@pompo.net
# $FreeBSD$
PORTNAME= spellutils
PORTVERSION= 0.7
PORTREVISION= 3
CATEGORIES= textproc
MASTER_SITES= http://home.worldonline.dk/byrial/spellutils/
MAINTAINER= thierry@FreeBSD.org
COMMENT= Programs used to isolate some parts or texts before spell-checking
LICENSE= GPLv2
GNU_CONFIGURE= yes
USES= gettext tar:bzip2
CONFIGURE_ENV= LIBS='-L${LOCALBASE}/lib'
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -lintl
DOCS= NEWS README
EXAMPLES= aspell.sl
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${STAGEDIR}${DOCSDIR}
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
.for FILE in ${DOCS}
${INSTALL_DATA} ${WRKSRC}/${FILE} ${STAGEDIR}${DOCSDIR}
.endfor
.endif
.if !defined(NOPORTEXAMPLES)
.for FILE in ${EXAMPLES}
${INSTALL_DATA} ${FILESDIR}/${FILE} ${STAGEDIR}${EXAMPLESDIR}
.endfor
.endif
.include <bsd.port.mk>