View | Details | Raw Unified | Return to bug 215882 | Differences between
and this patch

Collapse All | Expand All

(-)Mk/Scripts/check-stagedir.sh (-1 lines)
Lines 12-18 Link Here
12
#  c. Files in plist which are owned by dependencies/MTREEs
12
#  c. Files in plist which are owned by dependencies/MTREEs
13
13
14
set -e
14
set -e
15
export LC_ALL=C
16
15
17
. ${SCRIPTSDIR}/functions.sh
16
. ${SCRIPTSDIR}/functions.sh
18
17
(-)Mk/Uses/elixir.mk (-1 / +1 lines)
Lines 44-50 ELIXIR_APP_ROOT?= ${PREFIX}/lib/elixir/l Link Here
44
ELIXIR_HIDDEN?=		"^${ELIXIR_APP_NAME}$$"
44
ELIXIR_HIDDEN?=		"^${ELIXIR_APP_NAME}$$"
45
ELIXIR_LOCALE?=		en_US.UTF-8
45
ELIXIR_LOCALE?=		en_US.UTF-8
46
MIX_CMD?=		${LOCALBASE}/bin/mix
46
MIX_CMD?=		${LOCALBASE}/bin/mix
47
MIX_COMPILE?=		${SETENV} ${MIX_ENV} LANG=${ELIXIR_LOCALE} MIX_ENV=${MIX_ENV_NAME} ELIXIR_HIDDEN=${ELIXIR_HIDDEN} ${MIX_CMD} ${MIX_TARGET}
47
MIX_COMPILE?=		${SETENV} ${MIX_ENV} LANG=${ELIXIR_LOCALE} LC_ALL=${ELIXIR_LOCALE} MIX_ENV=${MIX_ENV_NAME} ELIXIR_HIDDEN=${ELIXIR_HIDDEN} ${MIX_CMD} ${MIX_TARGET}
48
MIX_REWRITE?=
48
MIX_REWRITE?=
49
MIX_BUILD_DEPS?=
49
MIX_BUILD_DEPS?=
50
MIX_RUN_DEPS?=
50
MIX_RUN_DEPS?=
(-)Mk/Uses/gem.mk (-17 / +2 lines)
Lines 44-66 GEM_CACHE?= ${CACHE_DIR}/${GEM_NAME}.gem Link Here
44
GEMSPEC=	${PORTNAME}.gemspec
44
GEMSPEC=	${PORTNAME}.gemspec
45
GEM_ENV+=	RB_USER_INSTALL=yes
45
GEM_ENV+=	RB_USER_INSTALL=yes
46
46
47
.if defined(LANG) && !empty(LANG)
47
USE_LOCALE?=	en_US.UTF-8
48
GEM_ENV+=		LANG=${LANG}
48
GEM_ENV+=	LANG=${USE_LOCALE} LC_ALL=${USE_LOCALE}
49
.else
50
GEM_ENV+=		LANG=en_US.UTF-8
51
.endif
52
53
.if defined(LC_ALL) && !empty(LC_ALL)
54
GEM_ENV+=		LC_ALL=${LC_ALL}
55
.else
56
GEM_ENV+=		LC_ALL=en_US.UTF-8
57
.endif
58
59
.if defined(LC_CTYPE) && !empty(LC_CTYPE)
60
GEM_ENV+=		LC_CTYPE=${LC_CTYPE}
61
.else
62
GEM_ENV+=		LC_CTYPE=UTF-8
63
.endif
64
49
65
PLIST_SUB+=	PORTVERSION="${PORTVERSION}" \
50
PLIST_SUB+=	PORTVERSION="${PORTVERSION}" \
66
		REV="${RUBY_GEM}" \
51
		REV="${RUBY_GEM}" \
(-)Mk/bsd.commands.mk (-1 / +1 lines)
Lines 88-94 SU_CMD?= /usr/bin/su root -c Link Here
88
SYSCTL?=		/sbin/sysctl
88
SYSCTL?=		/sbin/sysctl
89
TAIL?=			/usr/bin/tail
89
TAIL?=			/usr/bin/tail
90
TEST?=			test	# Shell builtin
90
TEST?=			test	# Shell builtin
91
TR?=			LANG=C /usr/bin/tr
91
TR?=			/usr/bin/tr
92
TRUE?=			true	# Shell builtin
92
TRUE?=			true	# Shell builtin
93
UMOUNT?=		/sbin/umount
93
UMOUNT?=		/sbin/umount
94
UNAME?=			/usr/bin/uname
94
UNAME?=			/usr/bin/uname
(-)Mk/bsd.port.mk (-1 / +13 lines)
Lines 348-354 FreeBSD_MAINTAINER= portmgr@FreeBSD.org Link Here
348
#				  can be used in Makefiles by port maintainers
348
#				  can be used in Makefiles by port maintainers
349
#				  if a port breaks with it (it should be
349
#				  if a port breaks with it (it should be
350
#				  extremely rare).
350
#				  extremely rare).
351
#
351
##
352
# USE_LOCALE	- LANG and LC_ALL are set to the value of this variable in
353
#				  CONFIGURE_ENV and MAKE_ENV.  Example: USE_LOCALE=en_US.UTF-8
354
##
352
# USE_GCC		- If set, this port requires this version of gcc, either in
355
# USE_GCC		- If set, this port requires this version of gcc, either in
353
#				  the system or installed from a port.
356
#				  the system or installed from a port.
354
# USE_CSTD		- Override the default C language standard (gnu89, gnu99)
357
# USE_CSTD		- Override the default C language standard (gnu89, gnu99)
Lines 1030-1035 FreeBSD_MAINTAINER= portmgr@FreeBSD.org Link Here
1030
# Most port authors should not need to understand anything after this point.
1033
# Most port authors should not need to understand anything after this point.
1031
#
1034
#
1032
1035
1036
LANG=		C
1037
LC_ALL=		C
1038
.export		LANG LC_ALL
1039
1033
# These need to be absolute since we don't know how deep in the ports
1040
# These need to be absolute since we don't know how deep in the ports
1034
# tree we are and thus can't go relative.  They can, of course, be overridden
1041
# tree we are and thus can't go relative.  They can, of course, be overridden
1035
# by individual Makefiles or local system make configuration.
1042
# by individual Makefiles or local system make configuration.
Lines 1881-1886 ${_f}_ARGS:= ${f:C/^[^\:]*(\:|\$)//:S/,/ Link Here
1881
.include "${USESDIR}/${f:C/\:.*//}.mk"
1888
.include "${USESDIR}/${f:C/\:.*//}.mk"
1882
.endfor
1889
.endfor
1883
1890
1891
.if defined(USE_LOCALE)
1892
CONFIGURE_ENV+=	LANG=${USE_LOCALE} LC_ALL=${USE_LOCALE}
1893
MAKE_ENV+=		LANG=${USE_LOCALE} LC_ALL=${USE_LOCALE}
1894
.endif
1895
1884
.if defined(USE_XORG)
1896
.if defined(USE_XORG)
1885
# Add explicit X options to avoid problems with false positives in configure
1897
# Add explicit X options to avoid problems with false positives in configure
1886
.if defined(GNU_CONFIGURE)
1898
.if defined(GNU_CONFIGURE)
(-)archivers/libzip/Makefile (-1 lines)
Lines 15-21 LICENSE_FILE= ${WRKSRC}/LICENSE Link Here
15
CPE_VENDOR=	nih
15
CPE_VENDOR=	nih
16
16
17
GNU_CONFIGURE=	yes
17
GNU_CONFIGURE=	yes
18
MAKE_ENV=	LC_ALL="C"
19
USES=		cpe libtool pathfix perl5 tar:xz
18
USES=		cpe libtool pathfix perl5 tar:xz
20
USE_PERL5=	build
19
USE_PERL5=	build
21
USE_LDCONFIG=	yes
20
USE_LDCONFIG=	yes
(-)audio/denemo/Makefile (-1 lines)
Lines 23-29 LIB_DEPENDS= libaubio.so:audio/aubio \ Link Here
23
		libfftw3.so:math/fftw3
23
		libfftw3.so:math/fftw3
24
RUN_DEPENDS=	xdg-open:devel/xdg-utils
24
RUN_DEPENDS=	xdg-open:devel/xdg-utils
25
25
26
EXTRACT_CMD=	${SETENV} LC_ALL=en_US.UTF-8 ${TAR}
27
EXTRACT_BEFORE_ARGS=\
26
EXTRACT_BEFORE_ARGS=\
28
		-s '!\(/Clarinet in B\).*\(\.denemo\)$$!\1b\2!p' -xf
27
		-s '!\(/Clarinet in B\).*\(\.denemo\)$$!\1b\2!p' -xf
29
28
(-)audio/libamrnb/Makefile (-2 lines)
Lines 29-36 RESTRICTED= unclear legal status, probab Link Here
29
USES=		gmake tar:bzip2 libtool
29
USES=		gmake tar:bzip2 libtool
30
PORTDOCS=	AUTHORS COPYING ChangeLog NEWS README TODO readme.txt
30
PORTDOCS=	AUTHORS COPYING ChangeLog NEWS README TODO readme.txt
31
GNU_CONFIGURE=	yes
31
GNU_CONFIGURE=	yes
32
CONFIGURE_ENV+=	LANG=C
33
MAKE_ENV+=	LANG=C
34
INSTALL_TARGET=	install-strip
32
INSTALL_TARGET=	install-strip
35
SUB_FILES=	pkg-message
33
SUB_FILES=	pkg-message
36
USE_LDCONFIG=	yes
34
USE_LDCONFIG=	yes
(-)audio/libamrwb/Makefile (-2 lines)
Lines 28-35 RESTRICTED= unclear legal status, probab Link Here
28
USES=		gmake tar:bzip2 libtool
28
USES=		gmake tar:bzip2 libtool
29
PORTDOCS=	AUTHORS COPYING ChangeLog NEWS README TODO readme.txt
29
PORTDOCS=	AUTHORS COPYING ChangeLog NEWS README TODO readme.txt
30
GNU_CONFIGURE=	yes
30
GNU_CONFIGURE=	yes
31
CONFIGURE_ENV+=	LANG=C
32
MAKE_ENV+=	LANG=C
33
INSTALL_TARGET=	install-strip
31
INSTALL_TARGET=	install-strip
34
SUB_FILES=	pkg-message
32
SUB_FILES=	pkg-message
35
USE_LDCONFIG=	yes
33
USE_LDCONFIG=	yes
(-)base/gcc/Makefile (-2 lines)
Lines 41-48 PLIST_SUB= TARGETARCH=${TARGET_ARCH} \ Link Here
41
TARGET_ARCH=	${CROSS_TOOLCHAIN:C,-.*$,,}
41
TARGET_ARCH=	${CROSS_TOOLCHAIN:C,-.*$,,}
42
EXTRA_PATCHES+= ${.CURDIR}/../../devel/powerpc64-gcc/files/freebsd-format-extensions
42
EXTRA_PATCHES+= ${.CURDIR}/../../devel/powerpc64-gcc/files/freebsd-format-extensions
43
43
44
CONFIGURE_ENV=	LC_ALL=C
45
MAKE_ENV=	LC_ALL=C
46
GNU_CONFIGURE=	yes
44
GNU_CONFIGURE=	yes
47
CONFIGURE_OUTSOURCE=	yes
45
CONFIGURE_OUTSOURCE=	yes
48
CONFIGURE_ARGS+=--target=${GCC_TARGET} --disable-nls \
46
CONFIGURE_ARGS+=--target=${GCC_TARGET} --disable-nls \
(-)cad/astk-serveur/Makefile (-6 / +6 lines)
Lines 56-61 C_SCRIPTS= bin/astk bin/bsf Link Here
56
tools_dir=	${LOCALBASE}/aster/outils
56
tools_dir=	${LOCALBASE}/aster/outils
57
conf_dir=	${WRKSRC}/etc/astkrc
57
conf_dir=	${WRKSRC}/etc/astkrc
58
58
59
.if defined(LANG) && ${LANG:Mfr*} != ""
60
ASTK_LANG=	FR
61
.else
62
ASTK_LANG=	ENG
63
.endif
64
59
.include <bsd.port.pre.mk>
65
.include <bsd.port.pre.mk>
60
66
61
WRKCONF=	${WRKDIR}/${PORTNAME}-${PORTVERSION:R}/configuration
67
WRKCONF=	${WRKDIR}/${PORTNAME}-${PORTVERSION:R}/configuration
Lines 164-175 HOST_NAME= this-hostname Link Here
164
DOMAIN_NAME=	your.domain-name
170
DOMAIN_NAME=	your.domain-name
165
.endif
171
.endif
166
172
167
.if defined(LANG) && ${LANG:Mfr*} != ""
168
ASTK_LANG=	FR
169
.else
170
ASTK_LANG=	ENG
171
.endif
172
173
pre-configure:
173
pre-configure:
174
	${RM} ${PATCH2RM:C|^|${WRKSRC}/|:C|$|.orig|}
174
	${RM} ${PATCH2RM:C|^|${WRKSRC}/|:C|$|.orig|}
175
175
(-)cad/jspice3/files/patch-build (-9 lines)
Lines 1-14 Link Here
1
--- build.orig	2015-11-05 18:10:02 UTC
1
--- build.orig	2015-11-05 18:10:02 UTC
2
+++ build
2
+++ build
3
@@ -22,7 +22,7 @@ if [ -d conf/unixconf ]; then
4
         echo '#######################################################################'> conf/mkheader.in
5
         echo '####### Makefile generated by build script ############################'>> conf/mkheader.in
6
         echo VERSION = $version>> conf/mkheader.in
7
-        echo DATE = `/bin/date`>> conf/mkheader.in
8
+        echo DATE = `/usr/bin/env LANG=C /bin/date`>> conf/mkheader.in
9
         echo '#######################################################################'>> conf/mkheader.in
10
         cat conf/unixconf/mkheader.0 >> conf/mkheader.in
11
     else
12
@@ -51,7 +51,7 @@ if [ -f conf/util/configure ]; then
3
@@ -51,7 +51,7 @@ if [ -f conf/util/configure ]; then
13
     if [ `uname -s` = Darwin -a -d /opt/X11 ]; then
4
     if [ `uname -s` = Darwin -a -d /opt/X11 ]; then
14
         util/configure --x-includes=/opt/X11/include --x-libraries=/opt/X11/lib -srcdir .
5
         util/configure --x-includes=/opt/X11/include --x-libraries=/opt/X11/lib -srcdir .
(-)chinese/big5width/Makefile (-7 / +7 lines)
Lines 8-22 MASTER_SITES= # none Link Here
8
DISTFILES=	# none
8
DISTFILES=	# none
9
9
10
MAINTAINER=	ports@FreeBSD.org
10
MAINTAINER=	ports@FreeBSD.org
11
COMMENT=	Unicode width dirty fix for Big5 font (${LANG} locale)
11
COMMENT=	Unicode width dirty fix for Big5 font (${LOCALE} locale)
12
12
13
BASELOCALEDIR=	/usr/share/locale
13
BASELOCALEDIR=	/usr/share/locale
14
LOCALEDIR=	${PREFIX}/share/locale
14
LOCALEDIR=	${PREFIX}/share/locale
15
LANG=		zh_TW.UTF-8
15
LOCALE=		zh_TW.UTF-8
16
16
17
PLIST_SUB=	BASELOCALEDIR=${BASELOCALEDIR} \
17
PLIST_SUB=	BASELOCALEDIR=${BASELOCALEDIR} \
18
		LOCALEDIR=${LOCALEDIR} \
18
		LOCALEDIR=${LOCALEDIR} \
19
		LANG=${LANG}
19
		LOCALE=${LOCALE}
20
20
21
.include <bsd.port.pre.mk>
21
.include <bsd.port.pre.mk>
22
22
Lines 29-41 IGNORE= need to build this port with th Link Here
29
do-extract:
29
do-extract:
30
	@${MKDIR} ${WRKDIR}
30
	@${MKDIR} ${WRKDIR}
31
	@${CP} -R ${SRCDIR} ${WRKSRC}
31
	@${CP} -R ${SRCDIR} ${WRKSRC}
32
	@${CP} ${WRKSRC}/UTF-8.src ${WRKSRC}/${LANG}.src
32
	@${CP} ${WRKSRC}/UTF-8.src ${WRKSRC}/${LOCALE}.src
33
33
34
do-build:
34
do-build:
35
	/usr/bin/mklocale -o ${WRKSRC}/LC_CTYPE ${WRKSRC}/${LANG}.src
35
	/usr/bin/mklocale -o ${WRKSRC}/LC_CTYPE ${WRKSRC}/${LOCALE}.src
36
36
37
do-install:
37
do-install:
38
	${MKDIR} ${STAGEDIR}${LOCALEDIR}/${LANG}
38
	${MKDIR} ${STAGEDIR}${LOCALEDIR}/${LOCALE}
39
	${INSTALL_DATA} ${WRKSRC}/LC_CTYPE ${STAGEDIR}${LOCALEDIR}/${LANG}
39
	${INSTALL_DATA} ${WRKSRC}/LC_CTYPE ${STAGEDIR}${LOCALEDIR}/${LOCALE}
40
40
41
.include <bsd.port.post.mk>
41
.include <bsd.port.post.mk>
(-)chinese/big5width/pkg-plist (-3 / +3 lines)
Lines 1-3 Link Here
1
share/locale/%%LANG%%/LC_CTYPE
1
share/locale/%%LOCALE%%/LC_CTYPE
2
@unexec ln -fs ../UTF-8/LC_CTYPE %%BASELOCALEDIR%%/%%LANG%%/LC_CTYPE
2
@unexec ln -fs ../UTF-8/LC_CTYPE %%BASELOCALEDIR%%/%%LOCALE%%/LC_CTYPE
3
@exec ln -fs %D/share/locale/%%LANG%%/LC_CTYPE %%BASELOCALEDIR%%/%%LANG%%/LC_CTYPE
3
@exec ln -fs %D/share/locale/%%LOCALE%%/LC_CTYPE %%BASELOCALEDIR%%/%%LOCALE%%/LC_CTYPE
(-)devel/cutter/Makefile (-3 / +1 lines)
Lines 20-34 USES= gettext gmake libtool pathfix pkg Link Here
20
USE_GNOME=	intlhack glib20 gtk20
20
USE_GNOME=	intlhack glib20 gtk20
21
USE_LDCONFIG=	yes
21
USE_LDCONFIG=	yes
22
INSTALL_TARGET=	install-strip
22
INSTALL_TARGET=	install-strip
23
TEST_TARGET=	check
23
24
24
OPTIONS_DEFINE=	GOFFICE SOUP LCOV
25
OPTIONS_DEFINE=	GOFFICE SOUP LCOV
25
GOFFICE_DESC=	GOffice support
26
GOFFICE_DESC=	GOffice support
26
SOUP_DESC=	libsoup support
27
SOUP_DESC=	libsoup support
27
LCOV_DESC=	Force dependency on lcov
28
LCOV_DESC=	Force dependency on lcov
28
29
29
regression-test: build
30
	@${SETENV} LC_ALL=C ${MAKE_ENV} ${MAKE_CMD} -C ${WRKSRC} check
31
32
.include <bsd.port.options.mk>
30
.include <bsd.port.options.mk>
33
31
34
.if ${PORT_OPTIONS:MGOFFICE}
32
.if ${PORT_OPTIONS:MGOFFICE}
(-)devel/libc++/Makefile (-1 / +1 lines)
Lines 37-43 CMAKE_ARGS= -DLIBCXX_CXX_ABI=libcxxrt -D Link Here
37
37
38
.if !defined(SVN_REV)
38
.if !defined(SVN_REV)
39
.if defined(BOOTSTRAP)
39
.if defined(BOOTSTRAP)
40
SVN_REV!=       LC_ALL=C svn info http://llvm.org/svn/llvm-project/ | ${GREP} Revision | cut -d' ' -f2
40
SVN_REV!=       svn info http://llvm.org/svn/llvm-project/ | ${GREP} Revision | cut -d' ' -f2
41
.else
41
.else
42
.include "Makefile.svn_rev"
42
.include "Makefile.svn_rev"
43
.endif
43
.endif
(-)devel/libedit/Makefile (-1 lines)
Lines 22-28 GNU_CONFIGURE= yes Link Here
22
USE_LDCONFIG=	yes
22
USE_LDCONFIG=	yes
23
INSTALL_TARGET=	install-strip
23
INSTALL_TARGET=	install-strip
24
CONFIGURE_ARGS=	--enable-widec
24
CONFIGURE_ARGS=	--enable-widec
25
MAKE_ENV=	LC_ALL=C
26
LDFLAGS+=	-L${LOCALBASE}/lib
25
LDFLAGS+=	-L${LOCALBASE}/lib
27
26
28
CONFLICTS_INSTALL=	editline-*
27
CONFLICTS_INSTALL=	editline-*
(-)devel/libopenbsd/Makefile (-2 / +1 lines)
Lines 24-31 USE_LDCONFIG= yes Link Here
24
.if defined(BOOTSTRAP)
24
.if defined(BOOTSTRAP)
25
# XXX SED and _MASTER_SITES_svn aren't defined yet
25
# XXX SED and _MASTER_SITES_svn aren't defined yet
26
SED?=		/usr/bin/sed
26
SED?=		/usr/bin/sed
27
SVN_REV!=	${SETENV} LC_ALL=C svn info \
27
SVN_REV!=	svn info ${MASTER_SITES:M*\:svn:S/:svn//} | \
28
			${MASTER_SITES:M*\:svn:S/:svn//} | \
29
		${SED} -n 's/^Last Changed Rev: //p'
28
		${SED} -n 's/^Last Changed Rev: //p'
30
PORTVERSION:=	r${SVN_REV}
29
PORTVERSION:=	r${SVN_REV}
31
.else
30
.else
(-)devel/libpci/Makefile (-1 lines)
Lines 18-24 RUN_DEPENDS= ${LOCALBASE}/share/pciids/p Link Here
18
18
19
ALL_TARGET=	lib/libpci.a
19
ALL_TARGET=	lib/libpci.a
20
CPPFLAGS+=	-fPIC
20
CPPFLAGS+=	-fPIC
21
MAKE_ENV=	LANG=C
22
USE_LDCONFIG=	yes
21
USE_LDCONFIG=	yes
23
USES=		gmake tar:xz
22
USES=		gmake tar:xz
24
23
(-)devel/libublio/Makefile (-1 / +1 lines)
Lines 36-42 post-extract: Link Here
36
# this pre-install is only for debugging pointyhat failures
36
# this pre-install is only for debugging pointyhat failures
37
pre-install:
37
pre-install:
38
	@${ECHO_CMD} "===> Environment:"
38
	@${ECHO_CMD} "===> Environment:"
39
	@${SETENV} | ${SETENV} LC_ALL=C ${SORT} -f
39
	@${SETENV} | ${SORT} -f
40
	@${ECHO_CMD} "===> Makefiles used:"
40
	@${ECHO_CMD} "===> Makefiles used:"
41
	@${ECHO_CMD} ${.MAKEFILE_LIST}
41
	@${ECHO_CMD} ${.MAKEFILE_LIST}
42
42
(-)devel/powerpc64-gcc/Makefile (-2 lines)
Lines 38-45 EXTRA_PATCHES+= ${FILESDIR}/freebsd-form Link Here
38
.endif
38
.endif
39
.endif
39
.endif
40
40
41
CONFIGURE_ENV=	LC_ALL=C
42
MAKE_ENV=	LC_ALL=C
43
GNU_CONFIGURE=	yes
41
GNU_CONFIGURE=	yes
44
CONFIGURE_OUTSOURCE=	yes
42
CONFIGURE_OUTSOURCE=	yes
45
CONFIGURE_ARGS+=--target=${GCC_TARGET} --disable-nls --enable-languages=c,c++ \
43
CONFIGURE_ARGS+=--target=${GCC_TARGET} --disable-nls --enable-languages=c,c++ \
(-)devel/riscv64-gcc/Makefile (-2 lines)
Lines 26-33 USES= iconv gmake libtool makeinfo Link Here
26
26
27
GCC_TARGET=	${PKGNAMEPREFIX}unknown-${OPSYS:tl}${OSREL}
27
GCC_TARGET=	${PKGNAMEPREFIX}unknown-${OPSYS:tl}${OSREL}
28
28
29
CONFIGURE_ENV=	LC_ALL=C
30
MAKE_ENV=	LC_ALL=C
31
GNU_CONFIGURE=	yes
29
GNU_CONFIGURE=	yes
32
CONFIGURE_OUTSOURCE=	yes
30
CONFIGURE_OUTSOURCE=	yes
33
CONFIGURE_ARGS=	--target=${GCC_TARGET} \
31
CONFIGURE_ARGS=	--target=${GCC_TARGET} \
(-)devel/tcllib/Makefile (-5 / +3 lines)
Lines 21-30 OPTIONS_SUB= yes Link Here
21
USE_GITHUB=	yes
21
USE_GITHUB=	yes
22
GH_ACCOUNT=	tcltk
22
GH_ACCOUNT=	tcltk
23
USES+=		tcl
23
USES+=		tcl
24
USE_LOCALE=	en_US.UTF-8
24
GNU_CONFIGURE=	yes
25
GNU_CONFIGURE=	yes
25
CONFIGURE_ENV+=	ac_cv_path_tclsh="${TCLSH}"
26
CONFIGURE_ENV+=	ac_cv_path_tclsh="${TCLSH}"
26
MAKE_ENV+=	LANG=C
27
TEST_TARGET=	test
27
TEST_TARGET=	do-test
28
TEST_ENV=	${MAKE_ENV} DISPLAY= TZ=utc
28
PORTDOCS=	*
29
PORTDOCS=	*
29
30
30
INSTALL_ARGS=	-pkgs -pkg-path ${STAGEDIR}${PREFIX}/lib/tcllib \
31
INSTALL_ARGS=	-pkgs -pkg-path ${STAGEDIR}${PREFIX}/lib/tcllib \
Lines 104-110 do-install: Link Here
104
	cd ${WRKSRC} && ${TCLSH} ./installer.tcl ${INSTALL_ARGS}
105
	cd ${WRKSRC} && ${TCLSH} ./installer.tcl ${INSTALL_ARGS}
105
.endif
106
.endif
106
107
107
do-test:
108
	cd ${WRKSRC} && ${SETENV} LANG=C LC_ALL=en_US.UTF-8 DISPLAY= TZ=utc ${MAKE} test
109
110
.include <bsd.port.mk>
108
.include <bsd.port.mk>
(-)dns/maradns/Makefile (-1 lines)
Lines 17-23 DEADWOOD_VER= 3.2.09 Link Here
17
17
18
REINPLACE_ARGS=	-i ""
18
REINPLACE_ARGS=	-i ""
19
MAKE_ENV=	FLAGS="${CFLAGS}"
19
MAKE_ENV=	FLAGS="${CFLAGS}"
20
CONFIGURE_ENV=	LANG=
21
20
22
HAS_CONFIGURE=	yes
21
HAS_CONFIGURE=	yes
23
USE_RC_SUBR=	${PORTNAME} zoneserver Deadwood
22
USE_RC_SUBR=	${PORTNAME} zoneserver Deadwood
(-)editors/emacs/Makefile (-2 lines)
Lines 35-42 CONFIGURE_ARGS= --localstatedir=/var \ Link Here
35
35
36
PLIST_SUB=	EMACS_VER=${EMACS_VER} GNU_HOST=${CONFIGURE_TARGET}
36
PLIST_SUB=	EMACS_VER=${EMACS_VER} GNU_HOST=${CONFIGURE_TARGET}
37
37
38
MAKE_ENV=	LC_ALL=C
39
40
INFO=	ada-mode auth autotype bovine calc ccmode cl dbus dired-x ebrowse ede	\
38
INFO=	ada-mode auth autotype bovine calc ccmode cl dbus dired-x ebrowse ede	\
41
	ediff edt efaq eieio eintr elisp emacs emacs-gnutls emacs-mime epa erc	\
39
	ediff edt efaq eieio eintr elisp emacs emacs-gnutls emacs-mime epa erc	\
42
	ert eshell eudc eww flymake forms gnus htmlfontify idlwave ido info	\
40
	ert eshell eudc eww flymake forms gnus htmlfontify idlwave ido info	\
(-)editors/emacs-devel/Makefile (-4 / +1 lines)
Lines 29-41 CPE_VENDOR= gnu Link Here
29
SUB_FILES=	sources.el
29
SUB_FILES=	sources.el
30
SUB_LIST=	EMACS_VER=${EMACS_VER}
30
SUB_LIST=	EMACS_VER=${EMACS_VER}
31
31
32
CONFIGURE_ARGS=	--localstatedir=/var \
32
CONFIGURE_ARGS=	--with-gameuser=games:games
33
		--with-gameuser=games:games
34
33
35
PLIST_SUB=	EMACS_VER=${EMACS_VER} GNU_HOST=${CONFIGURE_TARGET}
34
PLIST_SUB=	EMACS_VER=${EMACS_VER} GNU_HOST=${CONFIGURE_TARGET}
36
35
37
MAKE_ENV=	LC_ALL=C
38
39
INFO=	ada-mode auth autotype bovine calc ccmode cl dbus dired-x ebrowse ede	\
36
INFO=	ada-mode auth autotype bovine calc ccmode cl dbus dired-x ebrowse ede	\
40
	ediff edt efaq eieio eintr elisp emacs emacs-gnutls emacs-mime epa erc	\
37
	ediff edt efaq eieio eintr elisp emacs emacs-gnutls emacs-mime epa erc	\
41
	ert eshell eudc eww flymake forms gnus htmlfontify idlwave ido info	\
38
	ert eshell eudc eww flymake forms gnus htmlfontify idlwave ido info	\
(-)editors/libreoffice/Makefile (-1 / +1 lines)
Lines 260-266 CONFIGURE_ENV= DMAKE=${LOCALBASE}/bin/dm Link Here
260
260
261
MAKE_ENV+=	CXXFLAGS_WARN="${CXXFLAGS_WARN}"
261
MAKE_ENV+=	CXXFLAGS_WARN="${CXXFLAGS_WARN}"
262
MAKE_ENV+=	GNUSED=${LOCALBASE}/bin/gsed
262
MAKE_ENV+=	GNUSED=${LOCALBASE}/bin/gsed
263
MAKE_ENV+=	DISPLAY= LANG=C LC_ALL=C
263
MAKE_ENV+=	DISPLAY=
264
264
265
_MAKE_JOBS=	#
265
_MAKE_JOBS=	#
266
266
(-)editors/libreoffice4/Makefile (-1 lines)
Lines 349-355 LDFLAGS+= -L${LOCALBASE}/lib Link Here
349
MAKE_ENV+=	ENVCFLAGS="${CFLAGS}" ENVCFLAGSCXX="${CXXFLAGS}"
349
MAKE_ENV+=	ENVCFLAGS="${CFLAGS}" ENVCFLAGSCXX="${CXXFLAGS}"
350
MAKE_ENV+=	ENVLINKFLAGS="${LDFLAGS}"
350
MAKE_ENV+=	ENVLINKFLAGS="${LDFLAGS}"
351
MAKE_ENV+=	GNUSED=${LOCALBASE}/bin/gsed
351
MAKE_ENV+=	GNUSED=${LOCALBASE}/bin/gsed
352
MAKE_ENV+=	LANG=C LC_ALL=C
353
352
354
pre-configure:
353
pre-configure:
355
	@${TOUCH} ${WRKSRC}/autogen.lastrun
354
	@${TOUCH} ${WRKSRC}/autogen.lastrun
(-)editors/openoffice-4/Makefile (-1 / +1 lines)
Lines 400-406 do-build: Link Here
400
	fi ;								  \
400
	fi ;								  \
401
	cd ${WRKSRC}/instsetoo_native ;					  \
401
	cd ${WRKSRC}/instsetoo_native ;					  \
402
	. ../${FREEBSD_ENV_SET} ;					  \
402
	. ../${FREEBSD_ENV_SET} ;					  \
403
	LANG=C LC_ALL=C build.pl --all -P$${numproc} -- -P$${dmproc}
403
	build.pl --all -P$${numproc} -- -P$${dmproc}
404
404
405
do-install:
405
do-install:
406
	@${MKDIR} ${STAGEDIR}${PRINSTALLATION_BASEDIR} \
406
	@${MKDIR} ${STAGEDIR}${PRINSTALLATION_BASEDIR} \
(-)editors/openoffice-devel/Makefile (-1 / +1 lines)
Lines 409-415 do-build: Link Here
409
	fi ;								  \
409
	fi ;								  \
410
	cd ${WRKSRC}/instsetoo_native ;					  \
410
	cd ${WRKSRC}/instsetoo_native ;					  \
411
	. ../${FREEBSD_ENV_SET} ;					  \
411
	. ../${FREEBSD_ENV_SET} ;					  \
412
	LANG=C LC_ALL=C build.pl --all -P$${numproc} -- -P$${dmproc}
412
	build.pl --all -P$${numproc} -- -P$${dmproc}
413
413
414
do-install:
414
do-install:
415
	@${MKDIR} ${STAGEDIR}${PRINSTALLATION_BASEDIR} \
415
	@${MKDIR} ${STAGEDIR}${PRINSTALLATION_BASEDIR} \
(-)editors/tea/Makefile (-2 / +1 lines)
Lines 19-29 OPTIONS_DEFAULT= ASPELL Link Here
19
19
20
USES=		pkgconfig:build qmake tar:bzip2
20
USES=		pkgconfig:build qmake tar:bzip2
21
USE_GL=		gl
21
USE_GL=		gl
22
USE_LOCALE=	en_US.UTF-8
22
USE_QT4=	corelib gui moc_build network rcc_build
23
USE_QT4=	corelib gui moc_build network rcc_build
23
24
24
LDFLAGS+=	-lz
25
LDFLAGS+=	-lz
25
MAKE_ENV+=	LANG=en_US.UTF-8
26
CONFIGURE_ENV+=	LANG=en_US.UTF-8
27
PLIST_FILES=	bin/tea share/pixmaps/tea_icon_v2.png
26
PLIST_FILES=	bin/tea share/pixmaps/tea_icon_v2.png
28
PORTDOCS=	*
27
PORTDOCS=	*
29
28
(-)editors/yudit/Makefile (-2 lines)
Lines 15-22 CONFLICTS= netatalk-[0-9]* Link Here
15
USE_XORG=	x11
15
USE_XORG=	x11
16
USES=		gmake
16
USES=		gmake
17
GNU_CONFIGURE=	yes
17
GNU_CONFIGURE=	yes
18
CONFIGURE_ENV=	LC_ALL=
19
MAKE_ENV=	LC_ALL=
20
MAKE_JOBS_UNSAFE=	yes
18
MAKE_JOBS_UNSAFE=	yes
21
19
22
PORTDATA=	*
20
PORTDATA=	*
(-)emulators/tme/Makefile (-1 lines)
Lines 20-26 USE_GNOME= gdkpixbuf2 gtk20 Link Here
20
USE_LDCONFIG=	yes
20
USE_LDCONFIG=	yes
21
GNU_CONFIGURE=	yes
21
GNU_CONFIGURE=	yes
22
CONFIGURE_ARGS=	--disable-static --disable-warnings
22
CONFIGURE_ARGS=	--disable-static --disable-warnings
23
MAKE_ENV=	LANG=C
24
MAKE_JOBS_UNSAFE=yes
23
MAKE_JOBS_UNSAFE=yes
25
INSTALL_TARGET=	install-strip
24
INSTALL_TARGET=	install-strip
26
25
(-)ftp/bsdftpd-ssl/files/patch-contrib-libedit-makelist (-13 lines)
Lines 1-13 Link Here
1
--- contrib/libedit/makelist.orig	2001-12-16 23:55:26 UTC
2
+++ contrib/libedit/makelist
3
@@ -128,8 +128,8 @@ case $FLAG in
4
 	    printf("#endif /* _h_help_c */\n");
5
 	}' /dev/null;;
6
 -fh)
7
-    cat $FILES | $AWK '/el_action_t/ { print $3 }' | \
8
-    sort | tr '[a-z]' '[A-Z]' | $AWK '
9
+    env LANG=C cat $FILES | $AWK '/el_action_t/ { print $3 }' | \
10
+    sort | env LANG=C tr '[a-z]' '[A-Z]' | $AWK '
11
 	BEGIN { 
12
 	    printf("/* Automatically generated file, do not edit */\n");
13
 	    printf("#ifndef _h_fcns_c\n#define _h_fcns_c\n");
(-)ftp/curl/Makefile (-1 lines)
Lines 49-55 CONFIGURE_ENV= LOCALBASE=${LOCALBASE} \ Link Here
49
		ac_cv_func_SSLv2_client_method=no
49
		ac_cv_func_SSLv2_client_method=no
50
GNU_CONFIGURE=	yes
50
GNU_CONFIGURE=	yes
51
INSTALL_TARGET=	install-strip
51
INSTALL_TARGET=	install-strip
52
TEST_ENV=	${MAKE_ENV} LC_ALL=C
53
TEST_TARGET=	test
52
TEST_TARGET=	test
54
USE_LDCONFIG=	yes
53
USE_LDCONFIG=	yes
55
USE_PERL5=	build
54
USE_PERL5=	build
(-)ftp/ftpcopy/files/patch-src_typesize.sh (-1 / +1 lines)
Lines 5-11 Link Here
5
       else
5
       else
6
 	x=$?
6
 	x=$?
7
-	p=`echo $i | sed 's/ /_/g' | tr "[a-z]]" "[A-Z]"`
7
-	p=`echo $i | sed 's/ /_/g' | tr "[a-z]]" "[A-Z]"`
8
+	p=`echo $i | sed 's/ /_/g' | env LC_COLLATE=C tr "[:lower:]" "[:upper:]"`
8
+	p=`echo $i | sed 's/ /_/g' | tr "[:lower:]" "[:upper:]"`
9
 	echo "#define SIZEOF_$p $x /* systype-info */"
9
 	echo "#define SIZEOF_$p $x /* systype-info */"
10
       fi
10
       fi
11
     fi
11
     fi
(-)ftp/pure-ftpd/Makefile (-3 / +3 lines)
Lines 38-44 VIRTUALCHROOT_DESC= Follow symlinks outs Link Here
38
CONFIGURE_ARGS=	--sysconfdir=${PREFIX}/etc \
38
CONFIGURE_ARGS=	--sysconfdir=${PREFIX}/etc \
39
		--with-altlog --with-cookie --with-diraliases \
39
		--with-altlog --with-cookie --with-diraliases \
40
		--with-everything --with-extauth --with-ftpwho \
40
		--with-everything --with-extauth --with-ftpwho \
41
		--with-language=${LANG} --with-paranoidmsg --with-puredb \
41
		--with-language=${LANGUAGE} --with-paranoidmsg --with-puredb \
42
		--with-quotas --with-ratios
42
		--with-quotas --with-ratios
43
GNU_CONFIGURE=	yes
43
GNU_CONFIGURE=	yes
44
USE_PERL5=	run
44
USE_PERL5=	run
Lines 59-65 SUB_LIST= PAM_DIR=${PAM_DIR} PAM_TARGET= Link Here
59
SHEBANG_FILES=	contrib/pure-stat.pl contrib/pure-vpopauth.pl
59
SHEBANG_FILES=	contrib/pure-stat.pl contrib/pure-vpopauth.pl
60
60
61
CONTRIB=	pure-stat.pl pure-vpopauth.pl xml_python_processors.txt
61
CONTRIB=	pure-stat.pl pure-vpopauth.pl xml_python_processors.txt
62
LANG?=		english
62
LANGUAGE?=	english
63
PAM_DIR?=	${EXAMPLESDIR}/pam
63
PAM_DIR?=	${EXAMPLESDIR}/pam
64
PAM_TARGET?=	pure-ftpd
64
PAM_TARGET?=	pure-ftpd
65
PAM_TEMPL?=	${FILESDIR}/pam.conf.5
65
PAM_TEMPL?=	${FILESDIR}/pam.conf.5
Lines 99-105 CONFIGURE_ARGS+=ac_cv_lib_iconv_iconv_op Link Here
99
pre-fetch:
99
pre-fetch:
100
	@${ECHO_MSG} "You can use the following additional options:"
100
	@${ECHO_MSG} "You can use the following additional options:"
101
	@${ECHO_MSG} ""
101
	@${ECHO_MSG} ""
102
	@${ECHO_MSG} "LANG=lang (default: english)"
102
	@${ECHO_MSG} "LANGUAGE=lang (default: english)"
103
	@${ECHO_MSG} "- Enable compilation of one language support"
103
	@${ECHO_MSG} "- Enable compilation of one language support"
104
	@${ECHO_MSG} "  available lang: brazilian-portuguese, catalan, czech, danish, dutch,"
104
	@${ECHO_MSG} "  available lang: brazilian-portuguese, catalan, czech, danish, dutch,"
105
	@${ECHO_MSG} "  english, french, french-funny, german, hungarian, italian, korean,"
105
	@${ECHO_MSG} "  english, french, french-funny, german, hungarian, italian, korean,"
(-)games/blackjackclient/Makefile (-2 / +2 lines)
Lines 21-28 post-extract-script: Link Here
21
	@${ECHO_CMD} "Main-Class: ${PORTNAME}" > ${WRKDIR}/src/MANIFEST.MF
21
	@${ECHO_CMD} "Main-Class: ${PORTNAME}" > ${WRKDIR}/src/MANIFEST.MF
22
22
23
do-build:
23
do-build:
24
	cd ${WRKDIR}/src && \
24
	(cd ${WRKDIR}/src && ${SETENV} LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 \
25
		${SETENV} LANG=en_US.UTF-8 ${JAVAC} ${PORTNAME}.java
25
		${JAVAC} ${PORTNAME}.java)
26
26
27
post-build-script:
27
post-build-script:
28
	@cd ${WRKDIR}/src && \
28
	@cd ${WRKDIR}/src && \
(-)games/doomsday/Makefile (-1 / +1 lines)
Lines 45-51 post-patch: Link Here
45
		${WRKSRC}/doomsday/client/client.pro \
45
		${WRKSRC}/doomsday/client/client.pro \
46
		${WRKSRC}/doomsday/server/server.pro
46
		${WRKSRC}/doomsday/server/server.pro
47
	# Removing (three) non-ascii bytes from the beginning of the file
47
	# Removing (three) non-ascii bytes from the beginning of the file
48
	@LANG=C ${REINPLACE_CMD} '1s,^...,,' \
48
	@${REINPLACE_CMD} '1s,^...,,' \
49
		${WRKSRC}/doomsday/client/src/client/cl_sound.cpp
49
		${WRKSRC}/doomsday/client/src/client/cl_sound.cpp
50
50
51
.include <bsd.port.mk>
51
.include <bsd.port.mk>
(-)games/jchessboard/Makefile (-3 / +2 lines)
Lines 14-22 COMMENT= Chess game and PGN viewer/edito Link Here
14
LICENSE=	GPLv2
14
LICENSE=	GPLv2
15
15
16
USES=		tar:tgz
16
USES=		tar:tgz
17
USE_ANT=	yes
17
USE_JAVA=	yes
18
USE_JAVA=	yes
18
JAVA_VERSION=	1.6+
19
JAVA_VERSION=	1.6+
19
USE_ANT=	yes
20
USE_LOCALE=	en_US.ISO8859-1
20
NO_ARCH=	yes
21
NO_ARCH=	yes
21
22
22
DATADIR=	${JAVASHAREDIR}/${PORTNAME}
23
DATADIR=	${JAVASHAREDIR}/${PORTNAME}
Lines 30-37 PORTDOCS= * Link Here
30
31
31
JARFILE=	JChessBoard.jar
32
JARFILE=	JChessBoard.jar
32
33
33
MAKE_ENV=	LANG=en_US.ISO8859-1
34
35
do-install:
34
do-install:
36
	${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
35
	${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
37
	@${MKDIR} ${STAGEDIR}${DATADIR}
36
	@${MKDIR} ${STAGEDIR}${DATADIR}
(-)games/openbor/Makefile (-2 / +1 lines)
Lines 58-65 TREMOR_LIB_DEPENDS_OFF= libvorbisfile.so Link Here
58
.if defined(BOOTSTRAP)
58
.if defined(BOOTSTRAP)
59
# XXX SED and _MASTER_SITES_svn aren't defined yet
59
# XXX SED and _MASTER_SITES_svn aren't defined yet
60
SED?=		/usr/bin/sed
60
SED?=		/usr/bin/sed
61
SVN_REV!=	${SETENV} LC_ALL=C svn info \
61
SVN_REV!=	svn info ${MASTER_SITES:M*\:svn:S/:svn//} | \
62
			${MASTER_SITES:M*\:svn:S/:svn//} | \
63
		${SED} -n 's/^Last Changed Rev: //p'
62
		${SED} -n 's/^Last Changed Rev: //p'
64
PORTVERSION:=	${PORTVERSION:R}.r${SVN_REV}
63
PORTVERSION:=	${PORTVERSION:R}.r${SVN_REV}
65
.else
64
.else
(-)games/quake-data/Makefile (-1 / +1 lines)
Lines 72-78 post-extract: Link Here
72
	${TAR} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/${f} \
72
	${TAR} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/${f} \
73
		${EXTRACT_AFTER_ARGS} -C ${WRKSRC}/qw/skins
73
		${EXTRACT_AFTER_ARGS} -C ${WRKSRC}/qw/skins
74
.  endfor
74
.  endfor
75
	(cd ${WRKSRC}/qw/skins && LANG=C ${SH} fixskins.sh)
75
	(cd ${WRKSRC}/qw/skins && ${SH} fixskins.sh)
76
.endif
76
.endif
77
77
78
# Since these files are not generated, only unpacked, install(1) them with
78
# Since these files are not generated, only unpacked, install(1) them with
(-)german/hunspell/Makefile (-1 lines)
Lines 20-26 BUILD_DEPENDS= aspell:textproc/aspell \ Link Here
20
20
21
USES=		gmake perl5 shebangfix tar:bzip2
21
USES=		gmake perl5 shebangfix tar:bzip2
22
ALL_TARGET=	hunspell-all
22
ALL_TARGET=	hunspell-all
23
MAKE_ENV=	LANG=C LC_ALL=C
24
NO_ARCH=	yes
23
NO_ARCH=	yes
25
USE_PERL5=	build
24
USE_PERL5=	build
26
SHEBANG_FILES=	bin/*.pl
25
SHEBANG_FILES=	bin/*.pl
(-)graphics/Coin/Makefile (-1 lines)
Lines 22-28 CONFIGURE_ARGS= --with-pthread=yes --ena Link Here
22
		--enable-3ds-import --enable-sound	\
22
		--enable-3ds-import --enable-sound	\
23
		--enable-javascript-api --enable-debug=no
23
		--enable-javascript-api --enable-debug=no
24
USE_LDCONFIG=	yes
24
USE_LDCONFIG=	yes
25
MAKE_ENV=	LANG=C
26
INSTALL_TARGET=	install-strip
25
INSTALL_TARGET=	install-strip
27
26
28
pre-configure:
27
pre-configure:
(-)graphics/jogl/Makefile (-1 / +1 lines)
Lines 34-45 USE_XORG= x11 xau xdamage xdmcp xext xf8 Link Here
34
USE_GL=		gl
34
USE_GL=		gl
35
USE_ANT=	yes
35
USE_ANT=	yes
36
USE_LDCONFIG=	yes
36
USE_LDCONFIG=	yes
37
USE_LOCALE=	en_US.UTF-8
37
USE_JAVA=	yes
38
USE_JAVA=	yes
38
JAVA_VERSION=	1.6+
39
JAVA_VERSION=	1.6+
39
40
40
BUILD_WRKSRC=	${WRKSRC}/jogl/make
41
BUILD_WRKSRC=	${WRKSRC}/jogl/make
41
BUILD_BINPATH=	${WRKSRC}/bin
42
BUILD_BINPATH=	${WRKSRC}/bin
42
MAKE_ENV+=	LANG=en_US.UTF-8
43
MAKE_ENV+=	PATH="${BUILD_BINPATH}:${PATH}"
43
MAKE_ENV+=	PATH="${BUILD_BINPATH}:${PATH}"
44
44
45
OPTIONS_DEFINE=	DOCS
45
OPTIONS_DEFINE=	DOCS
(-)graphics/libimg/Makefile (-1 lines)
Lines 36-42 EXTRACT_AFTER_ARGS= -x '*/libz/*' -x zli Link Here
36
		-x '*/compat/*' -x '*/libtiff/*' \
36
		-x '*/compat/*' -x '*/libtiff/*' \
37
		-x '*/libjpeg/*' -x '*/libpng/*' -a -d ${WRKDIR}
37
		-x '*/libjpeg/*' -x '*/libpng/*' -a -d ${WRKDIR}
38
MAKE_ARGS+=	INSTALL_ROOT="${STAGEDIR}"
38
MAKE_ARGS+=	INSTALL_ROOT="${STAGEDIR}"
39
MAKE_ENV+=	LANG=
40
CONFIGURE_ENV=	WRKDIR="${WRKDIR}"
39
CONFIGURE_ENV=	WRKDIR="${WRKDIR}"
41
40
42
post-patch:
41
post-patch:
(-)japanese/skk-jisyo/Makefile (-1 / +1 lines)
Lines 61-67 do-patch: Link Here
61
# See also: <URL:http://cr.yp.to/cdb/cdbmake.html>.
61
# See also: <URL:http://cr.yp.to/cdb/cdbmake.html>.
62
do-build:
62
do-build:
63
.for type in ${SKK_JISYO_TYPE}
63
.for type in ${SKK_JISYO_TYPE}
64
	LC_ALL=C ${AWK} '/^[^;]/ { \
64
	${AWK} '/^[^;]/ { \
65
			s = substr($$0, index($$0, " ") + 1); \
65
			s = substr($$0, index($$0, " ") + 1); \
66
			print "+" length($$1) "," length(s) ":" $$1 "->" s; \
66
			print "+" length($$1) "," length(s) ":" $$1 "->" s; \
67
		} \
67
		} \
(-)java/bootstrap-openjdk/Makefile.update (-2 / +2 lines)
Lines 68-74 all: Link Here
68
.endif
68
.endif
69
	@${ECHO} "Building ${DISTFILE}...."
69
	@${ECHO} "Building ${DISTFILE}...."
70
	@${ECHO} ""
70
	@${ECHO} ""
71
	@${ECHO} "Started at "`${SETENV} LANG=C date -u`"."
71
	@${ECHO} "Started at "`date -u`"."
72
	@${ECHO} ""
72
	@${ECHO} ""
73
	@${ECHO} "=============================================================="
73
	@${ECHO} "=============================================================="
74
	@${ECHO} ""
74
	@${ECHO} ""
Lines 97-103 all: Link Here
97
	@${ECHO} ""
97
	@${ECHO} ""
98
	@${ECHO} "${DISTFILE} was built successfully!"
98
	@${ECHO} "${DISTFILE} was built successfully!"
99
	@${ECHO} ""
99
	@${ECHO} ""
100
	@${ECHO} "Finished at "`${SETENV} LANG=C date -u`"."
100
	@${ECHO} "Finished at "`date -u`"."
101
	@${ECHO} ""
101
	@${ECHO} ""
102
	@${ECHO} "You may clean up the build directory if everything looks okay,"
102
	@${ECHO} "You may clean up the build directory if everything looks okay,"
103
	@${ECHO} "e.g., 'rm -fr ${FT2_PORTDIR}/work ${JDK_PORTDIR}/work'."
103
	@${ECHO} "e.g., 'rm -fr ${FT2_PORTDIR}/work ${JDK_PORTDIR}/work'."
(-)java/icedtea-web/Makefile (-4 lines)
Lines 29-38 SHEBANG_FILES= jrunscript.in launcher/la Link Here
29
29
30
WANT_GNOME=	yes
30
WANT_GNOME=	yes
31
31
32
EXTRACT_CMD=	${GZIP_CMD}
33
EXTRACT_BEFORE_ARGS=	-dc
34
EXTRACT_AFTER_ARGS=	| ${SETENV} LC_ALL=en_US.UTF-8 ${TAR} -xf -
35
36
CONFIGURE_ARGS=		--with-hamcrest="${HAMCREST_JAR}"
32
CONFIGURE_ARGS=		--with-hamcrest="${HAMCREST_JAR}"
37
CONFIGURE_ARGS+=	--with-jdk-home="${JAVA_HOME}"
33
CONFIGURE_ARGS+=	--with-jdk-home="${JAVA_HOME}"
38
CONFIGURE_ARGS+=	--with-jre-home="${JAVA_HOME}/jre"
34
CONFIGURE_ARGS+=	--with-jre-home="${JAVA_HOME}/jre"
(-)java/jakarta-commons-httpclient/Makefile (-1 / +1 lines)
Lines 37-43 PLIST_FILES= %%JAVAJARDIR%%/${PORTNAME}. Link Here
37
PORTDOCS=	*
37
PORTDOCS=	*
38
38
39
post-patch:
39
post-patch:
40
	@LANG=C ${REINPLACE_CMD} 's/Ortwin Gl.*ck/Ortwin Glueck/' \
40
	@${REINPLACE_CMD} 's/Ortwin Gl.*ck/Ortwin Glueck/' \
41
		${WRKSRC}/src/java/org/apache/commons/httpclient/*.java \
41
		${WRKSRC}/src/java/org/apache/commons/httpclient/*.java \
42
		${WRKSRC}/src/java/org/apache/commons/httpclient/*/*.java
42
		${WRKSRC}/src/java/org/apache/commons/httpclient/*/*.java
43
43
(-)java/jfreechart/Makefile (-1 / +1 lines)
Lines 24-32 COMPILE_DESC= Build from source Link Here
24
24
25
.if ${PORT_OPTIONS:MCOMPILE}
25
.if ${PORT_OPTIONS:MCOMPILE}
26
USE_ANT=	yes
26
USE_ANT=	yes
27
USE_LOCALE=	en_US.UTF-8
27
ALL_TARGET=	compile
28
ALL_TARGET=	compile
28
BUILD_WRKSRC=	${WRKSRC}/ant
29
BUILD_WRKSRC=	${WRKSRC}/ant
29
MAKE_ENV=	LANG=en_US.UTF-8
30
.else
30
.else
31
NO_BUILD=	yes
31
NO_BUILD=	yes
32
.endif
32
.endif
(-)java/openjdk6/Makefile (-1 / +1 lines)
Lines 98-104 BOOTSTRAPJDKDIR?= ${LOCALBASE}/bootstrap Link Here
98
BUILD_DEPENDS+=		${BOOTSTRAPJDKDIR}/bin/javac:java/bootstrap-openjdk
98
BUILD_DEPENDS+=		${BOOTSTRAPJDKDIR}/bin/javac:java/bootstrap-openjdk
99
.endif
99
.endif
100
100
101
MAKE_ENV=	LANG=C LC_ALL=C OS= \
101
MAKE_ENV=	OS= \
102
		ALT_JDK_IMPORT_PATH=${BOOTSTRAPJDKDIR} \
102
		ALT_JDK_IMPORT_PATH=${BOOTSTRAPJDKDIR} \
103
		ALT_BOOTDIR=${BOOTSTRAPJDKDIR} \
103
		ALT_BOOTDIR=${BOOTSTRAPJDKDIR} \
104
		ALT_CACERTS_FILE=${FILESDIR}/cacerts \
104
		ALT_CACERTS_FILE=${FILESDIR}/cacerts \
(-)java/openjdk7/Makefile (-3 / +1 lines)
Lines 104-112 NOPRECIOUSMAKEVARS= yes Link Here
104
ONLY_FOR_ARCHS=	i386 amd64
104
ONLY_FOR_ARCHS=	i386 amd64
105
105
106
_MAKE_JOBS=	#
106
_MAKE_JOBS=	#
107
MAKE_ENV+=	LANG="C" \
107
MAKE_ENV+=	JAVA_HOME="" \
108
		LC_ALL="C" \
109
		JAVA_HOME="" \
110
		CLASSPATH="" \
108
		CLASSPATH="" \
111
		LD_LIBRARY_PATH="" \
109
		LD_LIBRARY_PATH="" \
112
		MAKEFLAGS="" \
110
		MAKEFLAGS="" \
(-)java/openjdk8/Makefile (-2 / +1 lines)
Lines 197-204 SHEBANG_FILES= configure Link Here
197
_MAKE_JOBS=	#
197
_MAKE_JOBS=	#
198
CPPFLAGS+=	-I${LOCALBASE}/include
198
CPPFLAGS+=	-I${LOCALBASE}/include
199
LDFLAGS+=	-L${LOCALBASE}/lib
199
LDFLAGS+=	-L${LOCALBASE}/lib
200
MAKE_ENV=	LANG="C" LC_ALL="C"
200
MAKE_ENV=	CLASSPATH="" JAVA_HOME="" LD_LIBRARY_PATH=""
201
MAKE_ENV+=	CLASSPATH="" JAVA_HOME="" LD_LIBRARY_PATH=""
202
MAKE_ENV+=	IGNORE_OLD_CONFIG=true
201
MAKE_ENV+=	IGNORE_OLD_CONFIG=true
203
MAKE_ENV+=	COMPILER_WARNINGS_FATAL="false"
202
MAKE_ENV+=	COMPILER_WARNINGS_FATAL="false"
204
# openjdk8 normally sets X_CFLAGS in the ./configure script, but it won't do
203
# openjdk8 normally sets X_CFLAGS in the ./configure script, but it won't do
(-)lang/elixir/Makefile (-1 / +1 lines)
Lines 21-27 USE_GITHUB= yes Link Here
21
GH_ACCOUNT=	elixir-lang
21
GH_ACCOUNT=	elixir-lang
22
22
23
USES=		gmake
23
USES=		gmake
24
MAKE_ENV=	LANG=en_US.UTF-8
24
USE_LOCALE=	en_US.UTF-8
25
ALL_TARGET=	#empty
25
ALL_TARGET=	#empty
26
REINPLACE_ARGS=	-i ""
26
REINPLACE_ARGS=	-i ""
27
NO_ARCH=	yes
27
NO_ARCH=	yes
(-)lang/gauche/Makefile (-2 lines)
Lines 30-37 MAKE_JOBS_UNSAFE=yes Link Here
30
PLIST_SUB=	VERSION="${PORTVERSION}" \
30
PLIST_SUB=	VERSION="${PORTVERSION}" \
31
		TARGET="${CONFIGURE_TARGET}"
31
		TARGET="${CONFIGURE_TARGET}"
32
32
33
# breaks in ext/uvecor.c on some locales
34
MAKE_ENV+=	LANG=C
35
# avoids a problem with with ccache's pre-processor optimization
33
# avoids a problem with with ccache's pre-processor optimization
36
MAKE_ENV+=	CCACHE_CPP2=1
34
MAKE_ENV+=	CCACHE_CPP2=1
37
35
(-)lang/gcc/Makefile (-4 / +1 lines)
Lines 100-109 CONFIGURE_ARGS+=--disable-nls \ Link Here
100
		${ICONV_CONFIGURE_ARG} \
100
		${ICONV_CONFIGURE_ARG} \
101
		--with-pkgversion="FreeBSD Ports Collection" \
101
		--with-pkgversion="FreeBSD Ports Collection" \
102
		--with-system-zlib
102
		--with-system-zlib
103
# On FreeBSD 11 and above AWK uses the locale's collating order which
103
MAKE_ARGS+=	MAKEINFOFLAGS="--no-split"
104
# runs into a bug in GCC (PR 211742).
105
MAKE_ARGS+=	MAKEINFOFLAGS="--no-split" \
106
		AWK="${SETENV} LC_ALL=C ${AWK:Q}"
107
USE_LDCONFIG=	${TARGLIB}
104
USE_LDCONFIG=	${TARGLIB}
108
PLIST_SUB=	GCC_VERSION=${GCC_VERSION} \
105
PLIST_SUB=	GCC_VERSION=${GCC_VERSION} \
109
		GNU_HOST=${CONFIGURE_TARGET} \
106
		GNU_HOST=${CONFIGURE_TARGET} \
(-)lang/gcc48/Makefile (-4 / +1 lines)
Lines 101-110 CONFIGURE_ARGS+=--disable-nls \ Link Here
101
		${ICONV_CONFIGURE_ARG} \
101
		${ICONV_CONFIGURE_ARG} \
102
		--with-pkgversion="FreeBSD Ports Collection" \
102
		--with-pkgversion="FreeBSD Ports Collection" \
103
		--with-system-zlib
103
		--with-system-zlib
104
# On FreeBSD 11 and above AWK uses the locale's collating order which
104
MAKE_ARGS+=	MAKEINFOFLAGS="--no-split"
105
# runs into a bug in GCC (PR 211742).
106
MAKE_ARGS+=	MAKEINFOFLAGS="--no-split" \
107
		AWK="${SETENV} LC_ALL=C ${AWK:Q}"
108
USE_LDCONFIG=	${TARGLIB}
105
USE_LDCONFIG=	${TARGLIB}
109
PLIST_SUB=	GCC_VERSION=${GCC_VERSION} \
106
PLIST_SUB=	GCC_VERSION=${GCC_VERSION} \
110
		GNU_HOST=${CONFIGURE_TARGET} \
107
		GNU_HOST=${CONFIGURE_TARGET} \
(-)lang/gcc49/Makefile (-4 / +1 lines)
Lines 103-112 CONFIGURE_ARGS+=--disable-nls \ Link Here
103
		${ICONV_CONFIGURE_ARG} \
103
		${ICONV_CONFIGURE_ARG} \
104
		--with-pkgversion="FreeBSD Ports Collection" \
104
		--with-pkgversion="FreeBSD Ports Collection" \
105
		--with-system-zlib
105
		--with-system-zlib
106
# On FreeBSD 11 and above AWK uses the locale's collating order which
106
MAKE_ARGS+=	MAKEINFOFLAGS="--no-split"
107
# runs into a bug in GCC (PR 211742).
108
MAKE_ARGS+=	MAKEINFOFLAGS="--no-split" \
109
		AWK="${SETENV} LC_ALL=C ${AWK:Q}"
110
USE_LDCONFIG=	${TARGLIB}
107
USE_LDCONFIG=	${TARGLIB}
111
PLIST_SUB=	GCC_VERSION=${GCC_VERSION} \
108
PLIST_SUB=	GCC_VERSION=${GCC_VERSION} \
112
		GNU_HOST=${CONFIGURE_TARGET} \
109
		GNU_HOST=${CONFIGURE_TARGET} \
(-)lang/gcc5/Makefile (-4 / +1 lines)
Lines 102-111 CONFIGURE_ARGS+=--disable-nls \ Link Here
102
		${ICONV_CONFIGURE_ARG} \
102
		${ICONV_CONFIGURE_ARG} \
103
		--with-pkgversion="FreeBSD Ports Collection" \
103
		--with-pkgversion="FreeBSD Ports Collection" \
104
		--with-system-zlib
104
		--with-system-zlib
105
# On FreeBSD 11 and above AWK uses the locale's collating order which
105
MAKE_ARGS+=	MAKEINFOFLAGS="--no-split"
106
# runs into a bug in GCC (PR 211742).
107
MAKE_ARGS+=	MAKEINFOFLAGS="--no-split" \
108
		AWK="${SETENV} LC_ALL=C ${AWK:Q}"
109
USE_LDCONFIG=	${TARGLIB}
106
USE_LDCONFIG=	${TARGLIB}
110
PLIST_SUB=	GCC_VERSION=${GCC_VERSION} \
107
PLIST_SUB=	GCC_VERSION=${GCC_VERSION} \
111
		GNU_HOST=${CONFIGURE_TARGET} \
108
		GNU_HOST=${CONFIGURE_TARGET} \
(-)lang/gcc5-devel/Makefile (-4 / +1 lines)
Lines 103-112 CONFIGURE_ARGS+=--disable-nls \ Link Here
103
		${ICONV_CONFIGURE_ARG} \
103
		${ICONV_CONFIGURE_ARG} \
104
		--with-pkgversion="FreeBSD Ports Collection" \
104
		--with-pkgversion="FreeBSD Ports Collection" \
105
		--with-system-zlib
105
		--with-system-zlib
106
# On FreeBSD 11 and above AWK uses the locale's collating order which
106
MAKE_ARGS+=	MAKEINFOFLAGS="--no-split"
107
# runs into a bug in GCC (PR 211742).
108
MAKE_ARGS+=	MAKEINFOFLAGS="--no-split" \
109
		AWK="${SETENV} LC_ALL=C ${AWK:Q}"
110
USE_LDCONFIG=	${TARGLIB}
107
USE_LDCONFIG=	${TARGLIB}
111
PLIST_SUB=	GCC_VERSION=${GCC_VERSION} \
108
PLIST_SUB=	GCC_VERSION=${GCC_VERSION} \
112
		GNU_HOST=${CONFIGURE_TARGET} \
109
		GNU_HOST=${CONFIGURE_TARGET} \
(-)lang/gcc6/Makefile (-4 / +1 lines)
Lines 101-110 CONFIGURE_ARGS+=--disable-nls \ Link Here
101
		${ICONV_CONFIGURE_ARG} \
101
		${ICONV_CONFIGURE_ARG} \
102
		--with-pkgversion="FreeBSD Ports Collection" \
102
		--with-pkgversion="FreeBSD Ports Collection" \
103
		--with-system-zlib
103
		--with-system-zlib
104
# On FreeBSD 11 and above AWK uses the locale's collating order which
104
MAKE_ARGS+=	MAKEINFOFLAGS="--no-split"
105
# runs into a bug in GCC (PR 211742).
106
MAKE_ARGS+=	MAKEINFOFLAGS="--no-split" \
107
		AWK="${SETENV} LC_ALL=C ${AWK:Q}"
108
USE_LDCONFIG=	${TARGLIB}
105
USE_LDCONFIG=	${TARGLIB}
109
PLIST_SUB=	GCC_VERSION=${GCC_VERSION} \
106
PLIST_SUB=	GCC_VERSION=${GCC_VERSION} \
110
		GNU_HOST=${CONFIGURE_TARGET} \
107
		GNU_HOST=${CONFIGURE_TARGET} \
(-)lang/gcc6-devel/Makefile (-4 / +1 lines)
Lines 106-115 CONFIGURE_ARGS+=--disable-nls \ Link Here
106
		${ICONV_CONFIGURE_ARG} \
106
		${ICONV_CONFIGURE_ARG} \
107
		--with-pkgversion="FreeBSD Ports Collection" \
107
		--with-pkgversion="FreeBSD Ports Collection" \
108
		--with-system-zlib
108
		--with-system-zlib
109
# On FreeBSD 11 and above AWK uses the locale's collating order which
109
MAKE_ARGS+=	MAKEINFOFLAGS="--no-split"
110
# runs into a bug in GCC (PR 211742).
111
MAKE_ARGS+=	MAKEINFOFLAGS="--no-split" \
112
		AWK="${SETENV} LC_ALL=C ${AWK:Q}"
113
USE_LDCONFIG=	${TARGLIB}
110
USE_LDCONFIG=	${TARGLIB}
114
PLIST_SUB=	GCC_VERSION=${GCC_VERSION} \
111
PLIST_SUB=	GCC_VERSION=${GCC_VERSION} \
115
		GNU_HOST=${CONFIGURE_TARGET} \
112
		GNU_HOST=${CONFIGURE_TARGET} \
(-)lang/ghc/Makefile (-5 / +2 lines)
Lines 31-42 CONFLICTS= ghc-7.4.* ghc-7.6.* ghc-7.8.* Link Here
31
31
32
LIB_DEPENDS+=	libgmp.so:math/gmp
32
LIB_DEPENDS+=	libgmp.so:math/gmp
33
33
34
USES=		autoreconf gmake iconv:translit ncurses perl5 tar:xz
35
USE_LOCALE=	en_US.UTF-8
34
USE_PERL5=		build
36
USE_PERL5=		build
35
USES=			autoreconf gmake iconv:translit ncurses perl5 tar:xz
36
37
MAKE_ENV+=	LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8
38
# This is needed on FreeBSD 9.x due to the bootstrap tarball.
39
TAR=		env LC_ALL=en_US.UTF-8 /usr/bin/tar
40
37
41
# The configure process accepts,filters and canonicalises
38
# The configure process accepts,filters and canonicalises
42
# the CONFIGURE_TARGET variable. You can read the files
39
# the CONFIGURE_TARGET variable. You can read the files
(-)lang/ghc/bsd.cabal.mk (-2 / +3 lines)
Lines 23-30 USES+= metaport Link Here
23
DIST_SUBDIR?=	cabal
23
DIST_SUBDIR?=	cabal
24
.endif # !METAPORT
24
.endif # !METAPORT
25
25
26
MAKE_ENV+=	LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 DESTDIR=${STAGEDIR} \
26
USE_LOCALE?=	en_US.UTF-8
27
		TMPDIR=${TMPDIR}
27
28
MAKE_ENV+=	DESTDIR=${STAGEDIR} TMPDIR=${TMPDIR}
28
29
29
SETUP_CMD?=	./setup
30
SETUP_CMD?=	./setup
30
31
(-)lang/mono/Makefile (-4 / +1 lines)
Lines 29-40 CONFIGURE_ENV= ac_cv_header_sys_inotify_ Link Here
29
# Set location for .wapi creation.
29
# Set location for .wapi creation.
30
MONO_SHARED_DIR=${WRKDIR}
30
MONO_SHARED_DIR=${WRKDIR}
31
31
32
# LC_ALL is set in order to work around issues people are having when using
33
# other languages.  This has shown itself in build fails and possibly other
34
# strange crashes.
35
MAKE_ENV=	MONO_SHARED_DIR="${MONO_SHARED_DIR}" \
32
MAKE_ENV=	MONO_SHARED_DIR="${MONO_SHARED_DIR}" \
36
		INSTALL_STRIP_FLAG="${STRIP}" \
33
		INSTALL_STRIP_FLAG="${STRIP}" \
37
		LC_ALL=C TZ=UTC
34
		TZ=UTC
38
35
39
ONLY_FOR_ARCHS=	i386 amd64 powerpc
36
ONLY_FOR_ARCHS=	i386 amd64 powerpc
40
PORTSCOUT=	limit:^\d+\.\d+\.[1-9]\d*
37
PORTSCOUT=	limit:^\d+\.\d+\.[1-9]\d*
(-)lang/perl5-devel/Makefile (-6 / +2 lines)
Lines 112-118 CONFIGURE_ARGS= -sde -Dprefix=${PREFIX} Link Here
112
	-Ui_malloc -Ui_iconv -Uinstallusrbinperl -Dusenm=n \
112
	-Ui_malloc -Ui_iconv -Uinstallusrbinperl -Dusenm=n \
113
	-Dcc="${CC}" -Duseshrplib -Dinc_version_list=none \
113
	-Dcc="${CC}" -Duseshrplib -Dinc_version_list=none \
114
	-Dcf_by=${MAINTAINER:C,@.*,,} -Dcf_email=${MAINTAINER} \
114
	-Dcf_by=${MAINTAINER:C,@.*,,} -Dcf_email=${MAINTAINER} \
115
	-Dcf_time="`env LANG=C ${STAT} -t \"%a %b %d %T %Z %Y\" -f %Sm ${_DISTDIR}/${DISTNAME}${EXTRACT_SUFX}`"
115
	-Dcf_time="`${STAT} -t \"%a %b %d %T %Z %Y\" -f %Sm ${_DISTDIR}/${DISTNAME}${EXTRACT_SUFX}`"
116
# Keep the following two in sync.
116
# Keep the following two in sync.
117
# lddlflags is used for all .so linking
117
# lddlflags is used for all .so linking
118
# shrpldflags is used for libperl.so, so remove all the extra bits inherited from lddlflags.
118
# shrpldflags is used for libperl.so, so remove all the extra bits inherited from lddlflags.
Lines 127-137 USE_LDCONFIG= ${PREFIX}/${_ARCH_LIB}/COR Link Here
127
# XXX Remove
127
# XXX Remove
128
CONFIGURE_ARGS+=	-Dusedevel -Uversiononly
128
CONFIGURE_ARGS+=	-Dusedevel -Uversiononly
129
129
130
LOCALE_CLEANUP=	LANG="" LC_ALL="" LC_COLLATE="" LC_CTYPE="" \
130
CONFIGURE_ENV+=	UNAME_v="$$(uname -v | sed 'y/=/ /')"
131
		LC_MESSAGES="" LC_MONETARY="" LC_NUMERIC="" \
132
		LC_TIME=""
133
CONFIGURE_ENV+=	${LOCALE_CLEANUP} UNAME_v="$$(uname -v | sed 'y/=/ /')"
134
MAKE_ENV+=	${LOCALE_CLEANUP}
135
131
136
SUB_LIST+=	PERL_VERSION=${PERL_VERSION} \
132
SUB_LIST+=	PERL_VERSION=${PERL_VERSION} \
137
		PERL_VER=${PERL_VER} \
133
		PERL_VER=${PERL_VER} \
(-)lang/perl5.20/Makefile (-6 / +2 lines)
Lines 90-96 CONFIGURE_ARGS= -sde -Dprefix=${PREFIX} Link Here
90
	-Ui_malloc -Ui_iconv -Uinstallusrbinperl -Dusenm=n \
90
	-Ui_malloc -Ui_iconv -Uinstallusrbinperl -Dusenm=n \
91
	-Dcc="${CC}" -Duseshrplib -Dinc_version_list=none \
91
	-Dcc="${CC}" -Duseshrplib -Dinc_version_list=none \
92
	-Dcf_by=${MAINTAINER:C,@.*,,} -Dcf_email=${MAINTAINER} \
92
	-Dcf_by=${MAINTAINER:C,@.*,,} -Dcf_email=${MAINTAINER} \
93
	-Dcf_time="`env LANG=C ${STAT} -t \"%a %b %d %T %Z %Y\" -f %Sm ${_DISTDIR}/${DISTNAME}${EXTRACT_SUFX}`"
93
	-Dcf_time="`${STAT} -t \"%a %b %d %T %Z %Y\" -f %Sm ${_DISTDIR}/${DISTNAME}${EXTRACT_SUFX}`"
94
# Keep the following two in sync.
94
# Keep the following two in sync.
95
# lddlflags is used for all .so linking
95
# lddlflags is used for all .so linking
96
# shrpldflags is used for libperl.so, so remove all the extra bits inherited from lddlflags.
96
# shrpldflags is used for libperl.so, so remove all the extra bits inherited from lddlflags.
Lines 101-111 CONFIGURE_ARGS+= \ Link Here
101
# Give a hint of where libperl.so can be found.
101
# Give a hint of where libperl.so can be found.
102
USE_LDCONFIG=	${PREFIX}/${_ARCH_LIB}/CORE
102
USE_LDCONFIG=	${PREFIX}/${_ARCH_LIB}/CORE
103
103
104
LOCALE_CLEANUP=	LANG="" LC_ALL="" LC_COLLATE="" LC_CTYPE="" \
104
CONFIGURE_ENV+=	UNAME_v="$$(uname -v | sed 'y/=/ /')"
105
		LC_MESSAGES="" LC_MONETARY="" LC_NUMERIC="" \
106
		LC_TIME=""
107
CONFIGURE_ENV+=	${LOCALE_CLEANUP} UNAME_v="$$(uname -v | sed 'y/=/ /')"
108
MAKE_ENV+=	${LOCALE_CLEANUP}
109
105
110
SUB_LIST+=	PERL_VERSION=${PERL_VERSION} \
106
SUB_LIST+=	PERL_VERSION=${PERL_VERSION} \
111
		PERL_VER=${PERL_VER} \
107
		PERL_VER=${PERL_VER} \
(-)lang/perl5.22/Makefile (-6 / +2 lines)
Lines 89-95 CONFIGURE_ARGS= -sde -Dprefix=${PREFIX} Link Here
89
	-Ui_malloc -Ui_iconv -Uinstallusrbinperl -Dusenm=n \
89
	-Ui_malloc -Ui_iconv -Uinstallusrbinperl -Dusenm=n \
90
	-Dcc="${CC}" -Duseshrplib -Dinc_version_list=none \
90
	-Dcc="${CC}" -Duseshrplib -Dinc_version_list=none \
91
	-Dcf_by=${MAINTAINER:C,@.*,,} -Dcf_email=${MAINTAINER} \
91
	-Dcf_by=${MAINTAINER:C,@.*,,} -Dcf_email=${MAINTAINER} \
92
	-Dcf_time="`env LANG=C ${STAT} -t \"%a %b %d %T %Z %Y\" -f %Sm ${_DISTDIR}/${DISTNAME}${EXTRACT_SUFX}`"
92
	-Dcf_time="`${STAT} -t \"%a %b %d %T %Z %Y\" -f %Sm ${_DISTDIR}/${DISTNAME}${EXTRACT_SUFX}`"
93
# Keep the following two in sync.
93
# Keep the following two in sync.
94
# lddlflags is used for all .so linking
94
# lddlflags is used for all .so linking
95
# shrpldflags is used for libperl.so, so remove all the extra bits inherited from lddlflags.
95
# shrpldflags is used for libperl.so, so remove all the extra bits inherited from lddlflags.
Lines 100-110 CONFIGURE_ARGS+= \ Link Here
100
# Give a hint of where libperl.so can be found.
100
# Give a hint of where libperl.so can be found.
101
USE_LDCONFIG=	${PREFIX}/${_ARCH_LIB}/CORE
101
USE_LDCONFIG=	${PREFIX}/${_ARCH_LIB}/CORE
102
102
103
LOCALE_CLEANUP=	LANG="" LC_ALL="" LC_COLLATE="" LC_CTYPE="" \
103
CONFIGURE_ENV+=	UNAME_v="$$(uname -v | sed 'y/=/ /')"
104
		LC_MESSAGES="" LC_MONETARY="" LC_NUMERIC="" \
105
		LC_TIME=""
106
CONFIGURE_ENV+=	${LOCALE_CLEANUP} UNAME_v="$$(uname -v | sed 'y/=/ /')"
107
MAKE_ENV+=	${LOCALE_CLEANUP}
108
104
109
SUB_LIST+=	PERL_VERSION=${PERL_VERSION} \
105
SUB_LIST+=	PERL_VERSION=${PERL_VERSION} \
110
		PERL_VER=${PERL_VER} \
106
		PERL_VER=${PERL_VER} \
(-)lang/perl5.24/Makefile (-6 / +2 lines)
Lines 97-103 CONFIGURE_ARGS= -sde -Dprefix=${PREFIX} Link Here
97
	-Ui_malloc -Ui_iconv -Uinstallusrbinperl -Dusenm=n \
97
	-Ui_malloc -Ui_iconv -Uinstallusrbinperl -Dusenm=n \
98
	-Dcc="${CC}" -Duseshrplib -Dinc_version_list=none \
98
	-Dcc="${CC}" -Duseshrplib -Dinc_version_list=none \
99
	-Dcf_by=${MAINTAINER:C,@.*,,} -Dcf_email=${MAINTAINER} \
99
	-Dcf_by=${MAINTAINER:C,@.*,,} -Dcf_email=${MAINTAINER} \
100
	-Dcf_time="`env LANG=C ${STAT} -t \"%a %b %d %T %Z %Y\" -f %Sm ${_DISTDIR}/${DISTNAME}${EXTRACT_SUFX}`"
100
	-Dcf_time="`${STAT} -t \"%a %b %d %T %Z %Y\" -f %Sm ${_DISTDIR}/${DISTNAME}${EXTRACT_SUFX}`"
101
# Keep the following two in sync.
101
# Keep the following two in sync.
102
# lddlflags is used for all .so linking
102
# lddlflags is used for all .so linking
103
# shrpldflags is used for libperl.so, so remove all the extra bits inherited from lddlflags.
103
# shrpldflags is used for libperl.so, so remove all the extra bits inherited from lddlflags.
Lines 108-118 CONFIGURE_ARGS+= \ Link Here
108
# Give a hint of where libperl.so can be found.
108
# Give a hint of where libperl.so can be found.
109
USE_LDCONFIG=	${PREFIX}/${_ARCH_LIB}/CORE
109
USE_LDCONFIG=	${PREFIX}/${_ARCH_LIB}/CORE
110
110
111
LOCALE_CLEANUP=	LANG="" LC_ALL="" LC_COLLATE="" LC_CTYPE="" \
111
CONFIGURE_ENV+=	UNAME_v="$$(uname -v | sed 'y/=/ /')"
112
		LC_MESSAGES="" LC_MONETARY="" LC_NUMERIC="" \
113
		LC_TIME=""
114
CONFIGURE_ENV+=	${LOCALE_CLEANUP} UNAME_v="$$(uname -v | sed 'y/=/ /')"
115
MAKE_ENV+=	${LOCALE_CLEANUP}
116
112
117
SUB_LIST+=	PERL_VERSION=${PERL_VERSION} \
113
SUB_LIST+=	PERL_VERSION=${PERL_VERSION} \
118
		PERL_VER=${PERL_VER} \
114
		PERL_VER=${PERL_VER} \
(-)lang/rubinius/Makefile (-3 / +1 lines)
Lines 50-55 LLVM38_DESC= LLVM 3.8 Link Here
50
LLVM39_DESC=	LLVM 3.9
50
LLVM39_DESC=	LLVM 3.9
51
51
52
USES=		execinfo gmake perl5 readline tar:bzip2 libedit
52
USES=		execinfo gmake perl5 readline tar:bzip2 libedit
53
USE_LOCALE=	en_US.UTF-8
53
USE_OPENSSL=	yes
54
USE_OPENSSL=	yes
54
USE_RUBY=	yes
55
USE_RUBY=	yes
55
RUBY_NO_RUN_DEPENDS=	yes
56
RUBY_NO_RUN_DEPENDS=	yes
Lines 70-78 MAKE_ENV+= HOME=${WRKSRC} Link Here
70
# Hack to switch to a local gem path so locally activated rake can be used
71
# Hack to switch to a local gem path so locally activated rake can be used
71
MAKE_ENV+=	GEM_PATH=${GEM_PATH}
72
MAKE_ENV+=	GEM_PATH=${GEM_PATH}
72
73
73
# Hack to build under a UTF-8 locale
74
MAKE_ENV+=	LANG=en_US.UTF-8
75
76
F_OS=		${OPSYS:tl}
74
F_OS=		${OPSYS:tl}
77
F_MAJOR=	${OSREL:C/\..*$//}
75
F_MAJOR=	${OSREL:C/\..*$//}
78
FREEBSD_DIR=	${F_ARCH}-${F_OS}-${F_MAJOR}
76
FREEBSD_DIR=	${F_ARCH}-${F_OS}-${F_MAJOR}
(-)lang/ruby21/Makefile (-2 / +1 lines)
Lines 30-41 CONFIGURE_ARGS= ${RUBY_CONFIGURE_ARGS} \ Link Here
30
		--with-ruby-version=minor \
30
		--with-ruby-version=minor \
31
		--with-sitedir="${PREFIX}/lib/ruby/site_ruby" \
31
		--with-sitedir="${PREFIX}/lib/ruby/site_ruby" \
32
		--with-vendordir="${PREFIX}/lib/ruby/vendor_ruby"
32
		--with-vendordir="${PREFIX}/lib/ruby/vendor_ruby"
33
CONFIGURE_ENV=	LC_ALL=C debugflags=
33
CONFIGURE_ENV=	debugflags=
34
CPPFLAGS+=	-I${LOCALBASE}/include
34
CPPFLAGS+=	-I${LOCALBASE}/include
35
GNU_CONFIGURE=	yes
35
GNU_CONFIGURE=	yes
36
# Keep this, else ruby will fail to load libraries dependent of libpthread.
36
# Keep this, else ruby will fail to load libraries dependent of libpthread.
37
LIBS+=		-lpthread -L${LOCALBASE}/lib
37
LIBS+=		-lpthread -L${LOCALBASE}/lib
38
MAKE_ENV=	LC_ALL=C
39
USE_LDCONFIG=	yes
38
USE_LDCONFIG=	yes
40
USE_OPENSSL=	yes
39
USE_OPENSSL=	yes
41
USES=		autoreconf cpe execinfo tar:xz
40
USES=		autoreconf cpe execinfo tar:xz
(-)lang/ruby22/Makefile (-2 / +1 lines)
Lines 32-43 CONFIGURE_ARGS= ${RUBY_CONFIGURE_ARGS} \ Link Here
32
		--with-ruby-version=minor \
32
		--with-ruby-version=minor \
33
		--with-sitedir="${PREFIX}/lib/ruby/site_ruby" \
33
		--with-sitedir="${PREFIX}/lib/ruby/site_ruby" \
34
		--with-vendordir="${PREFIX}/lib/ruby/vendor_ruby"
34
		--with-vendordir="${PREFIX}/lib/ruby/vendor_ruby"
35
CONFIGURE_ENV=	LC_ALL=C debugflags=
35
CONFIGURE_ENV=	debugflags=
36
CPPFLAGS+=	-I${LOCALBASE}/include
36
CPPFLAGS+=	-I${LOCALBASE}/include
37
GNU_CONFIGURE=	yes
37
GNU_CONFIGURE=	yes
38
# Keep this, else ruby will fail to load libraries dependent of libpthread.
38
# Keep this, else ruby will fail to load libraries dependent of libpthread.
39
LIBS+=		-lpthread -L${LOCALBASE}/lib
39
LIBS+=		-lpthread -L${LOCALBASE}/lib
40
MAKE_ENV=	LC_ALL=C
41
USE_LDCONFIG=	yes
40
USE_LDCONFIG=	yes
42
USES=		autoreconf cpe execinfo tar:xz ssl
41
USES=		autoreconf cpe execinfo tar:xz ssl
43
WRKSRC=		${RUBY_WRKSRC}
42
WRKSRC=		${RUBY_WRKSRC}
(-)lang/ruby23/Makefile (-2 / +1 lines)
Lines 30-41 CONFIGURE_ARGS= ${RUBY_CONFIGURE_ARGS} \ Link Here
30
		--with-ruby-version=minor \
30
		--with-ruby-version=minor \
31
		--with-sitedir="${PREFIX}/lib/ruby/site_ruby" \
31
		--with-sitedir="${PREFIX}/lib/ruby/site_ruby" \
32
		--with-vendordir="${PREFIX}/lib/ruby/vendor_ruby"
32
		--with-vendordir="${PREFIX}/lib/ruby/vendor_ruby"
33
CONFIGURE_ENV=	LC_ALL=C debugflags=
33
CONFIGURE_ENV=	debugflags=
34
CPPFLAGS+=	-I${LOCALBASE}/include
34
CPPFLAGS+=	-I${LOCALBASE}/include
35
GNU_CONFIGURE=	yes
35
GNU_CONFIGURE=	yes
36
# Keep this, else ruby will fail to load libraries dependent of libpthread.
36
# Keep this, else ruby will fail to load libraries dependent of libpthread.
37
LIBS+=		-lpthread -L${LOCALBASE}/lib
37
LIBS+=		-lpthread -L${LOCALBASE}/lib
38
MAKE_ENV=	LC_ALL=C
39
USE_LDCONFIG=	yes
38
USE_LDCONFIG=	yes
40
USES=		autoreconf cpe execinfo ssl tar:xz
39
USES=		autoreconf cpe execinfo ssl tar:xz
41
WRKSRC=		${RUBY_WRKSRC}
40
WRKSRC=		${RUBY_WRKSRC}
(-)lang/ruby24/Makefile (-2 / +1 lines)
Lines 31-42 CONFIGURE_ARGS= ${RUBY_CONFIGURE_ARGS} \ Link Here
31
		--with-ruby-version=minor \
31
		--with-ruby-version=minor \
32
		--with-sitedir="${PREFIX}/lib/ruby/site_ruby" \
32
		--with-sitedir="${PREFIX}/lib/ruby/site_ruby" \
33
		--with-vendordir="${PREFIX}/lib/ruby/vendor_ruby"
33
		--with-vendordir="${PREFIX}/lib/ruby/vendor_ruby"
34
CONFIGURE_ENV=	LC_ALL=C debugflags=
34
CONFIGURE_ENV=	debugflags=
35
CPPFLAGS+=	-I${LOCALBASE}/include
35
CPPFLAGS+=	-I${LOCALBASE}/include
36
GNU_CONFIGURE=	yes
36
GNU_CONFIGURE=	yes
37
# Keep this, else ruby will fail to load libraries dependent of libpthread.
37
# Keep this, else ruby will fail to load libraries dependent of libpthread.
38
LIBS+=		-lpthread -L${LOCALBASE}/lib
38
LIBS+=		-lpthread -L${LOCALBASE}/lib
39
MAKE_ENV=	LC_ALL=C
40
USE_LDCONFIG=	yes
39
USE_LDCONFIG=	yes
41
USES=		autoreconf cpe execinfo ssl tar:xz
40
USES=		autoreconf cpe execinfo ssl tar:xz
42
WRKSRC=		${RUBY_WRKSRC}
41
WRKSRC=		${RUBY_WRKSRC}
(-)lang/sbcl/Makefile (-1 / +1 lines)
Lines 179-185 do-build: Link Here
179
	(cd ${WRKSRC} && ${SETENV} CC="${CC}" ${SH} make.sh ${MAKE_SH_ARGS})
179
	(cd ${WRKSRC} && ${SETENV} CC="${CC}" ${SH} make.sh ${MAKE_SH_ARGS})
180
	${RM} -r ${WRKSRC}/contrib/sb-cover/test-output
180
	${RM} -r ${WRKSRC}/contrib/sb-cover/test-output
181
	${REINPLACE_CMD} -E -e \
181
	${REINPLACE_CMD} -E -e \
182
		's|\$$Date\$$|'"`${SETENV} LANG=C /bin/date '+%B %d, %Y'`|g" \
182
		's|\$$Date\$$|'"`/bin/date '+%B %d, %Y'`|g" \
183
		${WRKSRC}/doc/sbcl.1
183
		${WRKSRC}/doc/sbcl.1
184
184
185
do-install:
185
do-install:
(-)lang/tcl84/Makefile (-5 / +2 lines)
Lines 27-32 WRKSRC= ${WRKDIR}/${PORTNAME}${PORTVERS Link Here
27
27
28
ALL_TARGET=	all
28
ALL_TARGET=	all
29
INSTALL_TARGET=	install install-libraries
29
INSTALL_TARGET=	install install-libraries
30
TEST_TARGET=	test
30
31
31
USE_LDCONFIG=	yes
32
USE_LDCONFIG=	yes
32
GNU_CONFIGURE=	yes
33
GNU_CONFIGURE=	yes
Lines 40-47 SHORT_TCL_VER= ${TCL_VER:S/8./8/} Link Here
40
MAN_SUFFIX=	${PKGBASE}
41
MAN_SUFFIX=	${PKGBASE}
41
42
42
MAKE_ENV=	SHORT_TCL_VER="${SHORT_TCL_VER}" \
43
MAKE_ENV=	SHORT_TCL_VER="${SHORT_TCL_VER}" \
43
		MAN_SUFFIX=.${MAN_SUFFIX} \
44
		MAN_SUFFIX=.${MAN_SUFFIX}
44
		LANG=C LC_ALL=C	# LANG=C is required for some of UTF-using tests
45
45
46
PLIST_SUB=	TCL_VER=${TCL_VER} \
46
PLIST_SUB=	TCL_VER=${TCL_VER} \
47
		SHORT_TCL_VER=${SHORT_TCL_VER}
47
		SHORT_TCL_VER=${SHORT_TCL_VER}
Lines 78-84 post-install: Link Here
78
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/tclsh${TCL_VER}
78
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/tclsh${TCL_VER}
79
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libtcl${SHORT_TCL_VER}.so.1
79
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libtcl${SHORT_TCL_VER}.so.1
80
80
81
regression-test:	build
82
	cd ${WRKSRC} && LC_ALL=C ${MAKE} test
83
84
.include <bsd.port.mk>
81
.include <bsd.port.mk>
(-)lang/tcl85/Makefile (-2 / +1 lines)
Lines 42-49 SHORT_TCL_VER= ${TCL_VER:S/8./8/} Link Here
42
MAN_SUFFIX=	${PORTNAME}${SHORT_TCL_VER}
42
MAN_SUFFIX=	${PORTNAME}${SHORT_TCL_VER}
43
43
44
MAKE_ENV=	SHORT_TCL_VER=${SHORT_TCL_VER} \
44
MAKE_ENV=	SHORT_TCL_VER=${SHORT_TCL_VER} \
45
		MAN_SUFFIX=.${MAN_SUFFIX} \
45
		MAN_SUFFIX=.${MAN_SUFFIX}
46
		LANG=C LC_ALL=C
47
46
48
PLIST_SUB=	TCL_VER=${TCL_VER} \
47
PLIST_SUB=	TCL_VER=${TCL_VER} \
49
		SHORT_TCL_VER=${SHORT_TCL_VER}
48
		SHORT_TCL_VER=${SHORT_TCL_VER}
(-)lang/tcl86/Makefile (-2 / +1 lines)
Lines 52-59 SHORT_TCL_VER= ${TCL_VER:S/.//} Link Here
52
MAN_SUFFIX=	${PKGBASE}
52
MAN_SUFFIX=	${PKGBASE}
53
53
54
MAKE_ENV=	SHORT_TCL_VER=${SHORT_TCL_VER} \
54
MAKE_ENV=	SHORT_TCL_VER=${SHORT_TCL_VER} \
55
		MAN_SUFFIX=.${MAN_SUFFIX} \
55
		MAN_SUFFIX=.${MAN_SUFFIX}
56
		LANG=C LC_ALL=C	# LANG=C is required for some of UTF-using tests
57
56
58
PLIST_SUB=	TCL_VER=${TCL_VER} \
57
PLIST_SUB=	TCL_VER=${TCL_VER} \
59
		SHORT_TCL_VER=${SHORT_TCL_VER}
58
		SHORT_TCL_VER=${SHORT_TCL_VER}
(-)lang/tcl87/Makefile (-2 / +1 lines)
Lines 53-60 TCL_VER= ${PORTVERSION:R:R} Link Here
53
MAN_SUFFIX=	${PKGBASE}
53
MAN_SUFFIX=	${PKGBASE}
54
54
55
MAKE_ENV=	SHORT_TCL_VER=${PKGNAMESUFFIX} \
55
MAKE_ENV=	SHORT_TCL_VER=${PKGNAMESUFFIX} \
56
		MAN_SUFFIX=.${MAN_SUFFIX} \
56
		MAN_SUFFIX=.${MAN_SUFFIX}
57
		LANG=C LC_ALL=C	# LANG=C is required for some of UTF-using tests
58
57
59
PLIST_SUB=	TCL_VER=${TCL_VER} \
58
PLIST_SUB=	TCL_VER=${TCL_VER} \
60
		PKGNAMESUFFIX=${PKGNAMESUFFIX}
59
		PKGNAMESUFFIX=${PKGNAMESUFFIX}
(-)lang/yap-devel/Makefile (-4 lines)
Lines 45-54 swipl_OLD_CMD= /usr/bin/swipl Link Here
45
swipl_CMD=	${LOCALBASE}/bin/swipl # installed by lang/swi-pl
45
swipl_CMD=	${LOCALBASE}/bin/swipl # installed by lang/swi-pl
46
USE_GCC=	any
46
USE_GCC=	any
47
47
48
EXTRACT_CMD=	${GZIP_CMD}
49
EXTRACT_BEFORE_ARGS=	-dc
50
EXTRACT_AFTER_ARGS=	| ${SETENV} LC_ALL=en_US.UTF-8 ${TAR} -xf -
51
52
DOCSDIR=	${PREFIX}/share/doc/Yap
48
DOCSDIR=	${PREFIX}/share/doc/Yap
53
DATADIR=	${PREFIX}/share/Yap
49
DATADIR=	${PREFIX}/share/Yap
54
50
(-)mail/mew/files/patch-info__Makefile (-2 / +1 lines)
Lines 28-36 Link Here
28
+	    -e 's/@set en/@set ja/' mew.texi > tmp.ja.texi
28
+	    -e 's/@set en/@set ja/' mew.texi > tmp.ja.texi
29
 	$(RM) mew.ja.info*
29
 	$(RM) mew.ja.info*
30
 	$(TOUCH) mew.ja.info
30
 	$(TOUCH) mew.ja.info
31
-	$(EMACS) -batch -q -no-site-file -l texinfmt \
31
 	$(EMACS) -batch -q -no-site-file -l texinfmt \
32
-		-f batch-texinfo-format mew.texi
32
-		-f batch-texinfo-format mew.texi
33
+	LC_ALL=C $(EMACS) -batch -q -no-site-file -l texinfmt \
34
+		-f batch-texinfo-format tmp.ja.texi
33
+		-f batch-texinfo-format tmp.ja.texi
35
+	$(RM) tmp.ja.texi
34
+	$(RM) tmp.ja.texi
36
 
35
 
(-)math/geonext/Makefile (-1 lines)
Lines 40-46 PLIST_SUB+= MASTER="@comment " Link Here
40
.endif
40
.endif
41
41
42
# For the slave ports
42
# For the slave ports
43
LANG=	language=${WITH_LANG}
44
.if ${WITH_LANG} != "en"
43
.if ${WITH_LANG} != "en"
45
PKGNAMEPREFIX=	${WITH_LANG}-
44
PKGNAMEPREFIX=	${WITH_LANG}-
46
.endif
45
.endif
(-)math/jakarta-commons-math/Makefile (-3 / +2 lines)
Lines 18-26 COMMENT= Java library of self-contained Link Here
18
18
19
LICENSE=	APACHE20
19
LICENSE=	APACHE20
20
20
21
USE_ANT=	yes
21
USE_JAVA=	yes
22
USE_JAVA=	yes
22
JAVA_VERSION=	1.6 1.7
23
JAVA_VERSION=	1.6 1.7
23
USE_ANT=	yes
24
USE_LOCALE=	en_US.ISO8859-1
24
25
25
ALL_TARGET=	jar
26
ALL_TARGET=	jar
26
MAKE_ARGS=	-Dlibdir=${WRKDIR} -Dnoget=true
27
MAKE_ARGS=	-Dlibdir=${WRKDIR} -Dnoget=true
Lines 31-38 PLIST_FILES+= %%JAVAJARDIR%%/${DESTJARFI Link Here
31
32
32
OPTIONS_DEFINE=	DOCS
33
OPTIONS_DEFINE=	DOCS
33
34
34
MAKE_ENV=	LANG=en_US.ISO8859-1
35
36
.include <bsd.port.options.mk>
35
.include <bsd.port.options.mk>
37
36
38
.if ${PORT_OPTIONS:MDOCS}
37
.if ${PORT_OPTIONS:MDOCS}
(-)math/jakarta-commons-math3/Makefile (-3 / +2 lines)
Lines 17-25 COMMENT= Java library of self-contained Link Here
17
17
18
LICENSE=	APACHE20
18
LICENSE=	APACHE20
19
19
20
USE_ANT=	yes
20
USE_JAVA=	yes
21
USE_JAVA=	yes
21
JAVA_VERSION=	1.6+
22
JAVA_VERSION=	1.6+
22
USE_ANT=	yes
23
USE_LOCALE=	en_US.ISO8859-1
23
24
24
ALL_TARGET=	jar
25
ALL_TARGET=	jar
25
MAKE_ARGS=	-Dlibdir=${WRKDIR} -Dnoget=true
26
MAKE_ARGS=	-Dlibdir=${WRKDIR} -Dnoget=true
Lines 30-37 PLIST_FILES+= %%JAVAJARDIR%%/${DESTJARFI Link Here
30
31
31
OPTIONS_DEFINE=	DOCS
32
OPTIONS_DEFINE=	DOCS
32
33
33
MAKE_ENV=	LANG=en_US.ISO8859-1
34
35
.include <bsd.port.options.mk>
34
.include <bsd.port.options.mk>
36
35
37
.if ${PORT_OPTIONS:MDOCS}
36
.if ${PORT_OPTIONS:MDOCS}
(-)math/scilab/Makefile (-2 / +1 lines)
Lines 25-30 RUN_DEPENDS= xdg-open:devel/xdg-utils Link Here
25
25
26
USES=		cpe desktop-file-utils fortran gettext gmake iconv \
26
USES=		cpe desktop-file-utils fortran gettext gmake iconv \
27
		libtool ncurses pathfix pkgconfig shared-mime-info
27
		libtool ncurses pathfix pkgconfig shared-mime-info
28
USE_LOCALE=	en_US.UTF-8
28
GNU_CONFIGURE=	yes
29
GNU_CONFIGURE=	yes
29
30
30
INSTALLS_ICONS=	yes
31
INSTALLS_ICONS=	yes
Lines 35-42 CONFIGURE_ARGS= --with-gfortran \ Link Here
35
		--without-emf \
36
		--without-emf \
36
		-disable-static-system-lib
37
		-disable-static-system-lib
37
CONFIGURE_ENV=	BLAS_LIBS="${BLASLIB}" LAPACK_LIBS="${LAPACKLIB}"
38
CONFIGURE_ENV=	BLAS_LIBS="${BLASLIB}" LAPACK_LIBS="${LAPACKLIB}"
38
MAKE_ENV=	LANG=en_US.UTF-8 \
39
		LC_ALL=en_US.UTF-8
40
INSTALL_TARGET=	install-strip
39
INSTALL_TARGET=	install-strip
41
40
42
MAKE_JOBS_UNSAFE=	yes
41
MAKE_JOBS_UNSAFE=	yes
(-)math/scilab-toolbox-sivp/Makefile (-1 / +1 lines)
Lines 21-27 DOS2UNIX_FILES= etc/SIVP.start \ Link Here
21
21
22
SCILAB_CMD=	${LOCALBASE}/bin/scilab-adv-cli
22
SCILAB_CMD=	${LOCALBASE}/bin/scilab-adv-cli
23
SCILAB_ARGS=	-noatomsautoload -nb -nouserstartup
23
SCILAB_ARGS=	-noatomsautoload -nb -nouserstartup
24
MAKE_ENV=	LC_ALL="C" SCI_JAVA_ENABLE_HEADLESS=1 SCI_DISABLE_TK=1
24
MAKE_ENV=	SCI_JAVA_ENABLE_HEADLESS=1 SCI_DISABLE_TK=1
25
25
26
CONTRIBDIR?=	share/scilab/contrib
26
CONTRIBDIR?=	share/scilab/contrib
27
TOOLBOXDIR_REL?=	${CONTRIBDIR}/${PORTNAME}
27
TOOLBOXDIR_REL?=	${CONTRIBDIR}/${PORTNAME}
(-)math/scilab-toolbox-swt/Makefile (-1 / +1 lines)
Lines 16-22 RUN_DEPENDS:= ${BUILD_DEPENDS} Link Here
16
16
17
SCILAB_CMD=	${LOCALBASE}/bin/scilab-adv-cli
17
SCILAB_CMD=	${LOCALBASE}/bin/scilab-adv-cli
18
SCILAB_ARGS=	-noatomsautoload -nb -nouserstartup
18
SCILAB_ARGS=	-noatomsautoload -nb -nouserstartup
19
MAKE_ENV=	LC_ALL="C" SCI_JAVA_ENABLE_HEADLESS=1 SCI_DISABLE_TK=1
19
MAKE_ENV=	SCI_JAVA_ENABLE_HEADLESS=1 SCI_DISABLE_TK=1
20
20
21
CONTRIBDIR?=	share/scilab/contrib
21
CONTRIBDIR?=	share/scilab/contrib
22
TOOLBOXDIR_REL?=	${CONTRIBDIR}/${PORTNAME}
22
TOOLBOXDIR_REL?=	${CONTRIBDIR}/${PORTNAME}
(-)multimedia/bino/Makefile (-5 lines)
Lines 34-42 OPTIONS_SUB= yes Link Here
34
NLS_USES=	gettext
34
NLS_USES=	gettext
35
NLS_CONFIGURE_ENABLE=nls
35
NLS_CONFIGURE_ENABLE=nls
36
36
37
# fixes build on non UTF-8 enviroments
38
post-patch:
39
	@${REINPLACE_CMD} -e 's|echo $<|LANG=C; LC_ALL=C; &|' \
40
		${WRKSRC}/src/Makefile.in
41
42
.include <bsd.port.mk>
37
.include <bsd.port.mk>
(-)multimedia/libvpx/Makefile (-1 lines)
Lines 42-48 CONFIGURE_ARGS+=--prefix=${PREFIX} \ Link Here
42
		--enable-vp8 \
42
		--enable-vp8 \
43
		--enable-vp9
43
		--enable-vp9
44
MAKE_ARGS+=	verbose=yes
44
MAKE_ARGS+=	verbose=yes
45
MAKE_ENV=	LC_ALL=C
46
45
47
OPTIONS_SUB=		SHARED
46
OPTIONS_SUB=		SHARED
48
47
(-)multimedia/miro/Makefile (-1 / +1 lines)
Lines 67-73 post-patch: Link Here
67
67
68
.if defined(MAINTAINER_MODE)
68
.if defined(MAINTAINER_MODE)
69
regression-test:	install
69
regression-test:	install
70
	LANG=C LC_ALL=C ${PREFIX}/bin/miro --unittest
70
	${PREFIX}/bin/miro --unittest
71
.endif
71
.endif
72
72
73
.include <bsd.port.post.mk>
73
.include <bsd.port.post.mk>
(-)net-mgmt/smokeping/Makefile (-1 lines)
Lines 41-47 CONFIGURE_ARGS+= \ Link Here
41
		--with-htdocs-dir=${PREFIX}/smokeping/htdocs \
41
		--with-htdocs-dir=${PREFIX}/smokeping/htdocs \
42
		--libdir=${PREFIX}/smokeping/lib
42
		--libdir=${PREFIX}/smokeping/lib
43
HTDOCSDIR=	${PREFIX}/smokeping/htdocs
43
HTDOCSDIR=	${PREFIX}/smokeping/htdocs
44
MAKE_ENV=	LC_ALL=C
45
44
46
USE_RC_SUBR=	smokeping
45
USE_RC_SUBR=	smokeping
47
46
(-)net-p2p/mldonkey/Makefile (-3 / +3 lines)
Lines 153-163 do-install: Link Here
153
.endif
153
.endif
154
154
155
install-user: extract
155
install-user: extract
156
.if !defined(LANG)
156
.if !defined(LANGUAGE)
157
	@${ECHO_MSG} "Please call as:  make install-user LANG=<lang>"
157
	@${ECHO_MSG} "Please call as:  make install-user LANGUAGE=<lang>"
158
	@${ECHO_MSG} "with <lang> one of en,de,fr,fr.noaccents,sp !"
158
	@${ECHO_MSG} "with <lang> one of en,de,fr,fr.noaccents,sp !"
159
.else
159
.else
160
	@${CP} ${WRKSRC}/distrib/i18n/gui_messages.ini.${LANG}\
160
	@${CP} ${WRKSRC}/distrib/i18n/gui_messages.ini.${LANGUAGE}\
161
		${HOME}/.mldonkey_gui_messages.ini
161
		${HOME}/.mldonkey_gui_messages.ini
162
.endif
162
.endif
163
163
(-)net-p2p/vuze/Makefile (-1 lines)
Lines 30-36 INSTALLS_ICONS= yes Link Here
30
JARFILE=	${PORTNAME}.jar
30
JARFILE=	${PORTNAME}.jar
31
31
32
# build classpath from BUILD_DEPENDS
32
# build classpath from BUILD_DEPENDS
33
MAKE_ENV=	LANG=C
34
CLASSPATH_JARS=	${BUILD_DEPENDS:C/:.+$//:M*.jar:T}
33
CLASSPATH_JARS=	${BUILD_DEPENDS:C/:.+$//:M*.jar:T}
35
34
36
PLIST_FILES=	%%JAVAJARDIR%%/${JARFILE} \
35
PLIST_FILES=	%%JAVAJARDIR%%/${JARFILE} \
(-)news/cnews/Makefile (-2 / +2 lines)
Lines 148-154 do-install: Link Here
148
.endfor
148
.endfor
149
149
150
test:
150
test:
151
	(cd ${WRKSRC} && ${SETENV} LANG=C ${MAKE_ENV} \
151
	(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} \
152
	${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} r)
152
	${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} r)
153
153
154
.include <bsd.port.mk>
154
.include <bsd.port.mk>
(-)print/pdftk/Makefile (-1 / +1 lines)
Lines 28-34 WRKSRC= ${PATCH_WRKSRC}/${PORTNAME} Link Here
28
28
29
MAKEFILE=	Makefile.FreeBSD
29
MAKEFILE=	Makefile.FreeBSD
30
MAKE_ENV=	GCJ=gcj${CSUFF} GCJH=gcjh${CSUFF} GCPP=cpp${CSUFF} \
30
MAKE_ENV=	GCJ=gcj${CSUFF} GCJH=gcjh${CSUFF} GCPP=cpp${CSUFF} \
31
		OBJCOPY=${OBJCOPY} LANG=C LC_CTYPE=C
31
		OBJCOPY=${OBJCOPY}
32
32
33
PLIST_FILES=	bin/${PORTNAME} man/man1/${PORTNAME}.1.gz
33
PLIST_FILES=	bin/${PORTNAME} man/man1/${PORTNAME}.1.gz
34
34
(-)science/colt/Makefile (-1 / +1 lines)
Lines 22-29 COMPILE_DESC= Install the pre-compiled . Link Here
22
22
23
.if ${PORT_OPTIONS:MCOMPILE}
23
.if ${PORT_OPTIONS:MCOMPILE}
24
USE_ANT=	yes
24
USE_ANT=	yes
25
USE_LOCALE=	en_US.ISO8859-1
25
ALL_TARGET=	build
26
ALL_TARGET=	build
26
MAKE_ENV=	LANG=en_US.ISO8859-1
27
.if ${PORT_OPTIONS:MDOCS}
27
.if ${PORT_OPTIONS:MDOCS}
28
ALL_TARGET+=	javadoc
28
ALL_TARGET+=	javadoc
29
.endif
29
.endif
(-)security/i2p/Makefile (-1 / +1 lines)
Lines 37-47 USE_ANT= yes Link Here
37
USE_JAVA=	yes
37
USE_JAVA=	yes
38
JAVA_BUILD=	jdk
38
JAVA_BUILD=	jdk
39
JAVA_VERSION=	1.6+
39
JAVA_VERSION=	1.6+
40
USE_LOCALE=	en_US.UTF-8
40
41
41
ALL_TARGET=	\
42
ALL_TARGET=	\
42
		updater \
43
		updater \
43
		tarball
44
		tarball
44
MAKE_ENV=	LANG=en_US.UTF-8
45
45
46
PORTDATA=	*
46
PORTDATA=	*
47
47
(-)security/isakmpd/Makefile (-1 / +1 lines)
Lines 22-28 BUILD_DEPENDS+= keynote:security/keynote Link Here
22
22
23
USES=		uidfix
23
USES=		uidfix
24
USE_RC_SUBR=	isakmpd
24
USE_RC_SUBR=	isakmpd
25
MAKE_ENV+=	BINDIR=${PREFIX}/sbin MANDIR=${PREFIX}/man/man LC_ALL=C
25
MAKE_ENV+=	BINDIR=${PREFIX}/sbin MANDIR=${PREFIX}/man/man
26
26
27
USE_OPENSSL=	yes
27
USE_OPENSSL=	yes
28
28
(-)security/py-dfvfs/Makefile (-1 / +2 lines)
Lines 36-43 RUN_DEPENDS= libbde>=a:devel/libbde \ Link Here
36
36
37
NO_ARCH=	yes
37
NO_ARCH=	yes
38
USES=		python:2.7
38
USES=		python:2.7
39
USE_LOCALE=	en_US.UTF-8
39
USE_PYTHON=	distutils autoplist
40
USE_PYTHON=	distutils autoplist
40
TEST_ENV=	${MAKE_ENV} LANG=en_US.UTF-8 PYTHONHTTPSVERIFY=0
41
TEST_ENV=	${MAKE_ENV} PYTHONHTTPSVERIFY=0
41
42
42
do-test:
43
do-test:
43
	@(cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} run_tests.py)
44
	@(cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} run_tests.py)
(-)security/py-plaso/Makefile (-1 / +2 lines)
Lines 51-58 TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}moc Link Here
51
51
52
NO_ARCH=	yes
52
NO_ARCH=	yes
53
USES=		python:2.7
53
USES=		python:2.7
54
USE_LOCALE=	en_US.UTF-8
54
USE_PYTHON=	distutils autoplist
55
USE_PYTHON=	distutils autoplist
55
TEST_ENV=	${MAKE_ENV} LANG=en_US.UTF-8 PYTHONHTTPSVERIFY=0
56
TEST_ENV=	${MAKE_ENV} PYTHONHTTPSVERIFY=0
56
57
57
do-test:
58
do-test:
58
	@(cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} run_tests.py)
59
	@(cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} run_tests.py)
(-)shells/fd/Makefile (-1 / +1 lines)
Lines 11-17 DISTNAME= FD-${PORTVERSION} Link Here
11
MAINTAINER=	knu@FreeBSD.org
11
MAINTAINER=	knu@FreeBSD.org
12
COMMENT=	CUI-based file and directory management tool
12
COMMENT=	CUI-based file and directory management tool
13
13
14
MAKE_ENV=	LANG=ja
14
USE_LOCALE=	ja
15
MAKE_ARGS=	CC="${CC}" CFLAGS="${CFLAGS}" \
15
MAKE_ARGS=	CC="${CC}" CFLAGS="${CFLAGS}" \
16
		PREFIX="\$$(DESTDIR)${PREFIX}" \
16
		PREFIX="\$$(DESTDIR)${PREFIX}" \
17
		CONFDIR="\$$(DESTDIR)${PREFIX}/etc" \
17
		CONFDIR="\$$(DESTDIR)${PREFIX}/etc" \
(-)sysutils/cdrdao/Makefile (-1 / +1 lines)
Lines 66-72 CONFIGURE_ARGS+= --with-mp3-support=no - Link Here
66
66
67
CONFIGURE_ARGS+=	--without-pcctsbin --without-pcctsinc \
67
CONFIGURE_ARGS+=	--without-pcctsbin --without-pcctsinc \
68
			--with-posix-threads=no --with-scglib
68
			--with-posix-threads=no --with-scglib
69
MAKE_ENV=		CCOM=cc LANG=C
69
MAKE_ENV=		CCOM=cc
70
SCSILIBTARGET=		${ARCH:S/powerpc64/powerpc/}-freebsd-cc
70
SCSILIBTARGET=		${ARCH:S/powerpc64/powerpc/}-freebsd-cc
71
71
72
BROKEN_aarch64=		Fails to install: gmake: p: Command not found
72
BROKEN_aarch64=		Fails to install: gmake: p: Command not found
(-)sysutils/pciutils/Makefile (-1 lines)
Lines 20-26 RUN_DEPENDS= ${LOCALBASE}/share/pciids/p Link Here
20
ALL_TARGET=	lspci lspci.8 setpci setpci.8
20
ALL_TARGET=	lspci lspci.8 setpci setpci.8
21
CPPFLAGS+=	-fPIC
21
CPPFLAGS+=	-fPIC
22
LDFLAGS+=	-lpci
22
LDFLAGS+=	-lpci
23
MAKE_ENV=	LANG=C
24
USES=		gmake localbase:ldflags tar:xz
23
USES=		gmake localbase:ldflags tar:xz
25
24
26
PLIST_FILES=	bin/lspci \
25
PLIST_FILES=	bin/lspci \
(-)sysutils/sformat/Makefile (-1 / +1 lines)
Lines 24-30 USES= gmake Link Here
24
.include <bsd.port.pre.mk>
24
.include <bsd.port.pre.mk>
25
25
26
CCOM!=		${BASENAME} ${CC}
26
CCOM!=		${BASENAME} ${CC}
27
MAKE_ENV=	CCOM=${CCOM} LANG=C
27
MAKE_ENV=	CCOM=${CCOM}
28
SFMTTARGET=	${ARCH:S/powerpc64/powerpc/}-freebsd-${CCOM}
28
SFMTTARGET=	${ARCH:S/powerpc64/powerpc/}-freebsd-${CCOM}
29
29
30
post-extract:
30
post-extract:
(-)textproc/linuxdoc-tools/Makefile (-1 lines)
Lines 36-41 DOCS_BUILD_DEPENDS= bash:shells/bash Link Here
36
DOCS_USE=		tex=latex:build tex=pdftex:build tex=dvipsk:build
36
DOCS_USE=		tex=latex:build tex=pdftex:build tex=dvipsk:build
37
DOCS_USES=		makeinfo
37
DOCS_USES=		makeinfo
38
DOCS_CONFIGURE_ENABLE=	docs
38
DOCS_CONFIGURE_ENABLE=	docs
39
DOCS_MAKE_ENV=		LANG=C
40
39
41
.include <bsd.port.mk>
40
.include <bsd.port.mk>
(-)textproc/msort/Makefile (-1 lines)
Lines 28-34 MAKE_ENV+= INCLUDES="-I${LOCALBASE}/incl Link Here
28
GNU_CONFIGURE=	yes
28
GNU_CONFIGURE=	yes
29
USES=		gettext tk:wrapper,run
29
USES=		gettext tk:wrapper,run
30
TEST_TARGET=	test
30
TEST_TARGET=	test
31
TEST_ENV=	LC_ALL=C
32
31
33
PLIST_FILES=	bin/msg bin/msort man/man1/msort.1.gz
32
PLIST_FILES=	bin/msg bin/msort man/man1/msort.1.gz
34
33
(-)textproc/te-hunspell/Makefile (-1 / +1 lines)
Lines 26-32 PLIST_FILES= %%DATADIR%%/te_IN.aff \ Link Here
26
do-build:
26
do-build:
27
	@cd ${WRKSRC}; \
27
	@cd ${WRKSRC}; \
28
		${LOCALBASE}/bin/prezip-bin -d < te.cwl > te.txt; \
28
		${LOCALBASE}/bin/prezip-bin -d < te.cwl > te.txt; \
29
		${SETENV} LANG=te_IN.utf8 ${LOCALBASE}/bin/wordlist2hunspell te.txt te_IN
29
		${SETENV} LANG=te_IN.utf8 LC_ALL=te_IN.utf8 ${LOCALBASE}/bin/wordlist2hunspell te.txt te_IN
30
30
31
do-install:
31
do-install:
32
	${MKDIR} ${STAGEDIR}${DATADIR}/
32
	${MKDIR} ${STAGEDIR}${DATADIR}/
(-)www/jericho-html/Makefile (-1 / +1 lines)
Lines 21-27 PLIST_FILES+= %%JAVAJARDIR%%/${PORTNAME} Link Here
21
21
22
do-build:
22
do-build:
23
	(cd ${WRKSRC} && ${RM} -r classes/* && ${SETENV}         \
23
	(cd ${WRKSRC} && ${RM} -r classes/* && ${SETENV}         \
24
		LANG=en_US.ISO8859-1 ${JAVAC}                     \
24
		LANG=en_US.ISO8859-1 LC_ALL=en_US.ISO8859-1 ${JAVAC} \
25
		-classpath ${INTERFACES:S, ,,g}                   \
25
		-classpath ${INTERFACES:S, ,,g}                   \
26
		-d classes src/java/net/htmlparser/jericho/*.java \
26
		-d classes src/java/net/htmlparser/jericho/*.java \
27
		src/java/net/htmlparser/jericho/nodoc/*.java)
27
		src/java/net/htmlparser/jericho/nodoc/*.java)
(-)www/tdom/Makefile (-1 lines)
Lines 20-26 USE_GITHUB= yes Link Here
20
CONFIGURE_ARGS=	--enable-threads --disable-tdomalloc
20
CONFIGURE_ARGS=	--enable-threads --disable-tdomalloc
21
21
22
TEST_TARGET=	test
22
TEST_TARGET=	test
23
TEST_ENV=	LANG=C
24
23
25
PLIST_SUB=	PORTVERSION=${PORTVERSION}
24
PLIST_SUB=	PORTVERSION=${PORTVERSION}
26
25
(-)www/tinymce/Makefile (-1 / +1 lines)
Lines 34-40 MS_PLIST= ${WRKDIR}/.ms-pkg-plist Link Here
34
genplist: do-clean extract
34
genplist: do-clean extract
35
	@${ECHO} "@owner www" > ${MS_PLIST}
35
	@${ECHO} "@owner www" > ${MS_PLIST}
36
	@${ECHO} "@group www" >> ${MS_PLIST}
36
	@${ECHO} "@group www" >> ${MS_PLIST}
37
	@cd ${WRKSRC}/ && ${FIND} -s * -type f | env LC_ALL=C ${SED} 's|^|%%WWWDIR%%/|' >> ${MS_PLIST}
37
	@cd ${WRKSRC}/ && ${FIND} -s * -type f | ${SED} 's|^|%%WWWDIR%%/|' >> ${MS_PLIST}
38
	@${ECHO} "@owner" >> ${MS_PLIST}
38
	@${ECHO} "@owner" >> ${MS_PLIST}
39
	@${ECHO} "@group" >> ${MS_PLIST}
39
	@${ECHO} "@group" >> ${MS_PLIST}
40
	@${INSTALL} -m 600 ${MS_PLIST} ${PLIST}
40
	@${INSTALL} -m 600 ${MS_PLIST} ${PLIST}
(-)www/trac-tags/Makefile (-1 lines)
Lines 22-28 NO_ARCH= yes Link Here
22
22
23
.if !defined(SVN_REV)
23
.if !defined(SVN_REV)
24
.if defined(BOOTSTRAP)
24
.if defined(BOOTSTRAP)
25
LANG=		"C"
26
SVN_REV!=	svn info http://trac-hacks.org/svn/tagsplugin/trunk/ | ${GREP} Revision | cut -d' ' -f2
25
SVN_REV!=	svn info http://trac-hacks.org/svn/tagsplugin/trunk/ | ${GREP} Revision | cut -d' ' -f2
27
.else
26
.else
28
.include "Makefile.svn_rev"
27
.include "Makefile.svn_rev"
(-)www/trac-wysiwyg/Makefile (-1 lines)
Lines 24-30 NO_ARCH= yes Link Here
24
.if !defined(SVN_REV)
24
.if !defined(SVN_REV)
25
.if defined(BOOTSTRAP)
25
.if defined(BOOTSTRAP)
26
SVN_URL=	http://trac-hacks.org/svn/tracwysiwygplugin/0.12/
26
SVN_URL=	http://trac-hacks.org/svn/tracwysiwygplugin/0.12/
27
LANG=		"C"
28
SVN_REV!=	svn info ${SVN_URL} | ${GREP} Revision | cut -d' ' -f2
27
SVN_REV!=	svn info ${SVN_URL} | ${GREP} Revision | cut -d' ' -f2
29
.else
28
.else
30
.include "Makefile.svn_rev"
29
.include "Makefile.svn_rev"
(-)www/websh/Makefile (-1 / +1 lines)
Lines 53-59 post-configure: Link Here
53
		-e 's,-DPACKAGE_[^=]*=."[^"]*",,g' ${WRKSRC}/Makefile
53
		-e 's,-DPACKAGE_[^=]*=."[^"]*",,g' ${WRKSRC}/Makefile
54
54
55
post-build test:
55
post-build test:
56
	${SETENV} LANG=C HOME=${WRKDIR} ${MAKE_CMD} -C ${WRKSRC} test | ${AWK} '\
56
	${SETENV} HOME=${WRKDIR} ${MAKE_CMD} -C ${WRKSRC} test | ${AWK} '\
57
		/Failed/ && $$NF {failed=1}	\
57
		/Failed/ && $$NF {failed=1}	\
58
		END {exit failed}	\
58
		END {exit failed}	\
59
		{print}'
59
		{print}'
(-)www/zenphoto/Makefile (-1 / +1 lines)
Lines 40-46 MS_PLIST= ${WRKDIR}/.ms-pkg-plist Link Here
40
genplist: do-clean extract
40
genplist: do-clean extract
41
	${ECHO_CMD} '@owner www' > ${MS_PLIST}
41
	${ECHO_CMD} '@owner www' > ${MS_PLIST}
42
	${ECHO_CMD} '@group www' >> ${MS_PLIST}
42
	${ECHO_CMD} '@group www' >> ${MS_PLIST}
43
	cd ${WRKSRC}/ && ${FIND} * -type f | ${SETENV} LC_ALL=C ${SORT} | ${SED} 's|^|%%WWWDIR%%/|' >> ${MS_PLIST}
43
	cd ${WRKSRC}/ && ${FIND} * -type f | ${SORT} | ${SED} 's|^|%%WWWDIR%%/|' >> ${MS_PLIST}
44
.for dir in ${MS_DIR}
44
.for dir in ${MS_DIR}
45
	${ECHO_CMD} '@dir %%WWWDIR%%/${dir}' >> ${MS_PLIST}
45
	${ECHO_CMD} '@dir %%WWWDIR%%/${dir}' >> ${MS_PLIST}
46
.endfor
46
.endfor
(-)x11-fonts/fontconfig/Makefile (-1 lines)
Lines 43-49 CONFIGURE_ARGS+= --enable-static Link Here
43
# Python is not required, because fc-blanks.h is available in distfile
43
# Python is not required, because fc-blanks.h is available in distfile
44
CONFIGURE_ENV=	PYTHON=":"
44
CONFIGURE_ENV=	PYTHON=":"
45
45
46
MAKE_ENV=	LC_ALL=C
47
PKGINSTALL=	${WRKDIR}/pkg-install
46
PKGINSTALL=	${WRKDIR}/pkg-install
48
INSTALL_TARGET=install-strip
47
INSTALL_TARGET=install-strip
49
48
(-)x11-toolkits/Xmt/Makefile (-1 lines)
Lines 16-22 WRKSRC= ${WRKDIR}/xmt400 Link Here
16
16
17
USES=		motif imake tar:tgz
17
USES=		motif imake tar:tgz
18
USE_LDCONFIG=	yes
18
USE_LDCONFIG=	yes
19
MAKE_ENV=	LANG=C
20
19
21
post-patch:
20
post-patch:
22
	${TOUCH} ${WRKSRC}/clients/mockup.man
21
	${TOUCH} ${WRKSRC}/clients/mockup.man
(-)x11-toolkits/open-motif/Makefile (-1 lines)
Lines 25-31 LIB_DEPENDS= libXp.so:x11/libXp \ Link Here
25
		libpng16.so:graphics/png
25
		libpng16.so:graphics/png
26
GNU_CONFIGURE=	yes
26
GNU_CONFIGURE=	yes
27
USE_LDCONFIG=	yes
27
USE_LDCONFIG=	yes
28
MAKE_ENV=	LANG=C
29
CPPFLAGS+=	-DCSRG_BASED -DXUSE_MTSAFE_API -DXNO_MTSAFE_PWDAPI -I${PREFIX}/include
28
CPPFLAGS+=	-DCSRG_BASED -DXUSE_MTSAFE_API -DXNO_MTSAFE_PWDAPI -I${PREFIX}/include
30
USE_CSTD=	gnu89
29
USE_CSTD=	gnu89
31
INSTALL_TARGET=	install-strip
30
INSTALL_TARGET=	install-strip
(-)x11-toolkits/p5-Gtk2/Makefile (-1 lines)
Lines 22-28 RUN_DEPENDS= p5-Cairo>=1:graphics/p5-Cai Link Here
22
		p5-Pango>=1.220:x11-toolkits/p5-Pango
22
		p5-Pango>=1.220:x11-toolkits/p5-Pango
23
23
24
CONFIGURE_ENV=	FORCE_MAKE_CMD=yes
24
CONFIGURE_ENV=	FORCE_MAKE_CMD=yes
25
MAKE_ENV=	LANG=C
26
USES=		gmake perl5
25
USES=		gmake perl5
27
USE_PERL5=	configure
26
USE_PERL5=	configure
28
USE_GNOME=	gtk20 pango
27
USE_GNOME=	gtk20 pango

Return to bug 215882