Update lang/gcc6-devel to version 6.2.1.s20160825
[dports.git] / textproc / spellutils / Makefile
1 # Created by: thierry@pompo.net
2 # $FreeBSD$
3
4 PORTNAME=       spellutils
5 PORTVERSION=    0.7
6 PORTREVISION=   3
7 CATEGORIES=     textproc
8 MASTER_SITES=   http://www.sourcefiles.org/Utilities/Text_Utilities/
9
10 MAINTAINER=     thierry@FreeBSD.org
11 COMMENT=        Programs used to isolate some parts or texts before spell-checking
12
13 LICENSE=        GPLv2
14
15 GNU_CONFIGURE=  yes
16 USES=           gettext tar:bzip2
17 CPPFLAGS+=      -I${LOCALBASE}/include
18 LIBS+=          -L${LOCALBASE}/lib -lintl
19
20 DOCS=           NEWS README
21 EXAMPLES=       aspell.sl
22
23 OPTIONS_DEFINE= DOCS EXAMPLES
24
25 .include <bsd.port.options.mk>
26
27 post-install:
28 .if ${PORT_OPTIONS:MDOCS}
29         ${MKDIR} ${STAGEDIR}${DOCSDIR}
30         ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
31 .for FILE in ${DOCS}
32         ${INSTALL_DATA} ${WRKSRC}/${FILE} ${STAGEDIR}${DOCSDIR}
33 .endfor
34 .endif
35 .if ${PORT_OPTIONS:MEXAMPLES}
36 .for FILE in ${EXAMPLES}
37         ${INSTALL_DATA} ${FILESDIR}/${FILE} ${STAGEDIR}${EXAMPLESDIR}
38 .endfor
39 .endif
40
41 .include <bsd.port.mk>