blob: 11aaad739154ab1bb8e11dc76d51ed62902440a1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# New ports collection makefile for: wdiff
# Date created: Sep 15, 1997
# Whom: Yoshiro MIHIRA <sanpei@yy.cs.keio.ac.jp>
#
# $FreeBSD$
#
PORTNAME= wdiff
PORTVERSION= 0.6.5
CATEGORIES= textproc
MASTER_SITES= ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= wdiff
MAINTAINER= sanpei@FreeBSD.org
COMMENT= Display word differences between text files
LICENSE= GPLv3
GNU_CONFIGURE= yes
MAN1= wdiff.1
INFO= wdiff
.if !defined(WITHOUT_NLS)
USE_GETTEXT= yes
CFLAGS+= -I${LOCALBASE}/include
PLIST_SUB+= NLS=""
.else
CONFIGURE_ARGS+= --disable-nls
PLIST_SUB+= NLS="@comment "
post-patch: .SILENT
${REINPLACE_CMD} '/^install-exec-local:/s/install-exec-localcharset//' \
${WRKSRC}/lib/Makefile.in
.endif
.include <bsd.port.mk>
|