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

Collapse All | Expand All

(-)Mk/Uses/autoreconf.mk (-5 / +1 lines)
Lines 52-58 Link Here
52
52
53
.if !defined(_INCLUDE_USES_AUTORECONF_MK)
53
.if !defined(_INCLUDE_USES_AUTORECONF_MK)
54
_INCLUDE_USES_AUTORECONF_MK=	yes
54
_INCLUDE_USES_AUTORECONF_MK=	yes
55
_USES_POST+=		autoreconf
55
_USES_POST+=	autoreconf
56
56
57
BUILD_DEPENDS+=	autoconf-2.69:${PORTSDIR}/devel/autoconf \
57
BUILD_DEPENDS+=	autoconf-2.69:${PORTSDIR}/devel/autoconf \
58
		autoheader-2.69:${PORTSDIR}/devel/autoconf \
58
		autoheader-2.69:${PORTSDIR}/devel/autoconf \
Lines 60-69 BUILD_DEPENDS+= autoconf-2.69:${PORTSDIR Link Here
60
		aclocal-1.14:${PORTSDIR}/devel/automake \
60
		aclocal-1.14:${PORTSDIR}/devel/automake \
61
		automake-1.14:${PORTSDIR}/devel/automake
61
		automake-1.14:${PORTSDIR}/devel/automake
62
62
63
.if ${USES:Mgettext} && empty(gettext_ARGS:Mrun)
64
BUILD_DEPENDS+=	autopoint:${PORTSDIR}/devel/gettext
65
.endif
66
67
.if ${USES:Mlibtool} && empty(libtool_ARGS:Mbuild)
63
.if ${USES:Mlibtool} && empty(libtool_ARGS:Mbuild)
68
BUILD_DEPENDS+=	libtoolize:${PORTSDIR}/devel/libtool
64
BUILD_DEPENDS+=	libtoolize:${PORTSDIR}/devel/libtool
69
.endif
65
.endif
(-)Mk/Uses/gettext-runtime.mk (+28 lines)
Line 0 Link Here
1
# $FreeBSD$
2
#
3
# Handle dependency on the gettext-runtime (libintl) port
4
#
5
# Feature:	gettext-runtime
6
# Usage:	USES=gettext-runtime or USES=gettext-runtime:ARGS
7
# Valid ARGS:	lib (default), build, run
8
#
9
# MAINTAINER:	portmgr@FreeBSD.org
10
11
.if !defined(_INCLUDE_USES_GETTEXT_RUNTIME_MK)
12
_INCLUDE_USES_GETTEXT_RUNTIME_MK=	yes
13
14
.if empty(gettext-runtime_ARGS)
15
gettext-runtime_ARGS=	lib
16
.endif
17
18
.if ${gettext-runtime_ARGS:Mlib}
19
LIB_DEPENDS+=	libintl.so:${PORTSDIR}/devel/gettext-runtime
20
.endif
21
.if ${gettext-runtime_ARGS:Mbuild}
22
BUILD_DEPENDS+=	gettext:${PORTSDIR}/devel/gettext-runtime
23
.endif
24
.if ${gettext-runtime_ARGS:Mrun}
25
RUN_DEPENDS+=	gettext:${PORTSDIR}/devel/gettext-runtime
26
.endif
27
28
.endif
(-)Mk/Uses/gettext-tools.mk (+25 lines)
Line 0 Link Here
1
# $FreeBSD$
2
#
3
# Handle dependency on the gettext-tools port
4
#
5
# Feature:	gettext-tools
6
# Usage:	USES=gettext-tools or USES=gettext-tools:ARGS
7
# Valid ARGS:	build (default), run
8
#
9
# MAINTAINER:	portmgr@FreeBSD.org
10
11
.if !defined(_INCLUDE_USES_GETTEXT_TOOLS_MK)
12
_INCLUDE_USES_GETTEXT_TOOLS_MK=	yes
13
14
.if empty(gettext-tools_ARGS)
15
gettext-tools_ARGS=	build
16
.endif
17
18
.if ${gettext-tools_ARGS:Mbuild}
19
BUILD_DEPENDS+=	msgfmt:${PORTSDIR}/devel/gettext-tools
20
.endif
21
.if ${gettext-tools_ARGS:Mrun}
22
RUN_DEPENDS+=	msgfmt:${PORTSDIR}/devel/gettext-tools
23
.endif
24
25
.endif
(-)Mk/Uses/gettext.mk (-17 / +8 lines)
Lines 1-30 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
#
2
#
3
# handle dependency on the gettext (libintl) port
3
# Sets a library dependency on gettext-runtime and a build dependency
4
# on gettext-tools.  Same as "USES=gettext-runtime gettext-tools".
4
#
5
#
5
# Feature:	gettext
6
# Feature:	gettext
6
# Usage:	USES=gettext or USES=gettext:ARGS
7
# Usage:	USES=gettext
7
# Valid ARGS:	build, run, lib (default, implicit)
8
#
8
#
9
# MAINTAINER: portmgr@FreeBSD.org
9
# MAINTAINER:	portmgr@FreeBSD.org
10
10
11
.if !defined(_INCLUDE_USES_GETTEXT_MK)
11
.if !defined(_INCLUDE_USES_GETTEXT_MK)
12
_INCLUDE_USES_GETTEXT_MK=	yes
12
_INCLUDE_USES_GETTEXT_MK=	yes
13
13
14
_GETTEXT_DEPENDS=	xgettext:${PORTSDIR}/devel/gettext
14
.if !empty(gettext_ARGS)
15
15
IGNORE=		USES=gettext does not take arguments
16
.if empty(gettext_ARGS)
17
gettext_ARGS=	lib
18
.endif
16
.endif
19
17
20
.if ${gettext_ARGS} == "build"
18
.include "${USESDIR}/gettext-runtime.mk"
21
BUILD_DEPENDS+=	${_GETTEXT_DEPENDS}
19
.include "${USESDIR}/gettext-tools.mk"
22
.elif ${gettext_ARGS} == "run"
23
RUN_DEPENDS+=	${_GETTEXT_DEPENDS}
24
.elif ${gettext_ARGS} == "lib"
25
LIB_DEPENDS+=	libintl.so:${PORTSDIR}/devel/gettext
26
.else
27
IGNORE=	USES=gettext - invalid args: [${gettext_ARGS}] specified
28
.endif
29
20
30
.endif
21
.endif
(-)archivers/gtar/Makefile (-1 / +2 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	tar
4
PORTNAME=	tar
5
PORTVERSION=	1.28
5
PORTVERSION=	1.28
6
PORTREVISION=	1
6
CATEGORIES=	archivers sysutils
7
CATEGORIES=	archivers sysutils
7
MASTER_SITES=	GNU
8
MASTER_SITES=	GNU
8
PKGNAMEPREFIX=	g
9
PKGNAMEPREFIX=	g
Lines 28-34 CONFIGURE_ENV+= gl_cv_func_mknod_works=y Link Here
28
OPTIONS_DEFINE=	NLS STATIC
29
OPTIONS_DEFINE=	NLS STATIC
29
OPTIONS_SUB=	yes
30
OPTIONS_SUB=	yes
30
31
31
NLS_USES=	gettext:${STATIC_ARGS}
32
NLS_USES=	gettext-runtime:${STATIC_ARGS}
32
NLS_CONFIGURE_ENABLE=	nls
33
NLS_CONFIGURE_ENABLE=	nls
33
34
34
STATIC_LDFLAGS=	-static
35
STATIC_LDFLAGS=	-static
(-)audio/clementine-player/Makefile (-5 / +2 lines)
Lines 28-38 LIB_DEPENDS= libtag.so:${PORTSDIR}/audio Link Here
28
28
29
BUILD_DEPENDS=	${LOCALBASE}/include/boost/shared_ptr.hpp:${PORTSDIR}/devel/boost-libs
29
BUILD_DEPENDS=	${LOCALBASE}/include/boost/shared_ptr.hpp:${PORTSDIR}/devel/boost-libs
30
30
31
# avoid clash with x11-wm/clementine
31
USES=		compiler:c++11-lib cmake desktop-file-utils execinfo \
32
LATEST_LINK=	${PORTNAME}${PKGNAMESUFFIX}
32
		gettext-tools pkgconfig
33
PROJECTHOST=	${PORTNAME}${PKGNAMESUFFIX}
34
35
USES=		compiler:c++11-lib cmake pkgconfig desktop-file-utils execinfo
36
USE_GL=		glew
33
USE_GL=		glew
37
USE_QT4=	dbus gui xml qmake_build uic_build moc_build rcc_build \
34
USE_QT4=	dbus gui xml qmake_build uic_build moc_build rcc_build \
38
		linguist_build network sql opengl qtestlib corelib webkit \
35
		linguist_build network sql opengl qtestlib corelib webkit \
(-)audio/gbemol/Makefile (-2 / +3 lines)
Lines 15-25 LIB_DEPENDS= libmpd.so:${PORTSDIR}/audio Link Here
15
		libxml2.so:${PORTSDIR}/textproc/libxml2
15
		libxml2.so:${PORTSDIR}/textproc/libxml2
16
16
17
GNU_CONFIGURE=	yes
17
GNU_CONFIGURE=	yes
18
USES=		gmake pkgconfig
18
CPPFLAGS+=	-I${LOCALBASE}/include
19
LIBS+=		-L${LOCALBASE}/lib
20
USES=		gettext gmake pkgconfig
19
USE_GNOME=	gtk20
21
USE_GNOME=	gtk20
20
22
21
post-patch:
23
post-patch:
22
	@${CHMOD} a+x ${WRKSRC}/install-sh
24
	@${CHMOD} a+x ${WRKSRC}/install-sh
23
	@${REINPLACE_CMD} -e 's,$$(DATADIRNAME)/locale,share/locale,' ${WRKSRC}/po/Makefile.in.in
24
25
25
.include <bsd.port.mk>
26
.include <bsd.port.mk>
(-)audio/gkrellmms2/Makefile (-1 / +1 lines)
Lines 24-30 PLIST_FILES= libexec/gkrellm2/plugins/gk Link Here
24
		share/locale/nl/LC_MESSAGES/gkrellmms.mo \
24
		share/locale/nl/LC_MESSAGES/gkrellmms.mo \
25
		share/locale/ru/LC_MESSAGES/gkrellmms.mo
25
		share/locale/ru/LC_MESSAGES/gkrellmms.mo
26
26
27
USES=		gmake pkgconfig
27
USES=		gettext gmake pkgconfig
28
28
29
MAKE_ENV+=	PLUGIN_DIR=${PREFIX}/libexec/gkrellm2/plugins \
29
MAKE_ENV+=	PLUGIN_DIR=${PREFIX}/libexec/gkrellm2/plugins \
30
		LOCALEDIR=${PREFIX}/share/locale \
30
		LOCALEDIR=${PREFIX}/share/locale \
(-)audio/gkrellmss2/Makefile (-1 / +1 lines)
Lines 16-22 BUILD_DEPENDS= ${LOCALBASE}/include/gkre Link Here
16
LIB_DEPENDS=	libfftw3.so:${PORTSDIR}/math/fftw3
16
LIB_DEPENDS=	libfftw3.so:${PORTSDIR}/math/fftw3
17
RUN_DEPENDS=	gkrellm:${PORTSDIR}/sysutils/gkrellm2
17
RUN_DEPENDS=	gkrellm:${PORTSDIR}/sysutils/gkrellm2
18
18
19
USES=		gmake
19
USES=		gettext gmake
20
USE_XORG=	x11
20
USE_XORG=	x11
21
USE_GNOME=	esound gtk20
21
USE_GNOME=	esound gtk20
22
MAKE_ENV=	LOCALEDIR="${PREFIX}/share/locale"
22
MAKE_ENV=	LOCALEDIR="${PREFIX}/share/locale"
(-)audio/gkrellmvolume2/Makefile (-1 / +1 lines)
Lines 25-31 PLIST_FILES= libexec/gkrellm2/plugins/vo Link Here
25
		share/locale/pl/LC_MESSAGES/gkrellm-volume.mo \
25
		share/locale/pl/LC_MESSAGES/gkrellm-volume.mo \
26
		share/locale/ru/LC_MESSAGES/gkrellm-volume.mo
26
		share/locale/ru/LC_MESSAGES/gkrellm-volume.mo
27
27
28
USES=		gmake pkgconfig
28
USES=		gettext gmake pkgconfig
29
29
30
PLUGIN_DIR=	${STAGEDIR}${PREFIX}/libexec/gkrellm2/plugins
30
PLUGIN_DIR=	${STAGEDIR}${PREFIX}/libexec/gkrellm2/plugins
31
31
(-)audio/kstreamripper/Makefile (-1 / +1 lines)
Lines 12-18 COMMENT= Program for recording streams f Link Here
12
12
13
RUN_DEPENDS=	${LOCALBASE}/bin/streamripper:${PORTSDIR}/audio/streamripper
13
RUN_DEPENDS=	${LOCALBASE}/bin/streamripper:${PORTSDIR}/audio/streamripper
14
14
15
USES=		cmake tar:bzip2
15
USES=		cmake gettext-tools tar:bzip2
16
USE_KDE4=	kdelibs kdehier kdeprefix automoc4
16
USE_KDE4=	kdelibs kdehier kdeprefix automoc4
17
USE_QT4=	qmake_build moc_build rcc_build uic_build
17
USE_QT4=	qmake_build moc_build rcc_build uic_build
18
18
(-)audio/pavucontrol/Makefile (-2 / +4 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	pavucontrol
4
PORTNAME=	pavucontrol
5
PORTVERSION=	0.9.10
5
PORTVERSION=	0.9.10
6
PORTREVISION=	2
6
PORTREVISION=	3
7
CATEGORIES=	audio
7
CATEGORIES=	audio
8
MASTER_SITES=	http://0pointer.de/lennart/projects/${PORTNAME}/
8
MASTER_SITES=	http://0pointer.de/lennart/projects/${PORTNAME}/
9
9
Lines 15-23 LIB_DEPENDS= libglademm-2.4.so:${PORTSDI Link Here
15
		libcanberra.so:${PORTSDIR}/audio/libcanberra
15
		libcanberra.so:${PORTSDIR}/audio/libcanberra
16
16
17
GNU_CONFIGURE=	yes
17
GNU_CONFIGURE=	yes
18
USES=		gmake pkgconfig
18
USES=		gettext gmake pkgconfig
19
USE_GNOME=	intltool
19
USE_GNOME=	intltool
20
20
21
CONFIGURE_ARGS=	--disable-lynx
21
CONFIGURE_ARGS=	--disable-lynx
22
CPPFLAGS+=	-I${LOCALBASE}/include
23
LIBS+=		-L${LOCALBASE}/lib
22
24
23
.include <bsd.port.mk>
25
.include <bsd.port.mk>
(-)audio/pavucontrol/pkg-plist (-35 / +35 lines)
Lines 1-41 Link Here
1
bin/pavucontrol
1
bin/pavucontrol
2
lib/locale/as/LC_MESSAGES/pavucontrol.mo
3
lib/locale/bn_IN/LC_MESSAGES/pavucontrol.mo
4
lib/locale/ca/LC_MESSAGES/pavucontrol.mo
5
lib/locale/cs/LC_MESSAGES/pavucontrol.mo
6
lib/locale/da/LC_MESSAGES/pavucontrol.mo
7
lib/locale/de/LC_MESSAGES/pavucontrol.mo
8
lib/locale/el/LC_MESSAGES/pavucontrol.mo
9
lib/locale/es/LC_MESSAGES/pavucontrol.mo
10
lib/locale/fi/LC_MESSAGES/pavucontrol.mo
11
lib/locale/fr/LC_MESSAGES/pavucontrol.mo
12
lib/locale/gu/LC_MESSAGES/pavucontrol.mo
13
lib/locale/hi/LC_MESSAGES/pavucontrol.mo
14
lib/locale/hu/LC_MESSAGES/pavucontrol.mo
15
lib/locale/it/LC_MESSAGES/pavucontrol.mo
16
lib/locale/ja/LC_MESSAGES/pavucontrol.mo
17
lib/locale/kn/LC_MESSAGES/pavucontrol.mo
18
lib/locale/ml/LC_MESSAGES/pavucontrol.mo
19
lib/locale/mr/LC_MESSAGES/pavucontrol.mo
20
lib/locale/nl/LC_MESSAGES/pavucontrol.mo
21
lib/locale/or/LC_MESSAGES/pavucontrol.mo
22
lib/locale/pa/LC_MESSAGES/pavucontrol.mo
23
lib/locale/pl/LC_MESSAGES/pavucontrol.mo
24
lib/locale/pt/LC_MESSAGES/pavucontrol.mo
25
lib/locale/pt_BR/LC_MESSAGES/pavucontrol.mo
26
lib/locale/ru/LC_MESSAGES/pavucontrol.mo
27
lib/locale/sk/LC_MESSAGES/pavucontrol.mo
28
lib/locale/sr/LC_MESSAGES/pavucontrol.mo
29
lib/locale/sr@latin/LC_MESSAGES/pavucontrol.mo
30
lib/locale/sv/LC_MESSAGES/pavucontrol.mo
31
lib/locale/ta/LC_MESSAGES/pavucontrol.mo
32
lib/locale/te/LC_MESSAGES/pavucontrol.mo
33
lib/locale/th/LC_MESSAGES/pavucontrol.mo
34
lib/locale/tr/LC_MESSAGES/pavucontrol.mo
35
lib/locale/uk/LC_MESSAGES/pavucontrol.mo
36
lib/locale/zh_CN/LC_MESSAGES/pavucontrol.mo
37
share/applications/pavucontrol.desktop
2
share/applications/pavucontrol.desktop
38
share/doc/pavucontrol/README
3
share/doc/pavucontrol/README
39
share/doc/pavucontrol/README.html
4
share/doc/pavucontrol/README.html
40
share/doc/pavucontrol/style.css
5
share/doc/pavucontrol/style.css
6
share/locale/as/LC_MESSAGES/pavucontrol.mo
7
share/locale/bn_IN/LC_MESSAGES/pavucontrol.mo
8
share/locale/ca/LC_MESSAGES/pavucontrol.mo
9
share/locale/cs/LC_MESSAGES/pavucontrol.mo
10
share/locale/da/LC_MESSAGES/pavucontrol.mo
11
share/locale/de/LC_MESSAGES/pavucontrol.mo
12
share/locale/el/LC_MESSAGES/pavucontrol.mo
13
share/locale/es/LC_MESSAGES/pavucontrol.mo
14
share/locale/fi/LC_MESSAGES/pavucontrol.mo
15
share/locale/fr/LC_MESSAGES/pavucontrol.mo
16
share/locale/gu/LC_MESSAGES/pavucontrol.mo
17
share/locale/hi/LC_MESSAGES/pavucontrol.mo
18
share/locale/hu/LC_MESSAGES/pavucontrol.mo
19
share/locale/it/LC_MESSAGES/pavucontrol.mo
20
share/locale/ja/LC_MESSAGES/pavucontrol.mo
21
share/locale/kn/LC_MESSAGES/pavucontrol.mo
22
share/locale/ml/LC_MESSAGES/pavucontrol.mo
23
share/locale/mr/LC_MESSAGES/pavucontrol.mo
24
share/locale/nl/LC_MESSAGES/pavucontrol.mo
25
share/locale/or/LC_MESSAGES/pavucontrol.mo
26
share/locale/pa/LC_MESSAGES/pavucontrol.mo
27
share/locale/pl/LC_MESSAGES/pavucontrol.mo
28
share/locale/pt/LC_MESSAGES/pavucontrol.mo
29
share/locale/pt_BR/LC_MESSAGES/pavucontrol.mo
30
share/locale/ru/LC_MESSAGES/pavucontrol.mo
31
share/locale/sk/LC_MESSAGES/pavucontrol.mo
32
share/locale/sr/LC_MESSAGES/pavucontrol.mo
33
share/locale/sr@latin/LC_MESSAGES/pavucontrol.mo
34
share/locale/sv/LC_MESSAGES/pavucontrol.mo
35
share/locale/ta/LC_MESSAGES/pavucontrol.mo
36
share/locale/te/LC_MESSAGES/pavucontrol.mo
37
share/locale/th/LC_MESSAGES/pavucontrol.mo
38
share/locale/tr/LC_MESSAGES/pavucontrol.mo
39
share/locale/uk/LC_MESSAGES/pavucontrol.mo
40
share/locale/zh_CN/LC_MESSAGES/pavucontrol.mo
41
%%DATADIR%%/pavucontrol.glade
41
%%DATADIR%%/pavucontrol.glade
(-)audio/pms/Makefile (-2 / +2 lines)
Lines 13-19 COMMENT= ncurses-based client for the Mu Link Here
13
13
14
LICENSE=	GPLv3
14
LICENSE=	GPLv3
15
15
16
USES=		pkgconfig tar:bzip2
16
USES=		gettext pkgconfig tar:bzip2
17
GNU_CONFIGURE=	yes
17
GNU_CONFIGURE=	yes
18
USE_GNOME=	glib20
18
USE_GNOME=	glib20
19
19
Lines 21-27 PLIST_FILES= bin/${PORTNAME} \ Link Here
21
		man/man1/pms.1.gz
21
		man/man1/pms.1.gz
22
22
23
CPPFLAGS+=	-I${LOCALBASE}/include
23
CPPFLAGS+=	-I${LOCALBASE}/include
24
LDFLAGS+=	-L${LOCALBASE}/lib
24
LIBS+=		-L${LOCALBASE}/lib
25
25
26
OPTIONS_DEFINE=	REGEX
26
OPTIONS_DEFINE=	REGEX
27
27
(-)audio/streamtuner/Makefile (-3 / +2 lines)
Lines 15-26 BUILD_DEPENDS= rarian-sk-config:${PORTSD Link Here
15
LIB_DEPENDS=	libcurl.so:${PORTSDIR}/ftp/curl
15
LIB_DEPENDS=	libcurl.so:${PORTSDIR}/ftp/curl
16
RUN_DEPENDS=	${LOCALBASE}/libdata/pkgconfig/gnome-icon-theme.pc:${PORTSDIR}/misc/gnome-icon-theme
16
RUN_DEPENDS=	${LOCALBASE}/libdata/pkgconfig/gnome-icon-theme.pc:${PORTSDIR}/misc/gnome-icon-theme
17
17
18
USES=		gmake pathfix pkgconfig
18
USES=		gettext gmake libtool pathfix pkgconfig
19
USE_GNOME=	gtk20 gnomeprefix
19
USE_GNOME=	gtk20 gnomeprefix
20
INSTALLS_OMF=	yes
20
INSTALLS_OMF=	yes
21
GNU_CONFIGURE=	yes
21
GNU_CONFIGURE=	yes
22
CPPFLAGS+=	-I${LOCALBASE}/include
22
CPPFLAGS+=	-I${LOCALBASE}/include
23
LDFLAGS+=	-L${LOCALBASE}/lib
23
LIBS+=		-L${LOCALBASE}/lib
24
24
25
OPTIONS_DEFINE=	SHOUTCAST LIVE365 XIPH LOCAL LOCAL_METADATA PYTHON
25
OPTIONS_DEFINE=	SHOUTCAST LIVE365 XIPH LOCAL LOCAL_METADATA PYTHON
26
OPTIONS_DEFAULT=	SHOUTCAST LIVE365 XIPH LOCAL LOCAL_METADATA
26
OPTIONS_DEFAULT=	SHOUTCAST LIVE365 XIPH LOCAL LOCAL_METADATA
Lines 52-58 PLIST_SUB+= LOCAL="@comment " Link Here
52
.endif
52
.endif
53
53
54
post-patch:
54
post-patch:
55
	@${REINPLACE_CMD} -e 's|echo aout|echo elf|' ${WRKSRC}/configure
56
	@${REINPLACE_CMD} -e 's|[(]datadir[)]/help|(datadir)/gnome/help|g' \
55
	@${REINPLACE_CMD} -e 's|[(]datadir[)]/help|(datadir)/gnome/help|g' \
57
		${WRKSRC}/help/C/Makefile.in
56
		${WRKSRC}/help/C/Makefile.in
58
57
(-)comms/xnec2c/Makefile (-1 / +1 lines)
Lines 16-22 LICENSE= GPLv2 Link Here
16
LIB_DEPENDS=	libccm.so:${PORTSDIR}/math/ccmath
16
LIB_DEPENDS=	libccm.so:${PORTSDIR}/math/ccmath
17
17
18
GNU_CONFIGURE=	yes
18
GNU_CONFIGURE=	yes
19
USES=		tar:bzip2 pkgconfig gmake
19
USES=		gettext gmake pkgconfig tar:bzip2
20
USE_GNOME=	gtk20
20
USE_GNOME=	gtk20
21
21
22
OPTIONS_DEFINE=	DOCS
22
OPTIONS_DEFINE=	DOCS
(-)converters/libiconv/Makefile (-3 / +3 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	libiconv
4
PORTNAME=	libiconv
5
PORTVERSION=	1.14
5
PORTVERSION=	1.14
6
PORTREVISION=	4
6
PORTREVISION=	5
7
CATEGORIES=	converters devel
7
CATEGORIES=	converters devel
8
MASTER_SITES=	GNU
8
MASTER_SITES=	GNU
9
9
Lines 18-24 CONFIGURE_ENV= am_cv_func_iconv="yes" \ Link Here
18
		am_cv_proto_iconv_arg1="const"
18
		am_cv_proto_iconv_arg1="const"
19
INSTALL_TARGET=	install-strip
19
INSTALL_TARGET=	install-strip
20
MAKE_JOBS_UNSAFE=	yes
20
MAKE_JOBS_UNSAFE=	yes
21
USES=		libtool:oldver
21
USES=		libtool
22
USE_CSTD=	gnu89
22
USE_CSTD=	gnu89
23
USE_LDCONFIG=	yes
23
USE_LDCONFIG=	yes
24
24
Lines 48-53 post-patch: Link Here
48
		${WRKSRC}/preload/configure
48
		${WRKSRC}/preload/configure
49
49
50
post-install:
50
post-install:
51
	${RM} ${STAGEDIR}${PREFIX}/lib/*.la
51
	${LN} -s libiconv.so.2 ${STAGEDIR}${PREFIX}/lib/libiconv.so.3
52
52
53
.include <bsd.port.mk>
53
.include <bsd.port.mk>
(-)converters/libiconv/files/patch-lib_Makefile.in (-11 lines)
Lines 1-11 Link Here
1
--- lib/Makefile.in.orig	2011-08-07 19:48:03.000000000 +0200
2
+++ lib/Makefile.in	2011-10-23 22:03:44.000000000 +0200
3
@@ -50,7 +50,7 @@
4
 
5
 # Before making a release, change this according to the libtool documentation,
6
 # section "Library interface versions".
7
-LIBICONV_VERSION_INFO = 7:1:5
8
+LIBICONV_VERSION_INFO = 3
9
 
10
 PACKAGE_VERSION = @VERSION@
11
 
(-)converters/libiconv/files/patch-src__Makefile.in (-8 lines)
Lines 8-18 Link Here
8
 
8
 
9
 # This is the temporary iconv executable, without internationalization.
9
 # This is the temporary iconv executable, without internationalization.
10
 iconv_no_i18n$(EXEEXT) : iconv_no_i18n.@OBJEXT@ ../lib/libiconv.la $(OBJECTS_RES_@WOE32@)
10
 iconv_no_i18n$(EXEEXT) : iconv_no_i18n.@OBJEXT@ ../lib/libiconv.la $(OBJECTS_RES_@WOE32@)
11
@@ -113,6 +112,7 @@
12
 	if [ ! -d $(DESTDIR)$(bindir) ] ; then $(mkinstalldirs) $(DESTDIR)$(bindir) ; fi
13
 	case "@host_os@" in \
14
 	  hpux*) $(CC) $(LDFLAGS) $(CFLAGS) $(iconv_LDFLAGS) iconv.@OBJEXT@ ../srclib/libicrt.a -L$(DESTDIR)$(libdir) -liconv @LIBINTL@ $(OBJECTS_RES_@WOE32@) `if test -n '$(DESTDIR)'; then echo " -Wl,+b -Wl,$(libdir)"; fi` -o iconv$(EXEEXT);; \
15
+	  freebsd*) $(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(CFLAGS) $(iconv_LDFLAGS) iconv.@OBJEXT@ ../srclib/libicrt.a ../lib/libiconv.la @LTLIBINTL@ $(OBJECTS_RES_@WOE32@) -o iconv;; \
16
 	  *) $(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(CFLAGS) $(iconv_LDFLAGS) iconv.@OBJEXT@ ../srclib/libicrt.a $(DESTDIR)$(libdir)/libiconv.la @LTLIBINTL@ $(OBJECTS_RES_@WOE32@) -o iconv$(EXEEXT);; \
17
 	esac
18
 	$(INSTALL_PROGRAM_ENV) $(LIBTOOL_INSTALL) $(INSTALL_PROGRAM) iconv$(EXEEXT) $(DESTDIR)$(bindir)/iconv$(EXEEXT)
(-)converters/libiconv/pkg-plist (+3 lines)
Lines 6-13 lib/charset.alias Link Here
6
lib/libcharset.a
6
lib/libcharset.a
7
lib/libcharset.so
7
lib/libcharset.so
8
lib/libcharset.so.1
8
lib/libcharset.so.1
9
lib/libcharset.so.1.0.0
9
lib/libiconv.a
10
lib/libiconv.a
10
lib/libiconv.so
11
lib/libiconv.so
12
lib/libiconv.so.2
13
lib/libiconv.so.2.5.1
11
lib/libiconv.so.3
14
lib/libiconv.so.3
12
man/man1/iconv.1.gz
15
man/man1/iconv.1.gz
13
man/man3/iconv.3.gz
16
man/man3/iconv.3.gz
(-)databases/tarantool/Makefile (-1 / +1 lines)
Lines 14-20 LICENSE= BSD Link Here
14
14
15
TR_REV=		102-g2857a4e
15
TR_REV=		102-g2857a4e
16
MAKE_JOBS_UNSAFE=yes
16
MAKE_JOBS_UNSAFE=yes
17
USES=		cmake gettext:build gmake iconv perl5 compiler:c++11-lang
17
USES=		cmake gettext gmake iconv perl5 compiler:c++11-lang
18
USE_LDCONFIG=	yes
18
USE_LDCONFIG=	yes
19
USE_RC_SUBR=	${PORTNAME}
19
USE_RC_SUBR=	${PORTNAME}
20
SUB_FILES=	pkg-message
20
SUB_FILES=	pkg-message
(-)deskutils/basket/Makefile (-1 / +1 lines)
Lines 14-23 LICENSE= GPLv2 Link Here
14
14
15
LIB_DEPENDS=	libgpgme.so:${PORTSDIR}/security/gpgme
15
LIB_DEPENDS=	libgpgme.so:${PORTSDIR}/security/gpgme
16
16
17
USES=		cmake gettext-tools tar:bzip2
17
USE_XORG=	xft xpm
18
USE_XORG=	xft xpm
18
USE_KDE4=	automoc4 kdeprefix pimlibs qimageblitz
19
USE_KDE4=	automoc4 kdeprefix pimlibs qimageblitz
19
USE_QT4=	moc_build qmake_build rcc_build uic_build
20
USE_QT4=	moc_build qmake_build rcc_build uic_build
20
USES=		cmake tar:bzip2
21
USE_LDCONFIG=	yes
21
USE_LDCONFIG=	yes
22
22
23
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)deskutils/fusenshi/Makefile (-1 / +1 lines)
Lines 10-16 MASTER_SITES= http://www.ongs.co.jp/proj Link Here
10
MAINTAINER=	ozawa@ongs.co.jp
10
MAINTAINER=	ozawa@ongs.co.jp
11
COMMENT=	Post-it(R) like application with network support
11
COMMENT=	Post-it(R) like application with network support
12
12
13
USES=		pkgconfig tar:tgz
13
USES=		gettext pkgconfig tar:tgz
14
USE_GNOME=	gtkmm24 gtksourceview libxml2
14
USE_GNOME=	gtkmm24 gtksourceview libxml2
15
USE_XORG=	x11
15
USE_XORG=	x11
16
MAKE_JOBS_UNSAFE=	yes
16
MAKE_JOBS_UNSAFE=	yes
(-)deskutils/homerun/Makefile (-1 / +1 lines)
Lines 8-14 MASTER_SITES= KDE/unstable/${PORTNAME}/s Link Here
8
MAINTAINER=	yurkis@gmail.com
8
MAINTAINER=	yurkis@gmail.com
9
COMMENT=	Fullscreen launcher with content organized in tabs
9
COMMENT=	Fullscreen launcher with content organized in tabs
10
10
11
USES=		cmake compiler:c++0x tar:bzip2
11
USES=		cmake compiler:c++0x gettext tar:bzip2
12
USE_KDE4=	kdelibs kdeprefix automoc4 workspace
12
USE_KDE4=	kdelibs kdeprefix automoc4 workspace
13
USE_QT4=	moc_build qmake_build rcc_build uic_build corelib gui
13
USE_QT4=	moc_build qmake_build rcc_build uic_build corelib gui
14
USE_XORG=	x11
14
USE_XORG=	x11
(-)deskutils/kchmviewer-kde4/Makefile (-1 / +1 lines)
Lines 12-18 COMMENT= KDE viewer for CHM files Link Here
12
LIB_DEPENDS=	libchm.so:${PORTSDIR}/misc/chmlib \
12
LIB_DEPENDS=	libchm.so:${PORTSDIR}/misc/chmlib \
13
		libzip.so:${PORTSDIR}/archivers/libzip
13
		libzip.so:${PORTSDIR}/archivers/libzip
14
14
15
USES=		cmake:outsource
15
USES=		cmake:outsource gettext-tools
16
USE_KDE4=	kdeprefix kdelibs automoc4
16
USE_KDE4=	kdeprefix kdelibs automoc4
17
USE_QT4=	webkit qmake_build moc_build rcc_build uic_build
17
USE_QT4=	webkit qmake_build moc_build rcc_build uic_build
18
18
(-)deskutils/kdeconnect/Makefile (-1 / +1 lines)
Lines 8-14 MASTER_SITES= KDE/unstable/kdeconnect/${ Link Here
8
MAINTAINER=	yurkis@gmail.com
8
MAINTAINER=	yurkis@gmail.com
9
COMMENT=	Support for KDE to interface between your phone and your computer
9
COMMENT=	Support for KDE to interface between your phone and your computer
10
10
11
USES=		cmake compiler:c++0x tar:xz
11
USES=		cmake compiler:c++0x gettext tar:xz
12
USE_KDE4=	kdelibs automoc4 workspace runtime
12
USE_KDE4=	kdelibs automoc4 workspace runtime
13
USE_QT4=	corelib gui moc_build qmake_build uic_build rcc_build
13
USE_QT4=	corelib gui moc_build qmake_build uic_build rcc_build
14
USE_LDCONFIG=	yes
14
USE_LDCONFIG=	yes
(-)deskutils/logjam/Makefile (-1 / +1 lines)
Lines 13-19 COMMENT= GTK2 interface to livejournals, Link Here
13
LIB_DEPENDS=	libcurl.so:${PORTSDIR}/ftp/curl \
13
LIB_DEPENDS=	libcurl.so:${PORTSDIR}/ftp/curl \
14
		libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib
14
		libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib
15
15
16
USES=		pkgconfig gmake pathfix tar:bzip2
16
USES=		gettext gmake pathfix pkgconfig tar:bzip2
17
WANT_GNOME=	yes
17
WANT_GNOME=	yes
18
GNU_CONFIGURE=	yes
18
GNU_CONFIGURE=	yes
19
USE_GNOME=	gnomeprefix gtk20 libxml2 intlhack
19
USE_GNOME=	gnomeprefix gtk20 libxml2 intlhack
(-)devel/appstream-glib/Makefile (-2 / +5 lines)
Lines 4-9 Link Here
4
4
5
PORTNAME=	appstream-glib
5
PORTNAME=	appstream-glib
6
PORTVERSION=	0.2.6
6
PORTVERSION=	0.2.6
7
PORTREVISION=	1
7
CATEGORIES=	devel
8
CATEGORIES=	devel
8
DIST_SUBDIR=	gnome3
9
DIST_SUBDIR=	gnome3
9
10
Lines 20-29 GH_PROJECT= appstream-glib Link Here
20
GH_COMMIT=      f4f3230
21
GH_COMMIT=      f4f3230
21
GH_TAGNAME=	${GH_COMMIT}
22
GH_TAGNAME=	${GH_COMMIT}
22
23
23
USES=		autoreconf:build gmake libtool pathfix pkgconfig
24
USES=		autoreconf:build gettext gmake libtool pathfix pkgconfig
24
USE_GNOME=	gdkpixbuf2 glib20 gtk30 intlhack
25
USE_GNOME=	gdkpixbuf2 glib20 gtk30
25
USE_LDCONFIG=	yes
26
USE_LDCONFIG=	yes
26
GNU_CONFIGURE=	yes
27
GNU_CONFIGURE=	yes
28
CPPFLAGS+=	-I${LOCALBASE}/include
29
LIBS+=		-L${LOCALBASE}/lib
27
USE_GITHUB=	yes
30
USE_GITHUB=	yes
28
PATHFIX_MAKEFILEIN=	Makefile.am
31
PATHFIX_MAKEFILEIN=	Makefile.am
29
INSTALL_TARGET=	install-strip
32
INSTALL_TARGET=	install-strip
(-)devel/appstream-glib/pkg-plist (-1 / +1 lines)
Lines 59-65 lib/libappstream-glib.a Link Here
59
lib/libappstream-glib.so
59
lib/libappstream-glib.so
60
lib/libappstream-glib.so.1
60
lib/libappstream-glib.so.1
61
lib/libappstream-glib.so.1.5.6
61
lib/libappstream-glib.so.1.5.6
62
lib/locale/ru/LC_MESSAGES/appstream-glib.mo
63
libdata/pkgconfig/appstream-builder.pc
62
libdata/pkgconfig/appstream-builder.pc
64
libdata/pkgconfig/appstream-glib.pc
63
libdata/pkgconfig/appstream-glib.pc
65
share/aclocal/appstream-xml.m4
64
share/aclocal/appstream-xml.m4
Lines 69-71 share/gir-1.0/AppStreamBuilder-1.0.gir Link Here
69
share/gir-1.0/AppStreamGlib-1.0.gir
68
share/gir-1.0/AppStreamGlib-1.0.gir
70
share/installed-tests/appstream-glib/appdata-validate.test
69
share/installed-tests/appstream-glib/appdata-validate.test
71
share/installed-tests/appstream-glib/destdir-check.test
70
share/installed-tests/appstream-glib/destdir-check.test
71
share/locale/ru/LC_MESSAGES/appstream-glib.mo
(-)devel/avr-libc/Makefile (-1 / +1 lines)
Lines 38-44 BUILD_DEPENDS+= doxygen:${PORTSDIR}/deve Link Here
38
		dvips:${PORTSDIR}/print/tex-dvipsk
38
		dvips:${PORTSDIR}/print/tex-dvipsk
39
.endif
39
.endif
40
40
41
USES=		gettext:build tar:bzip2 gmake
41
USES=		gettext-tools tar:bzip2 gmake
42
HAS_CONFIGURE=	yes
42
HAS_CONFIGURE=	yes
43
43
44
CONFIGURE_ENV=	CC=avr-gcc PREFIX=${PREFIX}
44
CONFIGURE_ENV=	CC=avr-gcc PREFIX=${PREFIX}
(-)devel/geany-plugins/files/Makefile.common (+1 lines)
Lines 24-29 NLS_DIR= po Link Here
24
NLS_SWITCH=	--enable-nls
24
NLS_SWITCH=	--enable-nls
25
CPPFLAGS+=	-I${LOCALBASE}/include
25
CPPFLAGS+=	-I${LOCALBASE}/include
26
LIBS+=		-L${LOCALBASE}/lib
26
LIBS+=		-L${LOCALBASE}/lib
27
USES+=		gettext
27
.endif
28
.endif
28
29
29
GEANY_PLUGIN?=			${PORTNAME:S,geany-plugin-,,}
30
GEANY_PLUGIN?=			${PORTNAME:S,geany-plugin-,,}
(-)devel/gettext/Makefile (-39 / +9 lines)
Lines 1-50 Link Here
1
# Created by: Yukihiro Nakai <Nakai@technologist.com>
2
# $FreeBSD$
1
# $FreeBSD$
3
2
4
PORTNAME=	gettext
3
# NOTE: before committing to this port, contact portmgr to arrange for an
5
PORTVERSION=	0.18.3.1
6
PORTREVISION=	1
7
CATEGORIES=	devel
8
MASTER_SITES=	${MASTER_SITE_GNU}
9
MASTER_SITE_SUBDIR=	gettext
10
11
# note: before committing to this port, contact portmgr to arrange for an
12
# experimental ports run.  Untested commits may be backed out at portmgr's
4
# experimental ports run.  Untested commits may be backed out at portmgr's
13
# discretion.
5
# discretion.
14
MAINTAINER=	autotools@FreeBSD.org
15
COMMENT=	GNU gettext package
16
17
USES=		charsetfix iconv libtool:oldver
18
GNU_CONFIGURE=	yes
19
CONFIGURE_ARGS=	--disable-csharp --disable-java \
20
		--disable-openmp --disable-threads \
21
		--with-included-gettext --with-included-glib \
22
		--with-included-libcroco --with-included-libunistring \
23
		--with-included-libxml ${ICONV_CONFIGURE_ARG} \
24
		--without-emacs --without-git
25
USE_LDCONFIG=	yes
26
INSTALL_TARGET=	install-strip
27
28
INFO=		autosprintf gettext
29
6
30
OPTIONS_DEFINE=	DOCS
7
PORTNAME=	gettext
8
PORTREVISION=	0
9
DISTFILES=
31
10
32
.include <bsd.port.options.mk>
11
COMMENT=	GNU gettext meta package
33
12
34
.if ! ${PORT_OPTIONS:MDOCS}
13
.include "${.CURDIR}/../gettext/Makefile.common"
35
EXTRA_PATCHES+=	${FILESDIR}/extra-patch-nodocs
36
.endif
37
14
38
post-patch:
15
USES=		gettext-runtime:run gettext-tools:run
39
.if ! ${PORT_OPTIONS:MDOCS}
40
.for dir in runtime tools
41
	@${REINPLACE_CMD} -e 's|^SUBDIRS = doc|SUBDIRS =|' \
42
		${WRKSRC}/gettext-${dir}/Makefile.in
43
.endfor
44
.endif
45
16
46
post-install:
17
NO_BUILD=	yes
47
	@${SETENV} ${MAKE_ENV} ${MAKE_CMD} -C ${WRKSRC}/gettext-tools/doc \
18
NO_INSTALL=	yes
48
		${MAKE_ARGS} install-info-am
49
19
50
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)devel/gettext/Makefile.common (+18 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
# NOTE: before committing to this port, contact portmgr to arrange for an
4
# experimental ports run.  Untested commits may be backed out at portmgr's
5
# discretion.
6
7
PORTVERSION=	0.19.3
8
PORTREVISION?=	0 # Leave this zero. Set in Makefile instead.
9
CATEGORIES=	devel
10
MASTER_SITES=	GNU/gettext
11
DISTNAME=	gettext-${PORTVERSION}
12
13
MAINTAINER=	autotools@FreeBSD.org
14
15
DISTINFO_FILE=	${.CURDIR}/../gettext/distinfo
16
17
DATADIR=	${PREFIX}/share/gettext
18
DOCSDIR=	${PREFIX}/share/doc/gettext
(-)devel/gettext/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (gettext-0.18.3.1.tar.gz) = 0d8f9a33531b77776b3dc473e7940019ca19bfca5b4c06db6e96065eeb07245d
1
SHA256 (gettext-0.19.3.tar.xz) = f6fdb29c9ee8ce85c7e574f60ff64fa91cf0f4f018437dfe800227d15595db46
2
SIZE (gettext-0.18.3.1.tar.gz) = 16341773
2
SIZE (gettext-0.19.3.tar.xz) = 6628460
(-)devel/gettext/files/extra-patch-nodocs (-55 lines)
Lines 1-55 Link Here
1
--- gettext-runtime/intl-java/Makefile.in.orig	Mon May 23 04:23:40 2005
2
+++ gettext-runtime/intl-java/Makefile.in	Tue Jan 30 20:02:41 2007
3
@@ -464,5 +464,5 @@
4
 
5
-all-local: all-classes all-javadoc2
6
-install-data-local: install-classes install-javadoc2
7
-installdirs-local: installdirs-classes installdirs-javadoc2
8
+all-local: all-classes
9
+install-data-local: install-classes
10
+installdirs-local: installdirs-classes
11
 uninstall-local: uninstall-classes uninstall-javadoc2
12
13
--- gettext-runtime/intl-csharp/Makefile.in.orig	Mon May 23 04:23:39 2005
14
+++ gettext-runtime/intl-csharp/Makefile.in	Tue Jan 30 20:11:08 2007
15
@@ -432,5 +432,5 @@
16
 
17
-all-local: all-dll all-doc
18
-install-data-local: install-dll install-doc
19
-installdirs-local: installdirs-dll installdirs-doc
20
+all-local: all-dll
21
+install-data-local: install-dll
22
+installdirs-local: installdirs-dll
23
 uninstall-local: uninstall-dll uninstall-doc
24
25
--- gettext-runtime/libasprintf/Makefile.in.orig	Mon May 23 04:23:55 2005
26
+++ gettext-runtime/libasprintf/Makefile.in	Tue Jan 30 20:24:01 2007
27
@@ -882,5 +882,5 @@
28
 
29
-all-local: html-local
30
-install-data-local: install-html
31
-installdirs-local: installdirs-html
32
+all-local:
33
+install-data-local:
34
+installdirs-local:
35
 uninstall-local: uninstall-html
36
37
--- gettext-tools/Makefile.in.orig	Mon Nov 27 09:34:56 2006
38
+++ gettext-tools/Makefile.in	Tue Jan 30 23:15:59 2007
39
@@ -944,3 +944,3 @@
40
 
41
-install-data-am: install-examplesbuildauxDATA \
42
+install-data-am: \
43
 	install-gettextsrcSCRIPTS
44
45
--- gettext-tools/m4/Makefile.in.orig	Mon May 23 04:24:27 2005
46
+++ gettext-tools/m4/Makefile.in	Tue Jan 30 20:19:34 2007
47
@@ -530,3 +530,3 @@
48
 installdirs:
49
-	for dir in "$(DESTDIR)$(aclocaldir)" "$(DESTDIR)$(examplesbuildauxdir)"; do \
50
+	for dir in "$(DESTDIR)$(aclocaldir)" ; do \
51
 	  test -z "$$dir" || $(mkdir_p) "$$dir"; \
52
@@ -575,3 +575,3 @@
53
 
54
-install-data-am: install-aclocalDATA install-examplesbuildauxDATA
55
+install-data-am: install-aclocalDATA
(-)devel/gettext/files/patch-gettext-runtime_man_Makefile.in (-11 lines)
Lines 1-11 Link Here
1
--- gettext-runtime/man/Makefile.in.orig	Mon May 23 04:23:40 2005
2
+++ gettext-runtime/man/Makefile.in	Tue Jan 30 22:30:58 2007
3
@@ -576,5 +576,5 @@
4
 
5
-all-local: html-local
6
-install-data-local: install-html
7
-installdirs-local: installdirs-html
8
+all-local:
9
+install-data-local:
10
+installdirs-local:
11
 uninstall-local: uninstall-html
(-)devel/gettext/files/patch-gettext-tools_Makefile.in (-7 lines)
Lines 1-7 Link Here
1
--- gettext-tools/Makefile.in.orig	2007-11-06 23:40:19.000000000 +0000
2
+++ gettext-tools/Makefile.in	2007-12-12 03:30:36.000000000 +0000
3
@@ -726,3 +726,3 @@
4
 ACLOCAL_AMFLAGS = -I m4 -I ../gettext-runtime/m4 -I ../autoconf-lib-link/m4 -I ../m4 -I gnulib-m4 -I libgettextpo/gnulib-m4
5
-SUBDIRS = doc intl gnulib-lib libgrep src libgettextpo po projects styles misc man m4 tests gnulib-tests examples
6
+SUBDIRS = doc intl gnulib-lib libgrep src libgettextpo po projects styles misc man m4
7
 
(-)devel/gettext/files/patch-gettext-tools_config.h.in (-8 lines)
Lines 1-8 Link Here
1
--- gettext-tools/config.h.in.orig	2013-03-05 08:43:50.000000000 +0000
2
+++ gettext-tools/config.h.in	2013-05-23 19:14:44.000000000 +0000
3
@@ -524,2 +524,5 @@
4
 
5
+/* Define to 1 if the expat library is bsdxml. */
6
+#undef HAVE_BSDXML
7
+
8
 /* Define to 1 if you have the 'btowc' function. */
(-)devel/gettext/files/patch-gettext-tools_configure (-16 lines)
Lines 1-16 Link Here
1
--- gettext-tools/configure.orig	Mon Nov 27 09:34:40 2006
2
+++ gettext-tools/configure	Sun Dec  3 17:54:35 2006
3
@@ -50083,2 +50071,13 @@
4
 case "$host_os" in
5
+  freebsd*)
6
+
7
+cat >>confdefs.h <<\_ACEOF
8
+#define HAVE_BSDXML 1
9
+#define HAVE_LIBEXPAT 1
10
+_ACEOF
11
+
12
+    LIBEXPAT="-lbsdxml"
13
+    LTLIBEXPAT="-lbsdxml"
14
+
15
+    ;;
16
   linux*)
(-)devel/gettext/files/patch-gettext-tools_man_Makefile.in (-11 lines)
Lines 1-11 Link Here
1
--- gettext-tools/man/Makefile.in.orig	Mon May 23 04:24:28 2005
2
+++ gettext-tools/man/Makefile.in	Tue Jan 30 22:12:40 2007
3
@@ -576,5 +576,5 @@
4
 
5
-all-local: html-local
6
-install-data-local: install-html
7
-installdirs-local: installdirs-html
8
+all-local:
9
+install-data-local:
10
+installdirs-local:
11
 uninstall-local: uninstall-html
(-)devel/gettext/files/patch-gettext-tools_src_x-glade.c (-15 lines)
Lines 1-15 Link Here
1
--- gettext-tools/src/x-glade.c.orig	Sat Aug 28 11:53:08 2004
2
+++ gettext-tools/src/x-glade.c	Sat Aug 28 11:53:48 2004
3
@@ -30,7 +30,11 @@
4
 # include <dlfcn.h>
5
 #else
6
 # if HAVE_LIBEXPAT
7
-#  include <expat.h>
8
+#  if HAVE_BSDXML
9
+#   include <bsdxml.h>
10
+#  else
11
+#   include <expat.h>
12
+#  endif
13
 # endif
14
 #endif
15
 
(-)devel/gettext/pkg-descr (-5 / +2 lines)
Lines 1-7 Link Here
1
This is the GNU gettext package.  It is interesting for authors or
1
GNU gettext is a framework of libraries and tools for internationalisation 
2
maintainers of other packages or programs which they want to see
2
and localisation of software.
3
internationalized.  As one step the handling of messages in different
4
languages should be implemented.  For this task GNU gettext provides
5
the needed tools and library functions.
6
3
7
WWW: http://www.gnu.org/software/gettext/
4
WWW: http://www.gnu.org/software/gettext/
(-)devel/gettext/pkg-plist (-346 lines)
Lines 1-346 Link Here
1
bin/autopoint
2
bin/envsubst
3
bin/gettext
4
bin/gettext.sh
5
bin/gettextize
6
bin/msgattrib
7
bin/msgcat
8
bin/msgcmp
9
bin/msgcomm
10
bin/msgconv
11
bin/msgen
12
bin/msgexec
13
bin/msgfilter
14
bin/msgfmt
15
bin/msggrep
16
bin/msginit
17
bin/msgmerge
18
bin/msgunfmt
19
bin/msguniq
20
bin/ngettext
21
bin/recode-sr-latin
22
bin/xgettext
23
include/autosprintf.h
24
include/gettext-po.h
25
include/libintl.h
26
lib/libasprintf.a
27
lib/libasprintf.la
28
lib/libasprintf.so
29
lib/libasprintf.so.0
30
lib/libgettextlib-0.18.3.so
31
lib/libgettextlib.la
32
lib/libgettextlib.so
33
lib/libgettextpo.a
34
lib/libgettextpo.la
35
lib/libgettextpo.so
36
lib/libgettextpo.so.5
37
lib/libgettextsrc.la
38
lib/libgettextsrc-0.18.3.so
39
lib/libgettextsrc.so
40
lib/libintl.a
41
lib/libintl.la
42
lib/libintl.so
43
lib/libintl.so.9
44
lib/gettext/hostname
45
lib/gettext/project-id
46
lib/gettext/urlget
47
lib/gettext/user-email
48
man/man1/autopoint.1.gz
49
man/man1/envsubst.1.gz
50
man/man1/gettext.1.gz
51
man/man1/gettextize.1.gz
52
man/man1/msgattrib.1.gz
53
man/man1/msgcat.1.gz
54
man/man1/msgcmp.1.gz
55
man/man1/msgcomm.1.gz
56
man/man1/msgconv.1.gz
57
man/man1/msgen.1.gz
58
man/man1/msgexec.1.gz
59
man/man1/msgfilter.1.gz
60
man/man1/msgfmt.1.gz
61
man/man1/msggrep.1.gz
62
man/man1/msginit.1.gz
63
man/man1/msgmerge.1.gz
64
man/man1/msgunfmt.1.gz
65
man/man1/msguniq.1.gz
66
man/man1/ngettext.1.gz
67
man/man1/recode-sr-latin.1.gz
68
man/man1/xgettext.1.gz
69
man/man3/bind_textdomain_codeset.3.gz
70
man/man3/bindtextdomain.3.gz
71
man/man3/dcgettext.3.gz
72
man/man3/dcngettext.3.gz
73
man/man3/dgettext.3.gz
74
man/man3/dngettext.3.gz
75
man/man3/gettext.3.gz
76
man/man3/ngettext.3.gz
77
man/man3/textdomain.3.gz
78
share/aclocal/codeset.m4
79
share/aclocal/gettext.m4
80
share/aclocal/fcntl-o.m4
81
share/aclocal/glibc2.m4
82
share/aclocal/glibc21.m4
83
share/aclocal/iconv.m4
84
share/aclocal/intdiv0.m4
85
share/aclocal/intl.m4
86
share/aclocal/intldir.m4
87
share/aclocal/intlmacosx.m4
88
share/aclocal/intmax.m4
89
share/aclocal/inttypes-pri.m4
90
share/aclocal/inttypes_h.m4
91
share/aclocal/lcmessage.m4
92
share/aclocal/lib-ld.m4
93
share/aclocal/lib-link.m4
94
share/aclocal/lib-prefix.m4
95
share/aclocal/lock.m4
96
share/aclocal/longlong.m4
97
share/aclocal/nls.m4
98
share/aclocal/po.m4
99
share/aclocal/printf-posix.m4
100
share/aclocal/progtest.m4
101
share/aclocal/size_max.m4
102
share/aclocal/stdint_h.m4
103
share/aclocal/threadlib.m4
104
share/aclocal/uintmax_t.m4
105
share/aclocal/visibility.m4
106
share/aclocal/wchar_t.m4
107
share/aclocal/wint_t.m4
108
share/aclocal/xsize.m4
109
%%PORTDOCS%%%%DOCSDIR%%/FAQ.html
110
%%PORTDOCS%%%%DOCSDIR%%/csharpdoc/GNU_Gettext.html
111
%%PORTDOCS%%%%DOCSDIR%%/csharpdoc/GNU_Gettext_GettextResourceManager.html
112
%%PORTDOCS%%%%DOCSDIR%%/csharpdoc/GNU_Gettext_GettextResourceSet.html
113
%%PORTDOCS%%%%DOCSDIR%%/csharpdoc/begin.html
114
%%PORTDOCS%%%%DOCSDIR%%/csharpdoc/index.html
115
%%PORTDOCS%%%%DOCSDIR%%/csharpdoc/namespaces.html
116
%%PORTDOCS%%%%DOCSDIR%%/examples/build-aux/csharpcomp.m4
117
%%PORTDOCS%%%%DOCSDIR%%/examples/build-aux/csharpcomp.sh.in
118
%%PORTDOCS%%%%DOCSDIR%%/examples/build-aux/csharpexec.m4
119
%%PORTDOCS%%%%DOCSDIR%%/examples/build-aux/csharpexec.sh.in
120
%%PORTDOCS%%%%DOCSDIR%%/examples/build-aux/csharpexec-test.exe
121
%%PORTDOCS%%%%DOCSDIR%%/examples/build-aux/gcj.m4
122
%%PORTDOCS%%%%DOCSDIR%%/examples/build-aux/javacomp.m4
123
%%PORTDOCS%%%%DOCSDIR%%/examples/build-aux/javacomp.sh.in
124
%%PORTDOCS%%%%DOCSDIR%%/examples/build-aux/javaexec.m4
125
%%PORTDOCS%%%%DOCSDIR%%/examples/build-aux/javaexec.sh.in
126
%%PORTDOCS%%%%DOCSDIR%%/gettext_1.html
127
%%PORTDOCS%%%%DOCSDIR%%/gettext_2.html
128
%%PORTDOCS%%%%DOCSDIR%%/gettext_3.html
129
%%PORTDOCS%%%%DOCSDIR%%/gettext_4.html
130
%%PORTDOCS%%%%DOCSDIR%%/gettext_5.html
131
%%PORTDOCS%%%%DOCSDIR%%/gettext_6.html
132
%%PORTDOCS%%%%DOCSDIR%%/gettext_7.html
133
%%PORTDOCS%%%%DOCSDIR%%/gettext_8.html
134
%%PORTDOCS%%%%DOCSDIR%%/gettext_9.html
135
%%PORTDOCS%%%%DOCSDIR%%/gettext_10.html
136
%%PORTDOCS%%%%DOCSDIR%%/gettext_11.html
137
%%PORTDOCS%%%%DOCSDIR%%/gettext_12.html
138
%%PORTDOCS%%%%DOCSDIR%%/gettext_13.html
139
%%PORTDOCS%%%%DOCSDIR%%/gettext_14.html
140
%%PORTDOCS%%%%DOCSDIR%%/gettext_15.html
141
%%PORTDOCS%%%%DOCSDIR%%/gettext_16.html
142
%%PORTDOCS%%%%DOCSDIR%%/gettext_17.html
143
%%PORTDOCS%%%%DOCSDIR%%/gettext_18.html
144
%%PORTDOCS%%%%DOCSDIR%%/gettext_19.html
145
%%PORTDOCS%%%%DOCSDIR%%/gettext_20.html
146
%%PORTDOCS%%%%DOCSDIR%%/gettext_21.html
147
%%PORTDOCS%%%%DOCSDIR%%/gettext_22.html
148
%%PORTDOCS%%%%DOCSDIR%%/gettext_23.html
149
%%PORTDOCS%%%%DOCSDIR%%/gettext_24.html
150
%%PORTDOCS%%%%DOCSDIR%%/gettext_25.html
151
%%PORTDOCS%%%%DOCSDIR%%/gettext_foot.html
152
%%PORTDOCS%%%%DOCSDIR%%/gettext_toc.html
153
%%PORTDOCS%%%%DOCSDIR%%/javadoc2/allclasses-frame.html
154
%%PORTDOCS%%%%DOCSDIR%%/javadoc2/deprecated-list.html
155
%%PORTDOCS%%%%DOCSDIR%%/javadoc2/gnu/gettext/GettextResource.html
156
%%PORTDOCS%%%%DOCSDIR%%/javadoc2/gnu/gettext/package-frame.html
157
%%PORTDOCS%%%%DOCSDIR%%/javadoc2/gnu/gettext/package-summary.html
158
%%PORTDOCS%%%%DOCSDIR%%/javadoc2/gnu/gettext/package-tree.html
159
%%PORTDOCS%%%%DOCSDIR%%/javadoc2/help-doc.html
160
%%PORTDOCS%%%%DOCSDIR%%/javadoc2/index-all.html
161
%%PORTDOCS%%%%DOCSDIR%%/javadoc2/index.html
162
%%PORTDOCS%%%%DOCSDIR%%/javadoc2/overview-tree.html
163
%%PORTDOCS%%%%DOCSDIR%%/javadoc2/package-list
164
%%PORTDOCS%%%%DOCSDIR%%/javadoc2/packages.html
165
%%PORTDOCS%%%%DOCSDIR%%/javadoc2/serialized-form.html
166
%%PORTDOCS%%%%DOCSDIR%%/javadoc2/stylesheet.css
167
%%PORTDOCS%%%%DOCSDIR%%/tutorial.html
168
%%PORTDOCS%%share/doc/libasprintf/autosprintf_all.html
169
%%DATADIR%%/ABOUT-NLS
170
%%DATADIR%%/archive.dir.tar.xz
171
%%DATADIR%%/config.rpath
172
%%DATADIR%%/gettext.h
173
%%DATADIR%%/intl/COPYING.LIB
174
%%DATADIR%%/intl/ChangeLog
175
%%DATADIR%%/intl/Makefile.in
176
%%DATADIR%%/intl/VERSION
177
%%DATADIR%%/intl/bindtextdom.c
178
%%DATADIR%%/intl/config.charset
179
%%DATADIR%%/intl/dcgettext.c
180
%%DATADIR%%/intl/dcigettext.c
181
%%DATADIR%%/intl/dcngettext.c
182
%%DATADIR%%/intl/dgettext.c
183
%%DATADIR%%/intl/dngettext.c
184
%%DATADIR%%/intl/eval-plural.h
185
%%DATADIR%%/intl/explodename.c
186
%%DATADIR%%/intl/export.h
187
%%DATADIR%%/intl/finddomain.c
188
%%DATADIR%%/intl/gettext.c
189
%%DATADIR%%/intl/gettextP.h
190
%%DATADIR%%/intl/gmo.h
191
%%DATADIR%%/intl/hash-string.c
192
%%DATADIR%%/intl/hash-string.h
193
%%DATADIR%%/intl/intl-compat.c
194
%%DATADIR%%/intl/intl-exports.c
195
%%DATADIR%%/intl/l10nflist.c
196
%%DATADIR%%/intl/langprefs.c
197
%%DATADIR%%/intl/libgnuintl.in.h
198
%%DATADIR%%/intl/libintl.rc
199
%%DATADIR%%/intl/loadinfo.h
200
%%DATADIR%%/intl/loadmsgcat.c
201
%%DATADIR%%/intl/localcharset.c
202
%%DATADIR%%/intl/localcharset.h
203
%%DATADIR%%/intl/locale.alias
204
%%DATADIR%%/intl/localealias.c
205
%%DATADIR%%/intl/localename.c
206
%%DATADIR%%/intl/lock.c
207
%%DATADIR%%/intl/lock.h
208
%%DATADIR%%/intl/log.c
209
%%DATADIR%%/intl/ngettext.c
210
%%DATADIR%%/intl/os2compat.c
211
%%DATADIR%%/intl/os2compat.h
212
%%DATADIR%%/intl/osdep.c
213
%%DATADIR%%/intl/plural-exp.c
214
%%DATADIR%%/intl/plural-exp.h
215
%%DATADIR%%/intl/plural.c
216
%%DATADIR%%/intl/plural.y
217
%%DATADIR%%/intl/printf-args.c
218
%%DATADIR%%/intl/printf-args.h
219
%%DATADIR%%/intl/printf-parse.c
220
%%DATADIR%%/intl/printf-parse.h
221
%%DATADIR%%/intl/printf.c
222
%%DATADIR%%/intl/ref-add.sin
223
%%DATADIR%%/intl/ref-del.sin
224
%%DATADIR%%/intl/relocatable.c
225
%%DATADIR%%/intl/relocatable.h
226
%%DATADIR%%/intl/setlocale.c
227
%%DATADIR%%/intl/textdomain.c
228
%%DATADIR%%/intl/threadlib.c
229
%%DATADIR%%/intl/tsearch.c
230
%%DATADIR%%/intl/tsearch.h
231
%%DATADIR%%/intl/vasnprintf.c
232
%%DATADIR%%/intl/vasnprintf.h
233
%%DATADIR%%/intl/vasnwprintf.h
234
%%DATADIR%%/intl/verify.h
235
%%DATADIR%%/intl/version.c
236
%%DATADIR%%/intl/wprintf-parse.h
237
%%DATADIR%%/intl/xsize.c
238
%%DATADIR%%/intl/xsize.h
239
%%DATADIR%%/javaversion.class
240
%%DATADIR%%/msgunfmt.tcl
241
%%DATADIR%%/po/Makefile.in.in
242
%%DATADIR%%/po/Makevars.template
243
%%DATADIR%%/po/Rules-quot
244
%%DATADIR%%/po/boldquot.sed
245
%%DATADIR%%/po/en@boldquot.header
246
%%DATADIR%%/po/en@quot.header
247
%%DATADIR%%/po/insert-header.sin
248
%%DATADIR%%/po/quot.sed
249
%%DATADIR%%/po/remove-potcdate.sin
250
%%DATADIR%%/projects/GNOME/team-address
251
%%DATADIR%%/projects/GNOME/teams.html
252
%%DATADIR%%/projects/GNOME/teams.url
253
%%DATADIR%%/projects/GNOME/trigger
254
%%DATADIR%%/projects/KDE/team-address
255
%%DATADIR%%/projects/KDE/teams.html
256
%%DATADIR%%/projects/KDE/teams.url
257
%%DATADIR%%/projects/KDE/trigger
258
%%DATADIR%%/projects/TP/team-address
259
%%DATADIR%%/projects/TP/teams.html
260
%%DATADIR%%/projects/TP/teams.url
261
%%DATADIR%%/projects/TP/trigger
262
%%DATADIR%%/projects/index
263
%%DATADIR%%/projects/team-address
264
%%DATADIR%%/styles/po-default.css
265
%%DATADIR%%/styles/po-emacs-x.css
266
%%DATADIR%%/styles/po-emacs-xterm.css
267
%%DATADIR%%/styles/po-emacs-xterm16.css
268
%%DATADIR%%/styles/po-emacs-xterm256.css
269
%%DATADIR%%/styles/po-vim.css
270
share/locale/be/LC_MESSAGES/gettext-runtime.mo
271
share/locale/be/LC_MESSAGES/gettext-tools.mo
272
share/locale/bg/LC_MESSAGES/gettext-runtime.mo
273
share/locale/bg/LC_MESSAGES/gettext-tools.mo
274
share/locale/ca/LC_MESSAGES/gettext-runtime.mo
275
share/locale/ca/LC_MESSAGES/gettext-tools.mo
276
share/locale/cs/LC_MESSAGES/gettext-runtime.mo
277
share/locale/cs/LC_MESSAGES/gettext-tools.mo
278
share/locale/da/LC_MESSAGES/gettext-runtime.mo
279
share/locale/da/LC_MESSAGES/gettext-tools.mo
280
share/locale/de/LC_MESSAGES/gettext-runtime.mo
281
share/locale/de/LC_MESSAGES/gettext-tools.mo
282
share/locale/el/LC_MESSAGES/gettext-runtime.mo
283
share/locale/el/LC_MESSAGES/gettext-tools.mo
284
share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo
285
share/locale/en@boldquot/LC_MESSAGES/gettext-tools.mo
286
share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo
287
share/locale/en@quot/LC_MESSAGES/gettext-tools.mo
288
share/locale/eo/LC_MESSAGES/gettext-runtime.mo
289
share/locale/es/LC_MESSAGES/gettext-runtime.mo
290
share/locale/es/LC_MESSAGES/gettext-tools.mo
291
share/locale/et/LC_MESSAGES/gettext-runtime.mo
292
share/locale/et/LC_MESSAGES/gettext-tools.mo
293
share/locale/eu/LC_MESSAGES/gettext-tools.mo
294
share/locale/fi/LC_MESSAGES/gettext-runtime.mo
295
share/locale/fi/LC_MESSAGES/gettext-tools.mo
296
share/locale/fr/LC_MESSAGES/gettext-runtime.mo
297
share/locale/fr/LC_MESSAGES/gettext-tools.mo
298
share/locale/ga/LC_MESSAGES/gettext-runtime.mo
299
share/locale/gl/LC_MESSAGES/gettext-runtime.mo
300
share/locale/gl/LC_MESSAGES/gettext-tools.mo
301
share/locale/hr/LC_MESSAGES/gettext-runtime.mo
302
share/locale/id/LC_MESSAGES/gettext-runtime.mo
303
share/locale/id/LC_MESSAGES/gettext-tools.mo
304
share/locale/it/LC_MESSAGES/gettext-runtime.mo
305
share/locale/it/LC_MESSAGES/gettext-tools.mo
306
share/locale/ja/LC_MESSAGES/gettext-runtime.mo
307
share/locale/ja/LC_MESSAGES/gettext-tools.mo
308
share/locale/ko/LC_MESSAGES/gettext-runtime.mo
309
share/locale/ko/LC_MESSAGES/gettext-tools.mo
310
share/locale/locale.alias
311
share/locale/nb/LC_MESSAGES/gettext-runtime.mo
312
share/locale/nb/LC_MESSAGES/gettext-tools.mo
313
share/locale/nl/LC_MESSAGES/gettext-runtime.mo
314
share/locale/nl/LC_MESSAGES/gettext-tools.mo
315
share/locale/nn/LC_MESSAGES/gettext-runtime.mo
316
share/locale/nn/LC_MESSAGES/gettext-tools.mo
317
share/locale/pa/LC_MESSAGES/gettext-tools.mo
318
share/locale/pl/LC_MESSAGES/gettext-runtime.mo
319
share/locale/pl/LC_MESSAGES/gettext-tools.mo
320
share/locale/pt/LC_MESSAGES/gettext-runtime.mo
321
share/locale/pt/LC_MESSAGES/gettext-tools.mo
322
share/locale/pt_BR/LC_MESSAGES/gettext-runtime.mo
323
share/locale/pt_BR/LC_MESSAGES/gettext-tools.mo
324
share/locale/ro/LC_MESSAGES/gettext-runtime.mo
325
share/locale/ro/LC_MESSAGES/gettext-tools.mo
326
share/locale/ru/LC_MESSAGES/gettext-runtime.mo
327
share/locale/ru/LC_MESSAGES/gettext-tools.mo
328
share/locale/sk/LC_MESSAGES/gettext-runtime.mo
329
share/locale/sk/LC_MESSAGES/gettext-tools.mo
330
share/locale/sl/LC_MESSAGES/gettext-runtime.mo
331
share/locale/sl/LC_MESSAGES/gettext-tools.mo
332
share/locale/sr/LC_MESSAGES/gettext-runtime.mo
333
share/locale/sr/LC_MESSAGES/gettext-tools.mo
334
share/locale/sv/LC_MESSAGES/gettext-runtime.mo
335
share/locale/sv/LC_MESSAGES/gettext-tools.mo
336
share/locale/tr/LC_MESSAGES/gettext-runtime.mo
337
share/locale/tr/LC_MESSAGES/gettext-tools.mo
338
share/locale/uk/LC_MESSAGES/gettext-runtime.mo
339
share/locale/uk/LC_MESSAGES/gettext-tools.mo
340
share/locale/vi/LC_MESSAGES/gettext-runtime.mo
341
share/locale/vi/LC_MESSAGES/gettext-tools.mo
342
share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo
343
share/locale/zh_CN/LC_MESSAGES/gettext-tools.mo
344
share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo
345
share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo
346
share/locale/zh_TW/LC_MESSAGES/gettext-tools.mo
(-)devel/gettext-lint/Makefile (-2 / +2 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	gettext-lint
4
PORTNAME=	gettext-lint
5
PORTVERSION=	0.4
5
PORTVERSION=	0.4
6
PORTREVISION=	2
6
PORTREVISION=	3
7
CATEGORIES=	devel
7
CATEGORIES=	devel
8
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTVERSION}.0
8
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTVERSION}.0
9
9
Lines 15-21 LICENSE_FILE= ${WRKSRC}/COPYING Link Here
15
15
16
NO_BUILD=	yes
16
NO_BUILD=	yes
17
17
18
USES=		gettext:run python:run shebangfix
18
USES=		gettext-tools:run python:run shebangfix
19
SHEBANG_FILES=	src/POFileEquiv.in src/POFileGlossary.in
19
SHEBANG_FILES=	src/POFileEquiv.in src/POFileGlossary.in
20
20
21
post-patch:
21
post-patch:
(-)devel/gettext-runtime/Makefile (+52 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
# NOTE: before committing to this port, contact portmgr to arrange for an
4
# experimental ports run.  Untested commits may be backed out at portmgr's
5
# discretion.
6
7
PORTNAME=	gettext-runtime
8
PORTREVISION=	0
9
10
COMMENT=	GNU gettext runtime libraries and programs
11
12
LICENSE=	LGPL21 GPLv3
13
LICENSE_COMB=	multi
14
LICENSE_FILE_LGPL21=	${WRKSRC}/intl/COPYING.LIB
15
LICENSE_FILE_GPLv3=	${WRKSRC}/../COPYING
16
17
.include "${.CURDIR}/../gettext/Makefile.common"
18
19
GNU_CONFIGURE=	yes
20
CONFIGURE_ARGS=	--disable-csharp --disable-java --with-included-gettext \
21
		ac_cv_lib_rt_sched_yield=no
22
INSTALL_TARGET=	install-strip
23
USES=		charsetfix iconv libtool tar:xz
24
USE_LDCONFIG=	yes
25
WRKSRC_SUBDIR=	gettext-runtime
26
27
INFO=		autosprintf
28
29
.include <bsd.port.options.mk>
30
31
.if ${OPSYS} == DragonFly || (${OPSYS} == FreeBSD && ${OSVERSION} < 900506)
32
CONFIGURE_ARGS+=--disable-threads
33
.endif
34
35
post-patch:
36
# Do not install csharp and java documentation.
37
	@${REINPLACE_CMD} -E '/^SUBDIRS =/s/(intl-csharp|intl-java)//g' \
38
		${WRKSRC}/Makefile.in
39
# Do not install html copies of manpages.
40
	@${REINPLACE_CMD} \
41
		-e '/^all-local:/s/html-local//' \
42
		-e '/^install-data-local:/s/install-html//' \
43
		-e '/^installdirs-local:/s/installdirs-html//' \
44
		${WRKSRC}/libasprintf/Makefile.in ${WRKSRC}/man/Makefile.in
45
46
post-install:
47
	${LN} -s libintl.so.8 ${STAGEDIR}${PREFIX}/lib/libintl.so.9
48
49
regression-test: build
50
	@(cd ${WRKSRC} && ${MAKE_CMD} check)
51
52
.include <bsd.port.mk>
(-)devel/gettext-runtime/files/patch-configure (+11 lines)
Line 0 Link Here
1
--- configure.orig	2014-07-14 07:30:12 UTC
2
+++ configure
3
@@ -16277,7 +16277,7 @@
4
              # thread: pthread_create from libc will fail, whereas
5
              # pthread_create will actually create a thread.
6
              case "$host_os" in
7
-               solaris* | hpux*)
8
+               solaris* | hpux* | freebsd*)
9
 
10
 $as_echo "#define PTHREAD_IN_USE_DETECTION_HARD 1" >>confdefs.h
11
 
(-)devel/gettext-runtime/files/patch-intl-threadlib.c (+39 lines)
Line 0 Link Here
1
--- intl/threadlib.c.orig	2013-03-07 08:44:37 UTC
2
+++ intl/threadlib.c
3
@@ -29,11 +29,10 @@
4
 
5
 # if PTHREAD_IN_USE_DETECTION_HARD
6
 
7
-/* The function to be executed by a dummy thread.  */
8
-static void *
9
-dummy_thread_func (void *arg)
10
+static pthread_once_t dummy_once_control = PTHREAD_ONCE_INIT;
11
+static void
12
+dummy_once_func (void)
13
 {
14
-  return arg;
15
 }
16
 
17
 int
18
@@ -44,19 +43,10 @@ glthread_in_use (void)
19
 
20
   if (!tested)
21
     {
22
-      pthread_t thread;
23
-
24
-      if (pthread_create (&thread, NULL, dummy_thread_func, NULL) != 0)
25
-        /* Thread creation failed.  */
26
+      if (pthread_once (&dummy_once_control, dummy_once_func) != 0)
27
         result = 0;
28
       else
29
-        {
30
-          /* Thread creation works.  */
31
-          void *retval;
32
-          if (pthread_join (thread, &retval) != 0)
33
-            abort ();
34
-          result = 1;
35
-        }
36
+        result = 1;
37
       tested = 1;
38
     }
39
   return result;
(-)devel/gettext-runtime/pkg-descr (+6 lines)
Line 0 Link Here
1
GNU gettext is a framework of libraries and tools for internationalisation
2
and localisation of software.
3
4
This package contains the runtime libraries and programs.
5
6
WWW: http://www.gnu.org/software/gettext/
(-)devel/gettext-runtime/pkg-plist (+69 lines)
Line 0 Link Here
1
bin/envsubst
2
bin/gettext
3
bin/gettext.sh
4
bin/ngettext
5
include/autosprintf.h
6
include/libintl.h
7
lib/libasprintf.a
8
lib/libasprintf.so
9
lib/libasprintf.so.0
10
lib/libasprintf.so.0.0.0
11
lib/libintl.a
12
lib/libintl.so
13
lib/libintl.so.8
14
lib/libintl.so.8.1.2
15
lib/libintl.so.9
16
man/man1/envsubst.1.gz
17
man/man1/gettext.1.gz
18
man/man1/ngettext.1.gz
19
man/man3/bind_textdomain_codeset.3.gz
20
man/man3/bindtextdomain.3.gz
21
man/man3/dcgettext.3.gz
22
man/man3/dcngettext.3.gz
23
man/man3/dgettext.3.gz
24
man/man3/dngettext.3.gz
25
man/man3/gettext.3.gz
26
man/man3/ngettext.3.gz
27
man/man3/textdomain.3.gz
28
%%DATADIR%%/ABOUT-NLS
29
share/locale/be/LC_MESSAGES/gettext-runtime.mo
30
share/locale/bg/LC_MESSAGES/gettext-runtime.mo
31
share/locale/ca/LC_MESSAGES/gettext-runtime.mo
32
share/locale/cs/LC_MESSAGES/gettext-runtime.mo
33
share/locale/da/LC_MESSAGES/gettext-runtime.mo
34
share/locale/de/LC_MESSAGES/gettext-runtime.mo
35
share/locale/el/LC_MESSAGES/gettext-runtime.mo
36
share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo
37
share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo
38
share/locale/eo/LC_MESSAGES/gettext-runtime.mo
39
share/locale/es/LC_MESSAGES/gettext-runtime.mo
40
share/locale/et/LC_MESSAGES/gettext-runtime.mo
41
share/locale/fi/LC_MESSAGES/gettext-runtime.mo
42
share/locale/fr/LC_MESSAGES/gettext-runtime.mo
43
share/locale/ga/LC_MESSAGES/gettext-runtime.mo
44
share/locale/gl/LC_MESSAGES/gettext-runtime.mo
45
share/locale/hr/LC_MESSAGES/gettext-runtime.mo
46
share/locale/hu/LC_MESSAGES/gettext-runtime.mo
47
share/locale/id/LC_MESSAGES/gettext-runtime.mo
48
share/locale/it/LC_MESSAGES/gettext-runtime.mo
49
share/locale/ja/LC_MESSAGES/gettext-runtime.mo
50
share/locale/ko/LC_MESSAGES/gettext-runtime.mo
51
share/locale/locale.alias
52
share/locale/nb/LC_MESSAGES/gettext-runtime.mo
53
share/locale/nl/LC_MESSAGES/gettext-runtime.mo
54
share/locale/nn/LC_MESSAGES/gettext-runtime.mo
55
share/locale/pl/LC_MESSAGES/gettext-runtime.mo
56
share/locale/pt/LC_MESSAGES/gettext-runtime.mo
57
share/locale/pt_BR/LC_MESSAGES/gettext-runtime.mo
58
share/locale/ro/LC_MESSAGES/gettext-runtime.mo
59
share/locale/ru/LC_MESSAGES/gettext-runtime.mo
60
share/locale/sk/LC_MESSAGES/gettext-runtime.mo
61
share/locale/sl/LC_MESSAGES/gettext-runtime.mo
62
share/locale/sr/LC_MESSAGES/gettext-runtime.mo
63
share/locale/sv/LC_MESSAGES/gettext-runtime.mo
64
share/locale/tr/LC_MESSAGES/gettext-runtime.mo
65
share/locale/uk/LC_MESSAGES/gettext-runtime.mo
66
share/locale/vi/LC_MESSAGES/gettext-runtime.mo
67
share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo
68
share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo
69
share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo
(-)devel/gettext-tools/Makefile (+72 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
# NOTE: before committing to this port, contact portmgr to arrange for an
4
# experimental ports run.  Untested commits may be backed out at portmgr's
5
# discretion.
6
7
PORTNAME=	gettext-tools
8
PORTREVISION=	0
9
10
COMMENT=	GNU gettext development and translation tools
11
12
LICENSE=	GPLv3
13
LICENSE_FILE=	${WRKSRC}/../COPYING    
14
15
.include "${.CURDIR}/../gettext/Makefile.common"
16
17
LIB_DEPENDS=	libexpat.so:${PORTSDIR}/textproc/expat2
18
19
GNU_CONFIGURE=	yes
20
CONFIGURE_ARGS=	--disable-csharp --disable-java --disable-openmp \
21
		--with-included-glib --with-included-libcroco \
22
		--with-included-libunistring --with-included-libxml \
23
		--without-emacs --without-git ac_cv_lib_rt_sched_yield=no
24
CPPFLAGS+=	-I${LOCALBASE}/include
25
LIBS+=		-L${LOCALBASE}/lib
26
INSTALL_TARGET=	install-strip
27
USES=		charsetfix gettext-runtime iconv libtool tar:xz
28
USE_LDCONFIG=	yes
29
WRKSRC_SUBDIR=	gettext-tools
30
31
OPTIONS_DEFINE=	DOCS
32
33
.include <bsd.port.options.mk>
34
35
.if ${PORT_OPTIONS:MDOCS}
36
INFO+=		gettext
37
.endif
38
39
.if ${OPSYS} == DragonFly || (${OPSYS} == FreeBSD && ${OSVERSION} < 900506)
40
CONFIGURE_ARGS+=--disable-threads
41
.endif
42
43
post-patch:
44
.if ! ${PORT_OPTIONS:MDOCS}
45
	@${REINPLACE_CMD} '/^SUBDIRS =/s/doc//' ${WRKSRC}/Makefile.in
46
.endif
47
# Exclude examples and gnulib-tests.
48
	@${REINPLACE_CMD} -E '/^SUBDIRS =/s/(examples|gnulib-tests)//g' \
49
		${WRKSRC}/Makefile.in
50
	@${REINPLACE_CMD} \
51
		'/^install-data-am:/s/install-examplesbuildauxDATA//' \
52
		${WRKSRC}/Makefile.in ${WRKSRC}/m4/Makefile.in
53
# Do not install html copies of manpages.
54
	@${REINPLACE_CMD} \
55
		-e '/^all-local:/s/html-local//' \
56
		-e '/^install-data-local:/s/install-html//' \
57
		-e '/^installdirs-local:/s/installdirs-html//' \
58
		${WRKSRC}/man/Makefile.in
59
# Do not patch system float.h.
60
	@${REINPLACE_CMD} 's/FLOAT_H=float\.h//' \
61
		${WRKSRC}/configure
62
# Use libintl installed by gettext-runtime.
63
	@${REINPLACE_CMD} '/^LDADD_no =/s,\.\./intl/libgnuintl.la,,' \
64
		${WRKSRC}/tests/Makefile.in
65
# Use libasprintf installed by gettext-runtime.
66
	@${REINPLACE_CMD} 's,[^ ]*libasprintf.la,-lasprintf,' \
67
		${WRKSRC}/tests/lang-c++
68
69
regression-test: build
70
	@(cd ${WRKSRC} && ${MAKE_CMD} check)
71
72
.include <bsd.port.mk>
(-)devel/gettext-tools/files/patch-configure (+20 lines)
Line 0 Link Here
1
--- configure.orig	2014-07-14 07:30:23 UTC
2
+++ configure
3
@@ -18293,7 +18293,7 @@
4
              # thread: pthread_create from libc will fail, whereas
5
              # pthread_create will actually create a thread.
6
              case "$host_os" in
7
-               solaris* | hpux*)
8
+               solaris* | hpux* | freebsd*)
9
 
10
 $as_echo "#define PTHREAD_IN_USE_DETECTION_HARD 1" >>confdefs.h
11
 
12
@@ -21679,7 +21679,7 @@
13
                                         if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" = "yes"; } \
14
            || { { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; } \
15
                 && test "$PACKAGE" != gettext-runtime \
16
-                && test "$PACKAGE" != gettext-tools; }; then
17
+                ; }; then
18
           gt_use_preinstalled_gnugettext=yes
19
         else
20
                     LIBINTL=
(-)devel/gettext-tools/files/patch-gnulib-lib_glthread_threadlib.c (+39 lines)
Line 0 Link Here
1
--- gnulib-lib/glthread/threadlib.c.orig	2014-07-14 07:28:34 UTC
2
+++ gnulib-lib/glthread/threadlib.c
3
@@ -29,11 +29,10 @@
4
 
5
 # if PTHREAD_IN_USE_DETECTION_HARD
6
 
7
-/* The function to be executed by a dummy thread.  */
8
-static void *
9
-dummy_thread_func (void *arg)
10
+static pthread_once_t dummy_once_control = PTHREAD_ONCE_INIT;
11
+static void
12
+dummy_once_func (void)
13
 {
14
-  return arg;
15
 }
16
 
17
 int
18
@@ -44,19 +43,10 @@ glthread_in_use (void)
19
 
20
   if (!tested)
21
     {
22
-      pthread_t thread;
23
-
24
-      if (pthread_create (&thread, NULL, dummy_thread_func, NULL) != 0)
25
-        /* Thread creation failed.  */
26
+      if (pthread_once (&dummy_once_control, dummy_once_func) != 0)
27
         result = 0;
28
       else
29
-        {
30
-          /* Thread creation works.  */
31
-          void *retval;
32
-          if (pthread_join (thread, &retval) != 0)
33
-            abort ();
34
-          result = 1;
35
-        }
36
+        result = 1;
37
       tested = 1;
38
     }
39
   return result;
(-)devel/gettext-tools/files/patch-libgettextpo_glthread_threadlib.c (+39 lines)
Line 0 Link Here
1
--- libgettextpo/glthread/threadlib.c.orig	2014-07-14 07:29:10 UTC
2
+++ libgettextpo/glthread/threadlib.c
3
@@ -29,11 +29,10 @@
4
 
5
 # if PTHREAD_IN_USE_DETECTION_HARD
6
 
7
-/* The function to be executed by a dummy thread.  */
8
-static void *
9
-dummy_thread_func (void *arg)
10
+static pthread_once_t dummy_once_control = PTHREAD_ONCE_INIT;
11
+static void
12
+dummy_once_func (void)
13
 {
14
-  return arg;
15
 }
16
 
17
 int
18
@@ -44,19 +43,10 @@ glthread_in_use (void)
19
 
20
   if (!tested)
21
     {
22
-      pthread_t thread;
23
-
24
-      if (pthread_create (&thread, NULL, dummy_thread_func, NULL) != 0)
25
-        /* Thread creation failed.  */
26
+      if (pthread_once (&dummy_once_control, dummy_once_func) != 0)
27
         result = 0;
28
       else
29
-        {
30
-          /* Thread creation works.  */
31
-          void *retval;
32
-          if (pthread_join (thread, &retval) != 0)
33
-            abort ();
34
-          result = 1;
35
-        }
36
+        result = 1;
37
       tested = 1;
38
     }
39
   return result;
(-)devel/gettext-tools/pkg-descr (+6 lines)
Line 0 Link Here
1
GNU gettext is a framework of libraries and tools for internationalisation 
2
and localisation of software.
3
4
This package contains development and translation tools.
5
6
WWW: http://www.gnu.org/software/gettext/
(-)devel/gettext-tools/pkg-plist (+246 lines)
Line 0 Link Here
1
bin/autopoint
2
bin/gettextize
3
bin/msgattrib
4
bin/msgcat
5
bin/msgcmp
6
bin/msgcomm
7
bin/msgconv
8
bin/msgen
9
bin/msgexec
10
bin/msgfilter
11
bin/msgfmt
12
bin/msggrep
13
bin/msginit
14
bin/msgmerge
15
bin/msgunfmt
16
bin/msguniq
17
bin/recode-sr-latin
18
bin/xgettext
19
include/gettext-po.h
20
lib/libgettextlib-0.19.3.so
21
lib/libgettextlib.so
22
lib/libgettextpo.a
23
lib/libgettextpo.so
24
lib/libgettextpo.so.0
25
lib/libgettextpo.so.0.5.2
26
lib/libgettextsrc-0.19.3.so
27
lib/libgettextsrc.so
28
lib/gettext/hostname
29
lib/gettext/project-id
30
lib/gettext/urlget
31
lib/gettext/user-email
32
man/man1/autopoint.1.gz
33
man/man1/gettextize.1.gz
34
man/man1/msgattrib.1.gz
35
man/man1/msgcat.1.gz
36
man/man1/msgcmp.1.gz
37
man/man1/msgcomm.1.gz
38
man/man1/msgconv.1.gz
39
man/man1/msgen.1.gz
40
man/man1/msgexec.1.gz
41
man/man1/msgfilter.1.gz
42
man/man1/msgfmt.1.gz
43
man/man1/msggrep.1.gz
44
man/man1/msginit.1.gz
45
man/man1/msgmerge.1.gz
46
man/man1/msgunfmt.1.gz
47
man/man1/msguniq.1.gz
48
man/man1/recode-sr-latin.1.gz
49
man/man1/xgettext.1.gz
50
share/aclocal/codeset.m4
51
share/aclocal/extern-inline.m4
52
share/aclocal/gettext.m4
53
share/aclocal/fcntl-o.m4
54
share/aclocal/glibc2.m4
55
share/aclocal/glibc21.m4
56
share/aclocal/iconv.m4
57
share/aclocal/intdiv0.m4
58
share/aclocal/intl.m4
59
share/aclocal/intldir.m4
60
share/aclocal/intlmacosx.m4
61
share/aclocal/intmax.m4
62
share/aclocal/inttypes-pri.m4
63
share/aclocal/inttypes_h.m4
64
share/aclocal/lcmessage.m4
65
share/aclocal/lib-ld.m4
66
share/aclocal/lib-link.m4
67
share/aclocal/lib-prefix.m4
68
share/aclocal/lock.m4
69
share/aclocal/longlong.m4
70
share/aclocal/nls.m4
71
share/aclocal/po.m4
72
share/aclocal/printf-posix.m4
73
share/aclocal/progtest.m4
74
share/aclocal/size_max.m4
75
share/aclocal/stdint_h.m4
76
share/aclocal/threadlib.m4
77
share/aclocal/uintmax_t.m4
78
share/aclocal/visibility.m4
79
share/aclocal/wchar_t.m4
80
share/aclocal/wint_t.m4
81
share/aclocal/xsize.m4
82
%%PORTDOCS%%%%DOCSDIR%%/FAQ.html
83
%%PORTDOCS%%%%DOCSDIR%%/gettext_1.html
84
%%PORTDOCS%%%%DOCSDIR%%/gettext_2.html
85
%%PORTDOCS%%%%DOCSDIR%%/gettext_3.html
86
%%PORTDOCS%%%%DOCSDIR%%/gettext_4.html
87
%%PORTDOCS%%%%DOCSDIR%%/gettext_5.html
88
%%PORTDOCS%%%%DOCSDIR%%/gettext_6.html
89
%%PORTDOCS%%%%DOCSDIR%%/gettext_7.html
90
%%PORTDOCS%%%%DOCSDIR%%/gettext_8.html
91
%%PORTDOCS%%%%DOCSDIR%%/gettext_9.html
92
%%PORTDOCS%%%%DOCSDIR%%/gettext_10.html
93
%%PORTDOCS%%%%DOCSDIR%%/gettext_11.html
94
%%PORTDOCS%%%%DOCSDIR%%/gettext_12.html
95
%%PORTDOCS%%%%DOCSDIR%%/gettext_13.html
96
%%PORTDOCS%%%%DOCSDIR%%/gettext_14.html
97
%%PORTDOCS%%%%DOCSDIR%%/gettext_15.html
98
%%PORTDOCS%%%%DOCSDIR%%/gettext_16.html
99
%%PORTDOCS%%%%DOCSDIR%%/gettext_17.html
100
%%PORTDOCS%%%%DOCSDIR%%/gettext_18.html
101
%%PORTDOCS%%%%DOCSDIR%%/gettext_19.html
102
%%PORTDOCS%%%%DOCSDIR%%/gettext_20.html
103
%%PORTDOCS%%%%DOCSDIR%%/gettext_21.html
104
%%PORTDOCS%%%%DOCSDIR%%/gettext_22.html
105
%%PORTDOCS%%%%DOCSDIR%%/gettext_23.html
106
%%PORTDOCS%%%%DOCSDIR%%/gettext_24.html
107
%%PORTDOCS%%%%DOCSDIR%%/gettext_25.html
108
%%PORTDOCS%%%%DOCSDIR%%/gettext_foot.html
109
%%PORTDOCS%%%%DOCSDIR%%/gettext_toc.html
110
%%PORTDOCS%%%%DOCSDIR%%/tutorial.html
111
%%DATADIR%%/archive.dir.tar.xz
112
%%DATADIR%%/config.rpath
113
%%DATADIR%%/gettext.h
114
%%DATADIR%%/intl/COPYING.LIB
115
%%DATADIR%%/intl/Makefile.in
116
%%DATADIR%%/intl/VERSION
117
%%DATADIR%%/intl/bindtextdom.c
118
%%DATADIR%%/intl/config.charset
119
%%DATADIR%%/intl/dcgettext.c
120
%%DATADIR%%/intl/dcigettext.c
121
%%DATADIR%%/intl/dcngettext.c
122
%%DATADIR%%/intl/dgettext.c
123
%%DATADIR%%/intl/dngettext.c
124
%%DATADIR%%/intl/eval-plural.h
125
%%DATADIR%%/intl/explodename.c
126
%%DATADIR%%/intl/export.h
127
%%DATADIR%%/intl/finddomain.c
128
%%DATADIR%%/intl/gettext.c
129
%%DATADIR%%/intl/gettextP.h
130
%%DATADIR%%/intl/gmo.h
131
%%DATADIR%%/intl/hash-string.c
132
%%DATADIR%%/intl/hash-string.h
133
%%DATADIR%%/intl/intl-compat.c
134
%%DATADIR%%/intl/intl-exports.c
135
%%DATADIR%%/intl/l10nflist.c
136
%%DATADIR%%/intl/langprefs.c
137
%%DATADIR%%/intl/libgnuintl.in.h
138
%%DATADIR%%/intl/libintl.rc
139
%%DATADIR%%/intl/loadinfo.h
140
%%DATADIR%%/intl/loadmsgcat.c
141
%%DATADIR%%/intl/localcharset.c
142
%%DATADIR%%/intl/localcharset.h
143
%%DATADIR%%/intl/locale.alias
144
%%DATADIR%%/intl/localealias.c
145
%%DATADIR%%/intl/localename.c
146
%%DATADIR%%/intl/lock.c
147
%%DATADIR%%/intl/lock.h
148
%%DATADIR%%/intl/log.c
149
%%DATADIR%%/intl/ngettext.c
150
%%DATADIR%%/intl/os2compat.c
151
%%DATADIR%%/intl/os2compat.h
152
%%DATADIR%%/intl/osdep.c
153
%%DATADIR%%/intl/plural-exp.c
154
%%DATADIR%%/intl/plural-exp.h
155
%%DATADIR%%/intl/plural.c
156
%%DATADIR%%/intl/plural.y
157
%%DATADIR%%/intl/printf-args.c
158
%%DATADIR%%/intl/printf-args.h
159
%%DATADIR%%/intl/printf-parse.c
160
%%DATADIR%%/intl/printf-parse.h
161
%%DATADIR%%/intl/printf.c
162
%%DATADIR%%/intl/ref-add.sin
163
%%DATADIR%%/intl/ref-del.sin
164
%%DATADIR%%/intl/relocatable.c
165
%%DATADIR%%/intl/relocatable.h
166
%%DATADIR%%/intl/setlocale.c
167
%%DATADIR%%/intl/textdomain.c
168
%%DATADIR%%/intl/threadlib.c
169
%%DATADIR%%/intl/tsearch.c
170
%%DATADIR%%/intl/tsearch.h
171
%%DATADIR%%/intl/vasnprintf.c
172
%%DATADIR%%/intl/vasnprintf.h
173
%%DATADIR%%/intl/vasnwprintf.h
174
%%DATADIR%%/intl/verify.h
175
%%DATADIR%%/intl/version.c
176
%%DATADIR%%/intl/wprintf-parse.h
177
%%DATADIR%%/intl/xsize.c
178
%%DATADIR%%/intl/xsize.h
179
%%DATADIR%%/javaversion.class
180
%%DATADIR%%/msgunfmt.tcl
181
%%DATADIR%%/po/Makefile.in.in
182
%%DATADIR%%/po/Makevars.template
183
%%DATADIR%%/po/Rules-quot
184
%%DATADIR%%/po/boldquot.sed
185
%%DATADIR%%/po/en@boldquot.header
186
%%DATADIR%%/po/en@quot.header
187
%%DATADIR%%/po/insert-header.sin
188
%%DATADIR%%/po/quot.sed
189
%%DATADIR%%/po/remove-potcdate.sin
190
%%DATADIR%%/projects/GNOME/team-address
191
%%DATADIR%%/projects/GNOME/teams.html
192
%%DATADIR%%/projects/GNOME/teams.url
193
%%DATADIR%%/projects/GNOME/trigger
194
%%DATADIR%%/projects/KDE/team-address
195
%%DATADIR%%/projects/KDE/teams.html
196
%%DATADIR%%/projects/KDE/teams.url
197
%%DATADIR%%/projects/KDE/trigger
198
%%DATADIR%%/projects/TP/team-address
199
%%DATADIR%%/projects/TP/teams.html
200
%%DATADIR%%/projects/TP/teams.url
201
%%DATADIR%%/projects/TP/trigger
202
%%DATADIR%%/projects/index
203
%%DATADIR%%/projects/team-address
204
%%DATADIR%%/styles/po-default.css
205
%%DATADIR%%/styles/po-emacs-x.css
206
%%DATADIR%%/styles/po-emacs-xterm.css
207
%%DATADIR%%/styles/po-emacs-xterm16.css
208
%%DATADIR%%/styles/po-emacs-xterm256.css
209
%%DATADIR%%/styles/po-vim.css
210
share/locale/be/LC_MESSAGES/gettext-tools.mo
211
share/locale/bg/LC_MESSAGES/gettext-tools.mo
212
share/locale/ca/LC_MESSAGES/gettext-tools.mo
213
share/locale/cs/LC_MESSAGES/gettext-tools.mo
214
share/locale/da/LC_MESSAGES/gettext-tools.mo
215
share/locale/de/LC_MESSAGES/gettext-tools.mo
216
share/locale/el/LC_MESSAGES/gettext-tools.mo
217
share/locale/en@boldquot/LC_MESSAGES/gettext-tools.mo
218
share/locale/en@quot/LC_MESSAGES/gettext-tools.mo
219
share/locale/es/LC_MESSAGES/gettext-tools.mo
220
share/locale/et/LC_MESSAGES/gettext-tools.mo
221
share/locale/eu/LC_MESSAGES/gettext-tools.mo
222
share/locale/fi/LC_MESSAGES/gettext-tools.mo
223
share/locale/fr/LC_MESSAGES/gettext-tools.mo
224
share/locale/gl/LC_MESSAGES/gettext-tools.mo
225
share/locale/id/LC_MESSAGES/gettext-tools.mo
226
share/locale/it/LC_MESSAGES/gettext-tools.mo
227
share/locale/ja/LC_MESSAGES/gettext-tools.mo
228
share/locale/ko/LC_MESSAGES/gettext-tools.mo
229
share/locale/nb/LC_MESSAGES/gettext-tools.mo
230
share/locale/nl/LC_MESSAGES/gettext-tools.mo
231
share/locale/nn/LC_MESSAGES/gettext-tools.mo
232
share/locale/pa/LC_MESSAGES/gettext-tools.mo
233
share/locale/pl/LC_MESSAGES/gettext-tools.mo
234
share/locale/pt/LC_MESSAGES/gettext-tools.mo
235
share/locale/pt_BR/LC_MESSAGES/gettext-tools.mo
236
share/locale/ro/LC_MESSAGES/gettext-tools.mo
237
share/locale/ru/LC_MESSAGES/gettext-tools.mo
238
share/locale/sk/LC_MESSAGES/gettext-tools.mo
239
share/locale/sl/LC_MESSAGES/gettext-tools.mo
240
share/locale/sr/LC_MESSAGES/gettext-tools.mo
241
share/locale/sv/LC_MESSAGES/gettext-tools.mo
242
share/locale/tr/LC_MESSAGES/gettext-tools.mo
243
share/locale/uk/LC_MESSAGES/gettext-tools.mo
244
share/locale/vi/LC_MESSAGES/gettext-tools.mo
245
share/locale/zh_CN/LC_MESSAGES/gettext-tools.mo
246
share/locale/zh_TW/LC_MESSAGES/gettext-tools.mo
(-)devel/libvirt-glib/Makefile (-1 / +1 lines)
Lines 14-20 LIB_DEPENDS= libvirt.so:${PORTSDIR}/deve Link Here
14
14
15
GNU_CONFIGURE=	yes
15
GNU_CONFIGURE=	yes
16
CONFIGURE_ARGS=	--enable-introspection
16
CONFIGURE_ARGS=	--enable-introspection
17
USES=		gmake libtool pathfix pkgconfig python:2
17
USES=		gettext gmake libtool pathfix pkgconfig python:2
18
USE_LDCONFIG=	yes
18
USE_LDCONFIG=	yes
19
USE_GNOME=	intlhack introspection
19
USE_GNOME=	intlhack introspection
20
CPPFLAGS+=	-I${LOCALBASE}/include
20
CPPFLAGS+=	-I${LOCALBASE}/include
(-)devel/poxml/Makefile (-1 / +2 lines)
Lines 2-7 Link Here
2
2
3
PORTNAME=	poxml
3
PORTNAME=	poxml
4
PORTVERSION=	${KDE4_VERSION}
4
PORTVERSION=	${KDE4_VERSION}
5
PORTREVISION=	1
5
CATEGORIES=	devel kde
6
CATEGORIES=	devel kde
6
MASTER_SITES=	KDE/${KDE4_BRANCH}/${PORTVERSION}/src
7
MASTER_SITES=	KDE/${KDE4_BRANCH}/${PORTVERSION}/src
7
DIST_SUBDIR=	KDE/${PORTVERSION}
8
DIST_SUBDIR=	KDE/${PORTVERSION}
Lines 12-18 COMMENT= Tools to translate Docbook XML Link Here
12
BUILD_DEPENDS=	${LOCALBASE}/lib/libantlr.a:${PORTSDIR}/devel/antlr
13
BUILD_DEPENDS=	${LOCALBASE}/lib/libantlr.a:${PORTSDIR}/devel/antlr
13
14
14
USE_KDE4=	kdelibs kdeprefix automoc4
15
USE_KDE4=	kdelibs kdeprefix automoc4
15
USES=		cmake:outsource tar:xz
16
USES=		cmake:outsource gettext-tools:build,run tar:xz
16
USE_QT4=	moc_build qmake_build rcc_build uic_build \
17
USE_QT4=	moc_build qmake_build rcc_build uic_build \
17
		corelib xml
18
		corelib xml
18
19
(-)devel/py-itools/Makefile (-3 / +2 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	itools
4
PORTNAME=	itools
5
PORTVERSION=	0.75.2
5
PORTVERSION=	0.75.2
6
PORTREVISION=	3
6
PORTREVISION=	4
7
CATEGORIES=	devel python
7
CATEGORIES=	devel python
8
MASTER_SITES=	CHEESESHOP
8
MASTER_SITES=	CHEESESHOP
9
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
9
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
Lines 20-26 BUILD_DEPENDS= ${LOCALBASE}/include/pop Link Here
20
		${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow \
20
		${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow \
21
		${PYTHON_PKGNAMEPREFIX}matplotlib>0:${PORTSDIR}/math/py-matplotlib \
21
		${PYTHON_PKGNAMEPREFIX}matplotlib>0:${PORTSDIR}/math/py-matplotlib \
22
		${PYTHON_PKGNAMEPREFIX}gobject>=2.16.1:${PORTSDIR}/devel/py-gobject \
22
		${PYTHON_PKGNAMEPREFIX}gobject>=2.16.1:${PORTSDIR}/devel/py-gobject \
23
		gettext:${PORTSDIR}/devel/gettext \
24
		python:${PORTSDIR}/lang/python
23
		python:${PORTSDIR}/lang/python
25
RUN_DEPENDS:=	${BUILD_DEPENDS}
24
RUN_DEPENDS:=	${BUILD_DEPENDS}
26
LIB_DEPENDS=	libglib-2.0.so:${PORTSDIR}/devel/glib20 \
25
LIB_DEPENDS=	libglib-2.0.so:${PORTSDIR}/devel/glib20 \
Lines 30-36 LIB_DEPENDS= libglib-2.0.so:${PORTSDIR}/ Link Here
30
CFLAGS+=	-I${LOCALBASE}/include -I${LOCALBASE}/include/poppler
29
CFLAGS+=	-I${LOCALBASE}/include -I${LOCALBASE}/include/poppler
31
LDFLAGS+=	-L${LOCALBASE}/lib
30
LDFLAGS+=	-L${LOCALBASE}/lib
32
31
33
USES=	pkgconfig python:2.7+
32
USES=		gettext-tools:run pkgconfig python:2.7+
34
USE_PYTHON=	autoplist distutils
33
USE_PYTHON=	autoplist distutils
35
34
36
OPTIONS_DEFINE=	DOCS
35
OPTIONS_DEFINE=	DOCS
(-)devel/subversion/Makefile (-1 / +1 lines)
Lines 68-74 TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sql Link Here
68
68
69
.if ${PORT_OPTIONS:MSTATIC}
69
.if ${PORT_OPTIONS:MSTATIC}
70
.  if ${PORT_OPTIONS:MNLS}
70
.  if ${PORT_OPTIONS:MNLS}
71
USES+=			gettext:build
71
USES+=			gettext-tools
72
.  endif
72
.  endif
73
.  if ${PORT_OPTIONS:MBDB}
73
.  if ${PORT_OPTIONS:MBDB}
74
BDB_BUILD_DEPENDS=	yes
74
BDB_BUILD_DEPENDS=	yes
(-)devel/subversion17/Makefile (-1 / +1 lines)
Lines 90-96 TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sql Link Here
90
90
91
.if ${PORT_OPTIONS:MSTATIC}
91
.if ${PORT_OPTIONS:MSTATIC}
92
.  if ${PORT_OPTIONS:MNLS}
92
.  if ${PORT_OPTIONS:MNLS}
93
USES+=			gettext:build
93
USES+=			gettext-tools
94
.  endif
94
.  endif
95
.  if ${PORT_OPTIONS:MBDB}
95
.  if ${PORT_OPTIONS:MBDB}
96
BDB_BUILD_DEPENDS=	yes
96
BDB_BUILD_DEPENDS=	yes
(-)editors/gwrite/Makefile (-2 / +1 lines)
Lines 14-20 LICENSE= LGPL3 # (or later) Link Here
14
LICENSE_FILE=	${WRKSRC}/COPYING
14
LICENSE_FILE=	${WRKSRC}/COPYING
15
15
16
BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}distutils-extra>=2.15:${PORTSDIR}/devel/py-distutils-extra \
16
BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}distutils-extra>=2.15:${PORTSDIR}/devel/py-distutils-extra \
17
		intltool-update:${PORTSDIR}/textproc/intltool \
18
		${PYTHON_PKGNAMEPREFIX}jswebkit>=0:${PORTSDIR}/www/py-jswebkit \
17
		${PYTHON_PKGNAMEPREFIX}jswebkit>=0:${PORTSDIR}/www/py-jswebkit \
19
		${PYTHON_PKGNAMEPREFIX}webkitgtk>=0:${PORTSDIR}/www/py-webkitgtk
18
		${PYTHON_PKGNAMEPREFIX}webkitgtk>=0:${PORTSDIR}/www/py-webkitgtk
20
RUN_DEPENDS=	gnome-icon-theme>=0:${PORTSDIR}/misc/gnome-icon-theme \
19
RUN_DEPENDS=	gnome-icon-theme>=0:${PORTSDIR}/misc/gnome-icon-theme \
Lines 22-28 RUN_DEPENDS= gnome-icon-theme>=0:${PORTS Link Here
22
		${PYTHON_PKGNAMEPREFIX}jswebkit>=0:${PORTSDIR}/www/py-jswebkit \
21
		${PYTHON_PKGNAMEPREFIX}jswebkit>=0:${PORTSDIR}/www/py-jswebkit \
23
		${PYTHON_PKGNAMEPREFIX}webkitgtk>=0:${PORTSDIR}/www/py-webkitgtk
22
		${PYTHON_PKGNAMEPREFIX}webkitgtk>=0:${PORTSDIR}/www/py-webkitgtk
24
23
25
USES=		desktop-file-utils python
24
USES=		desktop-file-utils gettext-tools python
26
USE_GNOME=	pygtk2
25
USE_GNOME=	pygtk2
27
USE_PYTHON=	distutils
26
USE_PYTHON=	distutils
28
27
(-)editors/kile-kde4/Makefile (-1 / +1 lines)
Lines 12-18 COMMENT= LaTeX source editor for KDE Link Here
12
12
13
RUN_DEPENDS=	identify:${PORTSDIR}/graphics/ImageMagick
13
RUN_DEPENDS=	identify:${PORTSDIR}/graphics/ImageMagick
14
14
15
USES=		cmake shared-mime-info tar:bzip2
15
USES=		cmake gettext-tools shared-mime-info tar:bzip2
16
USE_QT4=	qmake_build moc_build rcc_build uic_build
16
USE_QT4=	qmake_build moc_build rcc_build uic_build
17
USE_KDE4=	kdeprefix kdelibs automoc4 kate_run
17
USE_KDE4=	kdeprefix kdelibs automoc4 kate_run
18
USE_TEX=	latex
18
USE_TEX=	latex
(-)editors/klat4/Makefile (-1 / +1 lines)
Lines 12-18 COMMENT= LaTeX source editor for KDE4 Link Here
12
12
13
LICENSE=	GPLv2 # (or later)
13
LICENSE=	GPLv2 # (or later)
14
14
15
USES=		cmake tar:bzip2
15
USES=		cmake gettext-tools tar:bzip2
16
USE_KDE4=	automoc4 kate kdelibs kdeprefix
16
USE_KDE4=	automoc4 kate kdelibs kdeprefix
17
USE_QT4=	moc_build qmake_build rcc_build uic_build
17
USE_QT4=	moc_build qmake_build rcc_build uic_build
18
18
(-)finance/homebank/Makefile (-2 / +2 lines)
Lines 13-24 LICENSE= GPLv2 Link Here
13
LIB_DEPENDS=	libosp.so:${PORTSDIR}/textproc/opensp
13
LIB_DEPENDS=	libosp.so:${PORTSDIR}/textproc/opensp
14
14
15
GNU_CONFIGURE=	yes
15
GNU_CONFIGURE=	yes
16
USES=		desktop-file-utils gmake pkgconfig shared-mime-info
16
USES=		desktop-file-utils gettext gmake pkgconfig shared-mime-info
17
USE_GNOME=	gnomehier gtk20
17
USE_GNOME=	gnomehier gtk20
18
INSTALLS_ICONS=	yes
18
INSTALLS_ICONS=	yes
19
19
20
CPPFLAGS+=	-I${LOCALBASE}/include
20
CPPFLAGS+=	-I${LOCALBASE}/include
21
LDFLAGS+=	-L${LOCALBASE}/lib -pthread
21
LIBS+=		-L${LOCALBASE}/lib
22
22
23
PORTDOCS=	AUTHORS ChangeLog NEWS README
23
PORTDOCS=	AUTHORS ChangeLog NEWS README
24
24
(-)finance/moneymanagerex/Makefile (-1 / +1 lines)
Lines 16-22 LICENSE= GPLv2 Link Here
16
16
17
BUILD_DEPENDS=	${LOCALBASE}/include/boost/version.hpp:${PORTSDIR}/devel/boost-libs
17
BUILD_DEPENDS=	${LOCALBASE}/include/boost/version.hpp:${PORTSDIR}/devel/boost-libs
18
18
19
USES=	tar:bzip2
19
USES=		gettext-tools tar:bzip2
20
GNU_CONFIGURE=	yes
20
GNU_CONFIGURE=	yes
21
CONFIGURE_ARGS=	--with-wx-config=${WX_CONFIG}
21
CONFIGURE_ARGS=	--with-wx-config=${WX_CONFIG}
22
USE_WX=		2.8+
22
USE_WX=		2.8+
(-)ftp/wzdftpd/Makefile (-13 / +5 lines)
Lines 21-37 HOWL_DESC= Zeroconf support via Howl Link Here
21
21
22
OPTIONS_SUB=	yes
22
OPTIONS_SUB=	yes
23
23
24
USES=		pkgconfig libtool
24
GNU_CONFIGURE=	yes
25
USE_AUTOTOOLS=	libtoolize aclocal autoheader automake autoconf
26
ACLOCAL_ARGS=	-I m4 -I ac-helpers
27
AUTOMAKE_ARGS=	--add-missing --copy
28
CONFIGURE_ARGS=	--sysconfdir=${ETCDIR} --without-pam --disable-bonjour
25
CONFIGURE_ARGS=	--sysconfdir=${ETCDIR} --without-pam --disable-bonjour
26
USES=		autoreconf gettext-tools libtool pkgconfig
29
USE_LDCONFIG=	yes
27
USE_LDCONFIG=	yes
30
28
31
USE_RC_SUBR=	wzdftpd
29
USE_RC_SUBR=	wzdftpd
32
30
33
CPPFLAGS+=	-I${LOCALBASE}/include
31
CPPFLAGS+=	-I${LOCALBASE}/include
34
LDFLAGS+=	-L${LOCALBASE}/lib
32
LIBS+=		-L${LOCALBASE}/lib
35
33
36
ICONV_CONFIGURE_ON=	${ICONV_CONFIGURE_ARG}
34
ICONV_CONFIGURE_ON=	${ICONV_CONFIGURE_ARG}
37
ICONV_CONFIGURE_OFF=	--disable-utf8
35
ICONV_CONFIGURE_OFF=	--disable-utf8
Lines 78-92 PLIST_SUB+= ZEROCONF="" Link Here
78
PLIST_SUB+=	ZEROCONF="@comment "
76
PLIST_SUB+=	ZEROCONF="@comment "
79
.endif
77
.endif
80
78
81
post-extract:
82
	@${RM} -f ${WRKSRC}/m4/libtool.m4
83
	@${RM} -f ${WRKSRC}/m4/lib-*.m4
84
	@${ECHO_CMD} -n > ${WRKSRC}/config.rpath
85
86
post-patch:
79
post-patch:
87
	@${REINPLACE_CMD} -e \
80
	@${TOUCH} ${WRKSRC}/config.rpath
88
		'/Libs:/s|@PTHREAD_CFLAGS@|@LTLIBICONV@|' \
81
	@${ECHO_CMD} "ACLOCAL_AMFLAGS= -I ac-helpers" >> ${WRKSRC}/Makefile.am
89
		${WRKSRC}/wzdftpd.pc.in
90
	@${REINPLACE_CMD} -e \
82
	@${REINPLACE_CMD} -e \
91
		'/LDFLAGS/s|@PTHREAD_CFLAGS@|@LTLIBICONV@|' \
83
		'/LDFLAGS/s|@PTHREAD_CFLAGS@|@LTLIBICONV@|' \
92
		${WRKSRC}/libwzd-core/Makefile.am
84
		${WRKSRC}/libwzd-core/Makefile.am
(-)games/anki/Makefile (-1 / +2 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	anki
4
PORTNAME=	anki
5
PORTVERSION=	2.0.31
5
PORTVERSION=	2.0.31
6
PORTREVISION=	1
6
CATEGORIES=	games python
7
CATEGORIES=	games python
7
MASTER_SITES=	http://ankisrs.net/download/mirror/
8
MASTER_SITES=	http://ankisrs.net/download/mirror/
8
DIST_SUBDIR=	python
9
DIST_SUBDIR=	python
Lines 31-37 USE_QT4= network_run webkit_run Link Here
31
OPTIONS_DEFINE=	NLS
32
OPTIONS_DEFINE=	NLS
32
OPTIONS_SUB=	yes
33
OPTIONS_SUB=	yes
33
34
34
NLS_USES=	gettext:run
35
NLS_USES=	gettext-runtime:run
35
36
36
.include <bsd.port.options.mk>
37
.include <bsd.port.options.mk>
37
38
(-)games/bygfoot/Makefile (-2 / +2 lines)
Lines 18-27 LICENSE_FILE= ${WRKSRC}/COPYING Link Here
18
RUN_DEPENDS=	zip:${PORTSDIR}/archivers/zip \
18
RUN_DEPENDS=	zip:${PORTSDIR}/archivers/zip \
19
		unzip:${PORTSDIR}/archivers/unzip
19
		unzip:${PORTSDIR}/archivers/unzip
20
20
21
USES=		pkgconfig tar:bzip2
21
USES=		gettext pkgconfig tar:bzip2
22
GNU_CONFIGURE=	yes
22
GNU_CONFIGURE=	yes
23
USE_GNOME=	gtk20
23
USE_GNOME=	gtk20
24
CPPFLAGS+=	-I${LOCALBASE}/include
24
CPPFLAGS+=	-I${LOCALBASE}/include
25
LDFLAGS+=	-L${LOCALBASE}/lib ${PTHREAD_LIBS} -lm
25
LIBS+=		-L${LOCALBASE}/lib -lm
26
26
27
.include <bsd.port.mk>
27
.include <bsd.port.mk>
(-)games/bygfoot/files/patch-po-Makefile.in.in (-10 lines)
Lines 1-10 Link Here
1
--- po/Makefile.in.in.orig	2008-03-02 17:23:22.000000000 +0100
2
+++ po/Makefile.in.in	2008-03-14 14:12:46.000000000 +0100
3
@@ -21,6 +21,7 @@
4
 
5
 srcdir = @srcdir@
6
 top_srcdir = @top_srcdir@
7
+top_builddir = $(top_srcdir)
8
 VPATH = @srcdir@
9
 
10
 prefix = @prefix@
(-)games/cuyo/Makefile (-2 / +2 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	cuyo
4
PORTNAME=	cuyo
5
PORTVERSION=	2.0.0
5
PORTVERSION=	2.0.0
6
PORTREVISION=	2
6
PORTREVISION=	3
7
PORTEPOCH=	1
7
PORTEPOCH=	1
8
CATEGORIES=	games
8
CATEGORIES=	games
9
MASTER_SITES=	SAVANNAH
9
MASTER_SITES=	SAVANNAH
Lines 29-35 OPTIONS_DEFINE= DOCS NLS Link Here
29
OPTIONS_SUB=	yes
29
OPTIONS_SUB=	yes
30
30
31
NLS_CONFIGURE_ENABLE=	nls
31
NLS_CONFIGURE_ENABLE=	nls
32
NLS_USES=	gettext:run
32
NLS_USES=	gettext-runtime:run
33
33
34
# Do not use older versions
34
# Do not use older versions
35
PORTSCOUT=	skipv:2.~-1.2~beta1
35
PORTSCOUT=	skipv:2.~-1.2~beta1
(-)games/gbottler/Makefile (-1 / +1 lines)
Lines 13-20 COMMENT= SSTP Bottle client Link Here
13
13
14
RUN_DEPENDS=	${PYXML}
14
RUN_DEPENDS=	${PYXML}
15
15
16
USES=		gettext-tools gmake python
16
USE_GNOME=	pygtk2
17
USE_GNOME=	pygtk2
17
USES=		gmake python
18
PLIST_SUB=	VERSION=${PORTVERSION}
18
PLIST_SUB=	VERSION=${PORTVERSION}
19
19
20
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)games/ggz-sdl-games/Makefile (-5 / +7 lines)
Lines 9-29 CATEGORIES= games Link Here
9
MAINTAINER=	ports@FreeBSD.org
9
MAINTAINER=	ports@FreeBSD.org
10
COMMENT=	The GGZ Gaming Zone - SDL-based games
10
COMMENT=	The GGZ Gaming Zone - SDL-based games
11
11
12
USE_GL=		gl
13
USE_SDL=	image mixer sdl ttf
14
GNU_CONFIGURE=	yes
12
GNU_CONFIGURE=	yes
15
CONFIGURE_ARGS=	--disable-debug
13
CONFIGURE_ARGS=	--disable-debug
14
USES=		gettext
16
USE_GGZ=	client
15
USE_GGZ=	client
16
USE_GL=		gl
17
USE_SDL=	image mixer sdl ttf
18
USE_XORG=	xcursor
17
19
18
INSTALL_TARGET=	install-strip
20
INSTALL_TARGET=	install-strip
19
21
20
CPPFLAGS+=	-I${LOCALBASE}/include
22
CPPFLAGS+=	-I${LOCALBASE}/include
21
LDFLAGS+=	-L${LOCALBASE}/lib -pthread -lexpat
23
LIBS+=		-L${LOCALBASE}/lib -lexpat
22
24
23
post-patch:
25
post-patch:
24
	@${REINPLACE_CMD} -e 's|_LDADD =|_LDADD = -lggzcore -lggz|' \
26
	@${REINPLACE_CMD} -e '/^ggz_ttt3d_LDADD =/s/$$/ -lggzcore -lggz/' \
25
		${WRKSRC}/ttt3d/Makefile.in
27
		${WRKSRC}/ttt3d/Makefile.in
26
	@${REINPLACE_CMD} -e 's|_LDADD =|_LDADD = -lggzcore|' \
28
	@${REINPLACE_CMD} -e '/^geekgame_LDADD =/s/$$/ -lggzcore -lX11/' \
27
		${WRKSRC}/geekgame/Makefile.in
29
		${WRKSRC}/geekgame/Makefile.in
28
30
29
post-install:
31
post-install:
(-)games/gnomebreakout/Makefile (-2 / +2 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	gnomebreakout
4
PORTNAME=	gnomebreakout
5
PORTVERSION=	0.5.3
5
PORTVERSION=	0.5.3
6
PORTREVISION=	13
6
PORTREVISION=	14
7
CATEGORIES=	games gnome
7
CATEGORIES=	games gnome
8
MASTER_SITES=	SF/${PORTNAME:S/eb/e-b/}/${PORTNAME:S/eb/e-b/}/${PORTVERSION}/ \
8
MASTER_SITES=	SF/${PORTNAME:S/eb/e-b/}/${PORTNAME:S/eb/e-b/}/${PORTVERSION}/ \
9
		http://www.users.on.net/~mipearson/
9
		http://www.users.on.net/~mipearson/
Lines 29-35 PORTDOCS= AUTHORS ChangeLog NEWS README Link Here
29
OPTIONS_DEFINE=	DOCS NLS
29
OPTIONS_DEFINE=	DOCS NLS
30
OPTIONS_SUB=	yes
30
OPTIONS_SUB=	yes
31
31
32
NLS_USES=	gettext:run
32
NLS_USES=	gettext-runtime:run
33
33
34
.include <bsd.port.options.mk>
34
.include <bsd.port.options.mk>
35
35
(-)games/live-f1/Makefile (-1 / +1 lines)
Lines 18-24 WRKSRC= ${WRKDIR}/${PORTNAME}_${PORTVER Link Here
18
18
19
OPTIONS_DEFINE=	NLS
19
OPTIONS_DEFINE=	NLS
20
20
21
USES=		pkgconfig gettext:build iconv gmake tar:tgz
21
USES=		pkgconfig gettext-tools iconv gmake tar:tgz
22
USE_OPENSSL=	yes
22
USE_OPENSSL=	yes
23
GNU_CONFIGURE=	yes
23
GNU_CONFIGURE=	yes
24
LDFLAGS+=	-L${LOCALBASE}/lib
24
LDFLAGS+=	-L${LOCALBASE}/lib
(-)games/pythonsudoku/Makefile (-2 / +2 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	pythonsudoku
4
PORTNAME=	pythonsudoku
5
PORTVERSION=	0.13
5
PORTVERSION=	0.13
6
PORTREVISION=	5
6
PORTREVISION=	6
7
CATEGORIES=	games python
7
CATEGORIES=	games python
8
MASTER_SITES=	SF/${PORTNAME}/Python%20Sudoku/${PORTVERSION}/ \
8
MASTER_SITES=	SF/${PORTNAME}/Python%20Sudoku/${PORTVERSION}/ \
9
		SF/nemysisfreebsdp/games/:icons
9
		SF/nemysisfreebsdp/games/:icons
Lines 36-42 DESKTOP_ENTRIES="Python Sudoku" "" "${PO Link Here
36
OPTIONS_DEFINE=	DOCS NLS
36
OPTIONS_DEFINE=	DOCS NLS
37
OPTIONS_SUB=	yes
37
OPTIONS_SUB=	yes
38
38
39
NLS_USES=	gettext:run
39
NLS_USES=	gettext-runtime:run
40
40
41
.include <bsd.port.options.mk>
41
.include <bsd.port.options.mk>
42
42
(-)games/scourge/Makefile (-7 / +3 lines)
Lines 15-27 COMMENT= Rogue-like game Link Here
15
LIB_DEPENDS=	libfreetype.so:${PORTSDIR}/print/freetype2
15
LIB_DEPENDS=	libfreetype.so:${PORTSDIR}/print/freetype2
16
RUN_DEPENDS=	${DATADIR}/config/scourge.cfg:${PORTSDIR}/games/scourge-data
16
RUN_DEPENDS=	${DATADIR}/config/scourge.cfg:${PORTSDIR}/games/scourge-data
17
17
18
USE_AUTOTOOLS=	autoconf:env automake:env
18
USES=		autoreconf gettext gmake
19
USE_GL=		gl
19
USE_GL=		gl
20
USE_SDL=	sdl image mixer net ttf
20
USE_SDL=	sdl image mixer net ttf
21
USES=		gmake
22
GNU_CONFIGURE=	yes
21
GNU_CONFIGURE=	yes
23
CPPFLAGS+=	-I${LOCALBASE}/include ${PTHREAD_LIBS}
22
CPPFLAGS+=	-I${LOCALBASE}/include
24
LDFLAGS+=	-L${LOCALBASE}/lib
23
LIBS+=		-L${LOCALBASE}/lib
25
24
26
CONFIGURE_ARGS=	--with-data-dir=${DATADIR}
25
CONFIGURE_ARGS=	--with-data-dir=${DATADIR}
27
26
Lines 35-43 DEBUG_CONFIGURE_ENABLE= debug Link Here
35
post-patch:
34
post-patch:
36
	@${REINPLACE_CMD} -e 's|GLvoid|void|g' ${WRKSRC}/src/sdlhandler.cpp ${WRKSRC}/src/sdlhandler.h
35
	@${REINPLACE_CMD} -e 's|GLvoid|void|g' ${WRKSRC}/src/sdlhandler.cpp ${WRKSRC}/src/sdlhandler.h
37
36
38
pre-configure:
39
	@cd ${WRKSRC} && ${AUTORECONF} -i
40
41
do-install:
37
do-install:
42
	@${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/
38
	@${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/
43
39
(-)games/unknown-horizons/Makefile (-1 / +1 lines)
Lines 25-31 GH_ACCOUNT= ${PORTNAME} Link Here
25
GH_COMMIT=	ac7af43
25
GH_COMMIT=	ac7af43
26
26
27
USE_GNOME=	intltool
27
USE_GNOME=	intltool
28
USES=		gettext:build python:2 tar:xz
28
USES=		gettext-tools python:2 tar:xz
29
USE_PYTHON=	distutils
29
USE_PYTHON=	distutils
30
PYDISTUTILS_PKGNAME=	UnknownHorizons
30
PYDISTUTILS_PKGNAME=	UnknownHorizons
31
31
(-)games/xboard-devel/Makefile (-3 / +2 lines)
Lines 26-39 DATADIR= ${PREFIX}/share/games/xboard Link Here
26
DOCSDIR=	${PREFIX}/share/doc/xboard
26
DOCSDIR=	${PREFIX}/share/doc/xboard
27
XBOARDCONF=	${WRKSRC}/xboard.conf.in
27
XBOARDCONF=	${WRKSRC}/xboard.conf.in
28
28
29
USES+=	gmake
29
USES=		autoreconf gettext-tools gmake
30
USE_AUTOTOOLS=	automake aclocal
31
30
32
INSTALL_TARGET=	install-strip
31
INSTALL_TARGET=	install-strip
33
32
34
pre-configure:
33
pre-configure:
34
	${RM} ${WRKSRC}/m4/*.m4
35
	${REINPLACE_CMD} -e "s|\(GITVERSION=\).*|\1${COMMIT_HASH}|" ${WRKSRC}/Makefile.am
35
	${REINPLACE_CMD} -e "s|\(GITVERSION=\).*|\1${COMMIT_HASH}|" ${WRKSRC}/Makefile.am
36
	${REINPLACE_CMD} -E "s|(AC_INIT\(\[xboard\],\[master-[^]]+)(\].+\))|\1-git:${COMMIT_HASH}\2|" ${WRKSRC}/configure.ac
36
	${REINPLACE_CMD} -E "s|(AC_INIT\(\[xboard\],\[master-[^]]+)(\].+\))|\1-git:${COMMIT_HASH}\2|" ${WRKSRC}/configure.ac
37
	@cd ${WRKSRC} && ./autogen.sh
38
37
39
.include "${MASTERDIR}/Makefile"
38
.include "${MASTERDIR}/Makefile"
(-)graphics/digikam-kde4-l10n/Makefile (-1 / +1 lines)
Lines 10-16 COMMENT= l10n for digiKam, showFoto, and Link Here
10
10
11
CONFLICTS_INSTALL=	digikam-2.* kipi-plugins-2.* libkgeomap-2.*
11
CONFLICTS_INSTALL=	digikam-2.* kipi-plugins-2.* libkgeomap-2.*
12
12
13
USES=		gettext:build
13
USES=		gettext-tools
14
WRKSRC=		${WRKDIR}/${DISTNAME}/po
14
WRKSRC=		${WRKDIR}/${DISTNAME}/po
15
15
16
pre-configure:
16
pre-configure:
(-)graphics/gtkam/Makefile (-3 / +4 lines)
Lines 15-27 LICENSE= GPLv2 # (or later) Link Here
15
LIB_DEPENDS=	libexif-gtk.so:${PORTSDIR}/graphics/libexif-gtk \
15
LIB_DEPENDS=	libexif-gtk.so:${PORTSDIR}/graphics/libexif-gtk \
16
		libgphoto2.so:${PORTSDIR}/graphics/libgphoto2
16
		libgphoto2.so:${PORTSDIR}/graphics/libgphoto2
17
17
18
USES=		gmake pathfix pkgconfig
18
USES=		gettext gmake pathfix pkgconfig
19
USE_GNOME=	gnomehier gtk20
19
USE_GNOME=	gnomehier gtk20
20
GNU_CONFIGURE=	yes
20
GNU_CONFIGURE=	yes
21
21
22
CPPFLAGS+=	-I${LOCALBASE}/include
22
CPPFLAGS+=	-I${LOCALBASE}/include
23
LDFLAGS+=	-L${LOCALBASE}/lib
23
LIBS+=		-L${LOCALBASE}/lib
24
LIBS+=		`pkg-config --libs gtk+-x11-2.0`
25
24
26
OPTIONS_DEFINE=	DOCS GIMP GNOME
25
OPTIONS_DEFINE=	DOCS GIMP GNOME
27
OPTIONS_SUB=	yes
26
OPTIONS_SUB=	yes
Lines 44-49 post-patch: Link Here
44
	@${REINPLACE_CMD} -e 's|GIMP_VERSION="2.0"|GIMP_VERSION="2.2"|g ; \
43
	@${REINPLACE_CMD} -e 's|GIMP_VERSION="2.0"|GIMP_VERSION="2.2"|g ; \
45
		 s|images/gtkam|gtkam/images|g ; \
44
		 s|images/gtkam|gtkam/images|g ; \
46
		 s|FLAGS -g|FLAGS|g' ${WRKSRC}/configure
45
		 s|FLAGS -g|FLAGS|g' ${WRKSRC}/configure
46
	@${REINPLACE_CMD} 's/$$(GNOME_LIBS)/& $$(GTK_LIBS)/' \
47
		${WRKSRC}/src/Makefile.in
47
	@${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \
48
	@${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \
48
		's|images/gtkam|gtkam/images|g ; \
49
		's|images/gtkam|gtkam/images|g ; \
49
		 s|$$(libdir)/gimp/|$$(libexecdir)/gimp/|g'
50
		 s|$$(libdir)/gimp/|$$(libexecdir)/gimp/|g'
(-)graphics/kcoloredit/Makefile (-1 / +1 lines)
Lines 13-19 COMMENT= Palette files editor for KDE Link Here
13
13
14
USE_KDE4=	kdelibs kdeprefix kdehier automoc4
14
USE_KDE4=	kdelibs kdeprefix kdehier automoc4
15
USE_QT4=	corelib qmake_build moc_build rcc_build uic_build
15
USE_QT4=	corelib qmake_build moc_build rcc_build uic_build
16
USES=		cmake tar:bzip2
16
USES=		cmake gettext tar:bzip2
17
17
18
APP_VER=	2.0.0
18
APP_VER=	2.0.0
19
EXTRA_VER=	4.4.0
19
EXTRA_VER=	4.4.0
(-)graphics/kiconedit/Makefile (-1 / +1 lines)
Lines 12-18 COMMENT= KDE icon editor Link Here
12
12
13
USE_KDE4=	kdelibs kdeprefix kdehier automoc4
13
USE_KDE4=	kdelibs kdeprefix kdehier automoc4
14
USE_QT4=	corelib qmake_build moc_build rcc_build uic_build
14
USE_QT4=	corelib qmake_build moc_build rcc_build uic_build
15
USES=		cmake tar:bzip2
15
USES=		cmake gettext tar:bzip2
16
16
17
EXTRA_VER=	4.4.0
17
EXTRA_VER=	4.4.0
18
18
(-)graphics/libGL/bsd.mesalib.mk (-1 / +1 lines)
Lines 58-64 BUILD_DEPENDS+= makedepend:${PORTSDIR}/d Link Here
58
58
59
LIB_DEPENDS+=	libdevq.so:${PORTSDIR}/devel/libdevq
59
LIB_DEPENDS+=	libdevq.so:${PORTSDIR}/devel/libdevq
60
60
61
USES+=		bison gettext:build gmake libtool pathfix pkgconfig \
61
USES+=		bison gettext-tools gmake libtool pathfix pkgconfig \
62
		python:2,build shebangfix tar:bzip2
62
		python:2,build shebangfix tar:bzip2
63
USE_LDCONFIG=	yes
63
USE_LDCONFIG=	yes
64
GNU_CONFIGURE=	yes
64
GNU_CONFIGURE=	yes
(-)graphics/skanlite/Makefile (-1 / +1 lines)
Lines 14-19 LIB_DEPENDS= libksane.so:${PORTSDIR}/gra Link Here
14
14
15
USE_KDE4=	kdelibs kdeprefix kdehier automoc4
15
USE_KDE4=	kdelibs kdeprefix kdehier automoc4
16
USE_QT4=	qmake_build moc_build rcc_build uic_build
16
USE_QT4=	qmake_build moc_build rcc_build uic_build
17
USES=		cmake:outsource tar:xz
17
USES=		cmake:outsource gettext tar:xz
18
18
19
.include <bsd.port.mk>
19
.include <bsd.port.mk>
(-)japanese/im-ja/Makefile (-1 / +1 lines)
Lines 16-22 ANTHY_DESC= Use Anthy Link Here
16
CANNA_DESC=	Use Canna
16
CANNA_DESC=	Use Canna
17
WNN_DESC=	Use FreeWnn
17
WNN_DESC=	Use FreeWnn
18
18
19
USES=		gmake libtool pathfix perl5 pkgconfig
19
USES=		gettext gmake libtool pathfix perl5 pkgconfig
20
USE_GNOME=	gconf2 gnomeprefix intlhack libglade2
20
USE_GNOME=	gconf2 gnomeprefix intlhack libglade2
21
USE_PERL5=	build
21
USE_PERL5=	build
22
GNU_CONFIGURE=	yes
22
GNU_CONFIGURE=	yes
(-)japanese/mecab/Makefile (-11 / +9 lines)
Lines 16-24 LICENSE_COMB= multi Link Here
16
GNU_CONFIGURE=	yes
16
GNU_CONFIGURE=	yes
17
CONFIGURE_ARGS=	ac_cv_lib_stdcpp_main=no
17
CONFIGURE_ARGS=	ac_cv_lib_stdcpp_main=no
18
INSTALL_TARGET=	install-strip
18
INSTALL_TARGET=	install-strip
19
USES=		iconv gettext:build libtool perl5
19
USES=		gettext-tools iconv libtool perl5
20
USE_AUTOTOOLS=	autoconf autoheader automake aclocal libtoolize
21
AUTOMAKE_ARGS=	--add-missing --copy --force
22
USE_PERL5=	build
20
USE_PERL5=	build
23
USE_LDCONFIG=	yes
21
USE_LDCONFIG=	yes
24
22
Lines 30-47 PORTDOCS= AUTHORS README *.html Link Here
30
OPTIONS_DEFINE=	DOCS
28
OPTIONS_DEFINE=	DOCS
31
29
32
post-patch:
30
post-patch:
33
	${REINPLACE_CMD} -e 's/-O3/${CFLAGS}/' ${WRKSRC}/${CONFIGURE_SCRIPT}.in
31
	@${REINPLACE_CMD} '/^libmecab_la_LIBADD =/s/$$/ $$(LTLIBICONV)/' \
34
	${REINPLACE_CMD} -e 's/conf_DATA = mecabrc/conf_DATA = mecabrc.sample/' ${WRKSRC}/Makefile.am
32
		${WRKSRC}/src/Makefile.in
35
33
	@${REINPLACE_CMD} \
36
post-configure:
34
		-e '/CFLAGS/s|-O3|${CFLAGS}|' \
37
	${CP} ${WRKSRC}/mecabrc ${WRKSRC}/mecabrc.sample
35
		-e '/CXXFLAGS/s|-O3|${CXXFLAGS}|' \
38
36
		${WRKSRC}/configure
39
pre-install:
40
	${CHMOD} a+x ${WRKSRC}/install-sh
41
37
42
post-install:
38
post-install:
43
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
39
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
44
	${INSTALL_DATA} ${PORTDOCS:N*.html:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
40
	${INSTALL_DATA} ${PORTDOCS:N*.html:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
45
	${INSTALL_DATA} ${WRKSRC}/doc/*.html ${STAGEDIR}${DOCSDIR}
41
	${INSTALL_DATA} ${WRKSRC}/doc/*.html ${STAGEDIR}${DOCSDIR}
42
	${MV} ${STAGEDIR}${PREFIX}/etc/mecabrc \
43
		${STAGEDIR}${PREFIX}/etc/mecabrc.sample
46
44
47
.include <bsd.port.mk>
45
.include <bsd.port.mk>
(-)japanese/mecab/files/patch-src_Makefile.am (-10 lines)
Lines 1-10 Link Here
1
--- src/Makefile.am.orig	2013-01-24 14:35:35.000000000 +0900
2
+++ src/Makefile.am	2013-04-07 21:39:46.000000000 +0900
3
@@ -17,6 +17,7 @@
4
 			feature_index.cpp  feature_index.h  lbfgs.cpp \
5
 			lbfgs.h  learner_tagger.cpp  learner_tagger.h  learner.cpp  \
6
 			learner_node.h libmecab.cpp
7
+libmecab_la_LIBADD = $(LTLIBICONV)
8
 
9
 include_HEADERS = mecab.h
10
 bin_PROGRAMS    = mecab
(-)japanese/mecab/pkg-plist (-1 / +1 lines)
Lines 1-5 Link Here
1
bin/mecab
1
bin/mecab
2
bin/mecab-config
2
bin/mecab-config
3
@sample etc/mecabrc.sample
3
include/mecab.h
4
include/mecab.h
4
lib/libmecab.a
5
lib/libmecab.a
5
lib/libmecab.so
6
lib/libmecab.so
Lines 11-14 libexec/mecab/mecab-dict-index Link Here
11
libexec/mecab/mecab-system-eval
12
libexec/mecab/mecab-system-eval
12
libexec/mecab/mecab-test-gen
13
libexec/mecab/mecab-test-gen
13
man/man1/mecab.1.gz
14
man/man1/mecab.1.gz
14
@sample etc/mecabrc.sample
(-)japanese/mozc-server/Makefile (+4 lines)
Lines 47-52 USE_XORG= xcb Link Here
47
USE_GNOME=	glib20 gtk20
47
USE_GNOME=	glib20 gtk20
48
.elif ${BUILD_MOZC_LIST:Mmozc_el} == "mozc_el"
48
.elif ${BUILD_MOZC_LIST:Mmozc_el} == "mozc_el"
49
USE_EMACS=	yes
49
USE_EMACS=	yes
50
.elif ${BUILD_MOZC_LIST:Mfcitx_mozc}
51
USES+=		gettext-tools
50
.endif
52
.endif
51
53
52
# Use GCC only when the stock clang does not have libc++.so.
54
# Use GCC only when the stock clang does not have libc++.so.
Lines 267-272 RUN_DEPENDS+= mozc_server:${PORTSDIR}/ja Link Here
267
		mozc_tool:${PORTSDIR}/japanese/mozc-tool \
269
		mozc_tool:${PORTSDIR}/japanese/mozc-tool \
268
		mozc_server_start:${PORTSDIR}/japanese/mozc-additions
270
		mozc_server_start:${PORTSDIR}/japanese/mozc-additions
269
271
272
USES+=		gettext-tools
273
270
PLIST_FILES+=	lib/fcitx/fcitx-mozc.so \
274
PLIST_FILES+=	lib/fcitx/fcitx-mozc.so \
271
		share/fcitx/addon/fcitx-mozc.conf \
275
		share/fcitx/addon/fcitx-mozc.conf \
272
		share/fcitx/inputmethod/mozc.conf \
276
		share/fcitx/inputmethod/mozc.conf \
(-)korean/gtkcomm/Makefile (-1 / +1 lines)
Lines 14-20 LICENSE= GPLv2 Link Here
14
14
15
RUN_DEPENDS=	${LOCALBASE}/lib/X11/fonts/local/gulim12.pcf.gz:${PORTSDIR}/korean/baekmukfonts-bdf
15
RUN_DEPENDS=	${LOCALBASE}/lib/X11/fonts/local/gulim12.pcf.gz:${PORTSDIR}/korean/baekmukfonts-bdf
16
16
17
USES=		pathfix perl5 pkgconfig
17
USES=		gettext pathfix perl5 pkgconfig
18
PATHFIX_MAKEFILEIN=	Makefile*in
18
PATHFIX_MAKEFILEIN=	Makefile*in
19
USE_PERL5=	build
19
USE_PERL5=	build
20
USE_GNOME=	glib20 gtk20
20
USE_GNOME=	glib20 gtk20
(-)lang/gcc-aux/Makefile (-1 / +1 lines)
Lines 139-145 APPLY_DIFFS+= gcc-testsuite Link Here
139
.endif
139
.endif
140
140
141
.if ${PORT_OPTIONS:MNLS} && !${PORT_OPTIONS:MBOOTSTRAP}
141
.if ${PORT_OPTIONS:MNLS} && !${PORT_OPTIONS:MBOOTSTRAP}
142
USES+=	gettext:build
142
USES+=		gettext-tools
143
EXTRA_CONFIG+=	--enable-nls
143
EXTRA_CONFIG+=	--enable-nls
144
.else
144
.else
145
EXTRA_CONFIG+=	--disable-nls
145
EXTRA_CONFIG+=	--disable-nls
(-)lang/gcc47-aux/Makefile (-1 / +1 lines)
Lines 165-171 APPLY_DIFFS+= gcc-testsuite Link Here
165
#################################
165
#################################
166
166
167
.if ${PORT_OPTIONS:MNLS}
167
.if ${PORT_OPTIONS:MNLS}
168
USES+=	gettext:build
168
USES+=		gettext-tools
169
EXTRA_CONFIG+=	--enable-nls
169
EXTRA_CONFIG+=	--enable-nls
170
.else
170
.else
171
EXTRA_CONFIG+=	--disable-nls
171
EXTRA_CONFIG+=	--disable-nls
(-)mail/faces/Makefile (-7 / +5 lines)
Lines 16-27 X11_DESC= X11/GTK support Link Here
16
RPLAY_DESC=	rplay audio support
16
RPLAY_DESC=	rplay audio support
17
SOX_DESC=	Sox audio support
17
SOX_DESC=	Sox audio support
18
18
19
WANT_GNOME=	yes
19
NLS_USES=		gettext
20
NLS_CONFIGURE_ENABLE=	nls
21
20
USE_LDCONFIG=	yes
22
USE_LDCONFIG=	yes
21
23
22
PORTDOCS=	README
24
PORTDOCS=	README
23
25
24
.include <bsd.port.pre.mk>
26
.include <bsd.port.options.mk>
25
27
26
.if ! ${PORT_OPTIONS:MX11}
28
.if ! ${PORT_OPTIONS:MX11}
27
PLIST_SUB+=	X11="@comment "
29
PLIST_SUB+=	X11="@comment "
Lines 37-46 CONFIGURE_ARGS= --enable-imap --enable-p Link Here
37
		--with-facedir=${DATADIR}
39
		--with-facedir=${DATADIR}
38
.endif
40
.endif
39
41
40
.if ! ${PORT_OPTIONS:MNLS}
41
CONFIGURE_ARGS+=--disable-nls
42
.endif
43
44
.ifdef WITH_NAS
42
.ifdef WITH_NAS
45
 CONFIGURE_ARGS+=	--enable-audio --with-audio-cmd=${LOCALBASE}/bin/auplay
43
 CONFIGURE_ARGS+=	--enable-audio --with-audio-cmd=${LOCALBASE}/bin/auplay
46
 RUN_DEPENDS=	auplay:${PORTSDIR}/audio/nas
44
 RUN_DEPENDS=	auplay:${PORTSDIR}/audio/nas
Lines 98-101 do-install: Link Here
98
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
96
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
99
	${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
97
	${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
100
98
101
.include <bsd.port.post.mk>
99
.include <bsd.port.mk>
(-)mail/milter-manager/Makefile (-9 / +7 lines)
Lines 18-29 RUN_DEPENDS= rubygem-glib2>0:${PORTSDIR} Link Here
18
18
19
USE_RC_SUBR=	milter-manager
19
USE_RC_SUBR=	milter-manager
20
GNU_CONFIGURE=	yes
20
GNU_CONFIGURE=	yes
21
MAKE_ARGS+=	pkgconfigdir=${PREFIX}/libdata/pkgconfig
21
CONFIGURE_ARGS=	--with-libev \
22
CONFIGURE_ARGS=	CPPFLAGS="-I${LOCALBASE}/include" \
22
		--with-package-platform=freebsd
23
		--with-libev \
23
CPPFLAGS+=	-I${LOCALBASE}/include
24
		--with-package-platform=freebsd \
24
LIBS+=		-L${LOCALBASE}/lib
25
		LDFLAGS="-L${LOCALBASE}/lib -lintl"
25
USES=		gettext gmake libtool pathfix pkgconfig
26
USES=		gmake pkgconfig libtool
27
USE_GNOME=	glib20 intltool
26
USE_GNOME=	glib20 intltool
28
USE_LDCONFIG=	yes
27
USE_LDCONFIG=	yes
29
USE_RUBY=	yes
28
USE_RUBY=	yes
Lines 31-42 INSTALL_TARGET= install-strip Link Here
31
30
32
OPTIONS_DEFINE=	DOCS EXAMPLES
31
OPTIONS_DEFINE=	DOCS EXAMPLES
33
32
34
.include <bsd.port.options.mk>
35
36
MANLANG=       "" ja
37
PORTDOCS=	*
33
PORTDOCS=	*
38
PORTEXAMPLES=	*
34
PORTEXAMPLES=	*
39
35
36
.include <bsd.port.options.mk>
37
40
.if ${PORT_OPTIONS:MDOCS}
38
.if ${PORT_OPTIONS:MDOCS}
41
CONFIGURE_ARGS+=--with-html-dir=${DOCSDIR}
39
CONFIGURE_ARGS+=--with-html-dir=${DOCSDIR}
42
.else
40
.else
(-)math/galculator/Makefile (-2 / +2 lines)
Lines 8-18 MASTER_SITES= SF Link Here
8
MAINTAINER=	naddy@FreeBSD.org
8
MAINTAINER=	naddy@FreeBSD.org
9
COMMENT=	GTK-based scientific calculator
9
COMMENT=	GTK-based scientific calculator
10
10
11
USES=		gmake pkgconfig tar:bzip2
11
USES=		gettext gmake pkgconfig tar:bzip2
12
USE_GNOME=	gtk20
12
USE_GNOME=	gtk20
13
GNU_CONFIGURE=	yes
13
GNU_CONFIGURE=	yes
14
CPPFLAGS+=	-I${LOCALBASE}/include
14
CPPFLAGS+=	-I${LOCALBASE}/include
15
LDFLAGS+=	-L${LOCALBASE}/lib
15
LIBS+=		-L${LOCALBASE}/lib
16
CONFIGURE_ARGS=	--disable-gtk3
16
CONFIGURE_ARGS=	--disable-gtk3
17
17
18
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)misc/gimp-help-en/Makefile (-1 / +1 lines)
Lines 22-28 LICENSE= GFDL Link Here
22
BUILD_DEPENDS=	${PYTHON_SITELIBDIR}/libxml2mod.so:${PORTSDIR}/textproc/py-libxml2 \
22
BUILD_DEPENDS=	${PYTHON_SITELIBDIR}/libxml2mod.so:${PORTSDIR}/textproc/py-libxml2 \
23
		${LOCALBASE}/share/xsl/docbook/xhtml/chunk.xsl:${PORTSDIR}/textproc/docbook-xsl
23
		${LOCALBASE}/share/xsl/docbook/xhtml/chunk.xsl:${PORTSDIR}/textproc/docbook-xsl
24
24
25
USES=		gettext:build gmake perl5 pkgconfig python shebangfix tar:bzip2
25
USES=		gettext-tools gmake perl5 pkgconfig python shebangfix tar:bzip2
26
USE_GNOME=	libxslt:build
26
USE_GNOME=	libxslt:build
27
USE_PERL5=	build
27
USE_PERL5=	build
28
GNU_CONFIGURE=	yes
28
GNU_CONFIGURE=	yes
(-)misc/gnome-devel-docs/Makefile (-1 / +1 lines)
Lines 14-20 COMMENT= Documents targeted for GNOME de Link Here
14
BUILD_DEPENDS=	itstool:${PORTSDIR}/textproc/itstool
14
BUILD_DEPENDS=	itstool:${PORTSDIR}/textproc/itstool
15
#RUN_DEPENDS=	gnome-doc-prepare:${PORTSDIR}/textproc/gnome-doc-utils
15
#RUN_DEPENDS=	gnome-doc-prepare:${PORTSDIR}/textproc/gnome-doc-utils
16
16
17
USES=		gmake pkgconfig tar:xz
17
USES=		gettext-tools gmake pkgconfig tar:xz
18
GNU_CONFIGURE=	yes
18
GNU_CONFIGURE=	yes
19
19
20
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)misc/gnome-icon-theme/Makefile (-1 / +1 lines)
Lines 18-24 RUN_DEPENDS= ${LOCALBASE}/share/icons/hi Link Here
18
		gnome-icon-theme-symbolic>=0:${PORTSDIR}/x11-themes/gnome-icon-theme-symbolic
18
		gnome-icon-theme-symbolic>=0:${PORTSDIR}/x11-themes/gnome-icon-theme-symbolic
19
19
20
GNU_CONFIGURE=	yes
20
GNU_CONFIGURE=	yes
21
USES=		gmake pathfix pkgconfig tar:xz
21
USES=		gettext-tools gmake pathfix pkgconfig tar:xz
22
USE_GNOME=	intlhack
22
USE_GNOME=	intlhack
23
INSTALLS_ICONS=	yes
23
INSTALLS_ICONS=	yes
24
CONFIGURE_ARGS=	--enable-icon-mapping
24
CONFIGURE_ARGS=	--enable-icon-mapping
(-)misc/gnome-user-docs/Makefile (-1 / +1 lines)
Lines 14-20 COMMENT= GNOME 3 users guide Link Here
14
BUILD_DEPENDS=	itstool:${PORTSDIR}/textproc/itstool
14
BUILD_DEPENDS=	itstool:${PORTSDIR}/textproc/itstool
15
15
16
GNU_CONFIGURE=	yes
16
GNU_CONFIGURE=	yes
17
USES=		gettext:build gmake pathfix tar:xz
17
USES=		gettext-tools gmake pathfix tar:xz
18
USE_GNOME=	gnomeprefix libxml2:build
18
USE_GNOME=	gnomeprefix libxml2:build
19
19
20
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)misc/pinfo/Makefile (-3 / +3 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	pinfo
4
PORTNAME=	pinfo
5
PORTVERSION=	0.6.10
5
PORTVERSION=	0.6.10
6
PORTREVISION=	1
6
CATEGORIES=	misc
7
CATEGORIES=	misc
7
MASTER_SITES=	GENTOO/distfiles \
8
MASTER_SITES=	GENTOO/distfiles \
8
		http://alioth.debian.org/frs/download.php/file/3351/
9
		http://alioth.debian.org/frs/download.php/file/3351/
Lines 13-19 COMMENT= Ncurses based, lynx style info Link Here
13
LICENSE=	GPLv2
14
LICENSE=	GPLv2
14
LICENSE_FILE=	${WRKSRC}/COPYING
15
LICENSE_FILE=	${WRKSRC}/COPYING
15
16
16
USES=		autoreconf libtool makeinfo ncurses tar:bzip2
17
USES=		autoreconf gettext-tools libtool makeinfo ncurses tar:bzip2
17
GNU_CONFIGURE=	yes
18
GNU_CONFIGURE=	yes
18
CPPFLAGS+=	-I${LOCALBASE}/include
19
CPPFLAGS+=	-I${LOCALBASE}/include
19
LIBS+=		-L${LOCALBASE}/lib
20
LIBS+=		-L${LOCALBASE}/lib
Lines 29-40 READLINE_CONFIGURE_WITH= readline Link Here
29
.include <bsd.port.options.mk>
30
.include <bsd.port.options.mk>
30
31
31
.if ${PORT_OPTIONS:MNLS}
32
.if ${PORT_OPTIONS:MNLS}
32
USES+=		gettext
33
USES+=		gettext-runtime
33
.for lang in cs de eu ja nl pl pt_BR ro ru sv vi
34
.for lang in cs de eu ja nl pl pt_BR ro ru sv vi
34
PLIST_FILES+=	share/locale/${lang}/LC_MESSAGES/pinfo.mo
35
PLIST_FILES+=	share/locale/${lang}/LC_MESSAGES/pinfo.mo
35
.endfor
36
.endfor
36
.else
37
.else
37
USES+=		gettext:build
38
CONFIGURE_ARGS+=--disable-nls
38
CONFIGURE_ARGS+=--disable-nls
39
.endif
39
.endif
40
40
(-)multimedia/audiopreview/Makefile (-3 / +3 lines)
Lines 10-21 MASTER_SITES= http://audiopreview.codeal Link Here
10
MAINTAINER=	kevlo@FreeBSD.org
10
MAINTAINER=	kevlo@FreeBSD.org
11
COMMENT=	Command-line tool to play previews of audio and video files
11
COMMENT=	Command-line tool to play previews of audio and video files
12
12
13
USES=		gmake pkgconfig
13
USES=		gettext gmake pkgconfig
14
USE_GSTREAMER=	core
14
USE_GSTREAMER=	core
15
USE_GNOME=	intltool
15
USE_GNOME=	intltool
16
GNU_CONFIGURE=	yes
16
GNU_CONFIGURE=	yes
17
LDFLAGS+=	-L${LOCALBASE}/lib
17
CPPFLAGS+=	-I${LOCALBASE}/include
18
CFLAGS+=	-I${LOCALBASE}/include
18
LIBS+=		-L${LOCALBASE}/lib
19
19
20
PLIST_FILES=	bin/audiopreview man/man1/audiopreview.1.gz
20
PLIST_FILES=	bin/audiopreview man/man1/audiopreview.1.gz
21
21
(-)multimedia/handbrake/Makefile (-2 / +4 lines)
Lines 46-53 LIB_DEPENDS+= libdvdcss.so.2:${PORTSDIR} Link Here
46
.endif
46
.endif
47
47
48
GNU_CONFIGURE=	yes
48
GNU_CONFIGURE=	yes
49
USES=		gmake iconv libtool:build pkgconfig python:build
49
USES=		autoreconf:build gmake iconv libtool:build pkgconfig python:build
50
USE_AUTOTOOLS=	autoconf:env automake:env
51
50
52
WRKSRC=		${WRKDIR}/HandBrake-${PORTVERSION}
51
WRKSRC=		${WRKDIR}/HandBrake-${PORTVERSION}
53
PLIST_FILES=	bin/HandBrakeCLI
52
PLIST_FILES=	bin/HandBrakeCLI
Lines 79-86 MAKE_ENV+= COMPILER_PATH=${LOCALBASE}/bi Link Here
79
78
80
.if ${PORT_OPTIONS:MX11}
79
.if ${PORT_OPTIONS:MX11}
81
CONFIGURE_ARGS+=	--disable-gtk-update-checks --disable-gst
80
CONFIGURE_ARGS+=	--disable-gtk-update-checks --disable-gst
81
CPPFLAGS+=	-I${LOCALBASE}/include
82
LIBS+=		-L${LOCALBASE}/lib
82
LIB_DEPENDS+=	libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \
83
LIB_DEPENDS+=	libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \
83
		libnotify.so:${PORTSDIR}/devel/libnotify
84
		libnotify.so:${PORTSDIR}/devel/libnotify
85
USES+=		gettext
84
USE_GNOME+=	gtk20
86
USE_GNOME+=	gtk20
85
PLIST_FILES+=	bin/HandBrake
87
PLIST_FILES+=	bin/HandBrake
86
.else
88
.else
(-)multimedia/kmplayer-kde4/Makefile (-1 / +1 lines)
Lines 19-25 LIB_DEPENDS= libdbus-glib-1.so:${PORTSDI Link Here
19
		libcairo.so:${PORTSDIR}/graphics/cairo
19
		libcairo.so:${PORTSDIR}/graphics/cairo
20
RUN_DEPENDS=	mplayer:${PORTSDIR}/multimedia/mplayer
20
RUN_DEPENDS=	mplayer:${PORTSDIR}/multimedia/mplayer
21
21
22
USES=		cmake pkgconfig tar:bzip2
22
USES=		cmake gettext pkgconfig tar:bzip2
23
USE_GNOME=	gtk20
23
USE_GNOME=	gtk20
24
USE_QT4=	corelib moc_build qmake_build rcc_build uic_build
24
USE_QT4=	corelib moc_build qmake_build rcc_build uic_build
25
USE_KDE4=	automoc4 kdelibs kdeprefix
25
USE_KDE4=	automoc4 kdelibs kdeprefix
(-)multimedia/pitivi/Makefile (-3 / +3 lines)
Lines 14-26 COMMENT= Gstreamer based non-linear audi Link Here
14
RUN_DEPENDS=	py*-zope.interface>=0:${PORTSDIR}/devel/py-zope.interface \
14
RUN_DEPENDS=	py*-zope.interface>=0:${PORTSDIR}/devel/py-zope.interface \
15
		${PYTHON_SITELIBDIR}/goocanvasmodule.so:${PORTSDIR}/graphics/py-goocanvas
15
		${PYTHON_SITELIBDIR}/goocanvasmodule.so:${PORTSDIR}/graphics/py-goocanvas
16
16
17
USES=		gmake pkgconfig python tar:bzip2
17
USES=		gettext gmake pkgconfig python tar:bzip2
18
USE_GNOME=	pygtk2
18
USE_GNOME=	pygtk2
19
USE_GSTREAMER=	gnonlin python good
19
USE_GSTREAMER=	gnonlin python good
20
INSTALLS_ICONS=	yes
20
INSTALLS_ICONS=	yes
21
GNU_CONFIGURE=	yes
21
GNU_CONFIGURE=	yes
22
CPPFLAGS+=	-I${LOCALBAES}/include
22
CPPFLAGS+=	-I${LOCALBASE}/include
23
LDFLAGS+=	-L${LOCALBASE}/lib
23
LIBS+=		-L${LOCALBASE}/lib
24
CONFIGURE_ARGS=	--localstatedir=/var
24
CONFIGURE_ARGS=	--localstatedir=/var
25
USE_LDCONFIG=	yes
25
USE_LDCONFIG=	yes
26
26
(-)multimedia/xbmc/Makefile (-1 / +1 lines)
Lines 52-58 RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqli Link Here
52
		${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow \
52
		${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow \
53
		xdpyinfo:${PORTSDIR}/x11/xdpyinfo
53
		xdpyinfo:${PORTSDIR}/x11/xdpyinfo
54
54
55
USES=		gmake iconv:wchar_t libtool:build pkgconfig python:2
55
USES=		gettext gmake iconv:wchar_t libtool:build pkgconfig python:2
56
USE_AUTOTOOLS=	autoconf:env automake:env
56
USE_AUTOTOOLS=	autoconf:env automake:env
57
GNU_CONFIGURE=	yes
57
GNU_CONFIGURE=	yes
58
USE_XORG=	xt xmu xtst
58
USE_XORG=	xt xmu xtst
(-)net/grilo-plugins/Makefile (-1 / +1 lines)
Lines 15-21 LIB_DEPENDS= libgrilo-0.2.so:${PORTSDIR} Link Here
15
		libavahi-gobject.so:${PORTSDIR}/net/avahi-app \
15
		libavahi-gobject.so:${PORTSDIR}/net/avahi-app \
16
		libgdata.so:${PORTSDIR}/devel/libgdata
16
		libgdata.so:${PORTSDIR}/devel/libgdata
17
17
18
USES=		gmake libtool pathfix pkgconfig tar:xz
18
USES=		gettext gmake libtool pathfix pkgconfig tar:xz
19
USE_LDCONFIG=	yes
19
USE_LDCONFIG=	yes
20
USE_GNOME=	glib20 intlhack libxml2
20
USE_GNOME=	glib20 intlhack libxml2
21
GNU_CONFIGURE=	yes
21
GNU_CONFIGURE=	yes
(-)net/knemo-kde4/Makefile (-1 / +1 lines)
Lines 10-16 DISTNAME= 12956-${PORTNAME}-${PORTVERSIO Link Here
10
MAINTAINER=	makc@FreeBSD.org
10
MAINTAINER=	makc@FreeBSD.org
11
COMMENT=	KDE network monitor
11
COMMENT=	KDE network monitor
12
12
13
USES=		cmake tar:bzip2
13
USES=		cmake gettext tar:bzip2
14
USE_QT4=	qmake_build moc_build uic_build rcc_build
14
USE_QT4=	qmake_build moc_build uic_build rcc_build
15
USE_KDE4=	kdeprefix kdelibs workspace automoc4
15
USE_KDE4=	kdeprefix kdelibs workspace automoc4
16
16
(-)net/kwooty/Makefile (-1 / +1 lines)
Lines 16-22 RUN_DEPENDS= ${LOCALBASE}/bin/unrar:${PO Link Here
16
16
17
USE_KDE4=	kdelibs kdehier kdeprefix automoc4 workspace
17
USE_KDE4=	kdelibs kdehier kdeprefix automoc4 workspace
18
USE_QT4=	qmake_build moc_build rcc_build uic_build
18
USE_QT4=	qmake_build moc_build rcc_build uic_build
19
USES=		cmake
19
USES=		cmake gettext
20
USE_LDCONFIG=	yes
20
USE_LDCONFIG=	yes
21
21
22
post-patch:
22
post-patch:
(-)net/libzapojit/Makefile (-3 / +3 lines)
Lines 17-28 LIB_DEPENDS= libgoa-1.0.so:${PORTSDIR}/n Link Here
17
		libjson-glib-1.0.so:${PORTSDIR}/devel/json-glib \
17
		libjson-glib-1.0.so:${PORTSDIR}/devel/json-glib \
18
		librest-0.7.so:${PORTSDIR}/devel/librest
18
		librest-0.7.so:${PORTSDIR}/devel/librest
19
19
20
USES=		gmake libtool pathfix pkgconfig tar:xz
20
USES=		gettext gmake libtool pathfix pkgconfig tar:xz
21
USE_GNOME=	gnomeprefix intlhack
21
USE_GNOME=	gnomeprefix intltool
22
GNU_CONFIGURE=	yes
22
GNU_CONFIGURE=	yes
23
USE_LDCONFIG=	yes
23
USE_LDCONFIG=	yes
24
CPPFLAGS+=	-I${LOCALBASE}/include
24
CPPFLAGS+=	-I${LOCALBASE}/include
25
LDFLAGS+=	-L${LOCALBASE}/lib
25
LIBS+=		-L${LOCALBASE}/lib
26
INSTALL_TARGET=	install-strip
26
INSTALL_TARGET=	install-strip
27
27
28
.include <bsd.port.mk>
28
.include <bsd.port.mk>
(-)net/liferea/Makefile (-2 / +2 lines)
Lines 19-31 LIB_DEPENDS= libwebkitgtk-3.0.so:${PORTS Link Here
19
		libjson-glib-1.0.so:${PORTSDIR}/devel/json-glib
19
		libjson-glib-1.0.so:${PORTSDIR}/devel/json-glib
20
RUN_DEPENDS=	gsettings-desktop-schemas>=0:${PORTSDIR}/devel/gsettings-desktop-schemas
20
RUN_DEPENDS=	gsettings-desktop-schemas>=0:${PORTSDIR}/devel/gsettings-desktop-schemas
21
21
22
USES=		desktop-file-utils gmake libtool pathfix pkgconfig \
22
USES=		desktop-file-utils gettext gmake libtool pathfix pkgconfig \
23
		tar:bzip2
23
		tar:bzip2
24
USE_GNOME=	gnomeprefix gtk30 introspection:build libxslt:build libxml2
24
USE_GNOME=	gnomeprefix gtk30 introspection:build libxslt:build libxml2
25
USE_SQLITE=	3
25
USE_SQLITE=	3
26
GNU_CONFIGURE=	yes
26
GNU_CONFIGURE=	yes
27
CPPFLAGS+=	-I${LOCALBASE}/include
27
CPPFLAGS+=	-I${LOCALBASE}/include
28
LDFLAGS+=	-L${LOCALBASE}/lib
28
LIBS+=		-L${LOCALBASE}/lib
29
INSTALL_TARGET=	install-strip
29
INSTALL_TARGET=	install-strip
30
CONFIGURE_ARGS=	--disable-libnotify --disable-libindicate
30
CONFIGURE_ARGS=	--disable-libnotify --disable-libindicate
31
31
(-)net/minidlna/Makefile (-6 / +4 lines)
Lines 22-32 LIB_DEPENDS= libsqlite3.so:${PORTSDIR}/d Link Here
22
GNU_CONFIGURE=	yes
22
GNU_CONFIGURE=	yes
23
CONFIGURE_ARGS=	--with-db-path=/var/db/minidlna \
23
CONFIGURE_ARGS=	--with-db-path=/var/db/minidlna \
24
		--with-os-url="http://www.FreeBSD.org"
24
		--with-os-url="http://www.FreeBSD.org"
25
CFLAGS+=	-I${LOCALBASE}/include
25
CPPFLAGS+=	-I${LOCALBASE}/include
26
LDFLAGS+=	-L${LOCALBASE}/lib
26
LIBS+=		-L${LOCALBASE}/lib
27
USES=		iconv
27
USES=		autoreconf gettext-tools iconv
28
USE_AUTOTOOLS=	autoconf aclocal automake
29
AUTOMAKE_ARGS=	--add-missing
30
28
31
PKGMESSAGE=	${WRKSRC}/pkg-message
29
PKGMESSAGE=	${WRKSRC}/pkg-message
32
SUB_FILES+=	pkg-message
30
SUB_FILES+=	pkg-message
Lines 42-48 OPTIONS_SUB= yes Link Here
42
40
43
DEBUG_CFLAGS=	-DDEBUG
41
DEBUG_CFLAGS=	-DDEBUG
44
KQUEUE_DESC=	Experimental patch for automatic rescan using kqueue(2)
42
KQUEUE_DESC=	Experimental patch for automatic rescan using kqueue(2)
45
NLS_USES=	gettext
43
NLS_USES=	gettext-runtime
46
44
47
.include <bsd.port.options.mk>
45
.include <bsd.port.options.mk>
48
46
(-)net/remmina-plugin-i18n/Makefile (-1 / +1 lines)
Lines 7-12 COMMENT= Localized messages for Remmina Link Here
7
7
8
MASTERDIR=	${.CURDIR}/../remmina-plugins
8
MASTERDIR=	${.CURDIR}/../remmina-plugins
9
9
10
USES+=	gettext
10
USES=		gettext-tools
11
11
12
.include "${MASTERDIR}/Makefile"
12
.include "${MASTERDIR}/Makefile"
(-)net/remmina-plugins/bsd.plugin.mk (-1 / +1 lines)
Lines 8-14 LICENSE= GPLv2 Link Here
8
BUILD_DEPENDS+=	remmina>=${PORTVERSION}:${PORTSDIR}/net/remmina
8
BUILD_DEPENDS+=	remmina>=${PORTVERSION}:${PORTSDIR}/net/remmina
9
RUN_DEPENDS+=	remmina>=${PORTVERSION}:${PORTSDIR}/net/remmina
9
RUN_DEPENDS+=	remmina>=${PORTVERSION}:${PORTSDIR}/net/remmina
10
10
11
USES=		cmake gmake pkgconfig
11
USES+=		cmake gmake pkgconfig
12
USE_GNOME=	atk desktopfileutils gdkpixbuf2 glib20 gtk20 pango
12
USE_GNOME=	atk desktopfileutils gdkpixbuf2 glib20 gtk20 pango
13
INSTALLS_ICONS=	yes
13
INSTALLS_ICONS=	yes
14
LDFLAGS+=	-L${LOCALBASE}/lib ${PTHREAD_LIBS}
14
LDFLAGS+=	-L${LOCALBASE}/lib ${PTHREAD_LIBS}
(-)net-im/libpurple/Makefile (-4 / +4 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME?=	libpurple
4
PORTNAME?=	libpurple
5
PORTVERSION=	2.10.10
5
PORTVERSION=	2.10.10
6
PORTREVISION?=	1
6
PORTREVISION?=	2
7
CATEGORIES?=	net-im
7
CATEGORIES?=	net-im
8
MASTER_SITES=	SF/pidgin/Pidgin/${PORTVERSION}
8
MASTER_SITES=	SF/pidgin/Pidgin/${PORTVERSION}
9
DISTNAME=	pidgin-${PORTVERSION}
9
DISTNAME=	pidgin-${PORTVERSION}
Lines 11-18 DISTNAME= pidgin-${PORTVERSION} Link Here
11
MAINTAINER?=	marcus@FreeBSD.org
11
MAINTAINER?=	marcus@FreeBSD.org
12
COMMENT?=	Backend library for the Pidgin multi-protocol messaging client
12
COMMENT?=	Backend library for the Pidgin multi-protocol messaging client
13
13
14
USES=		cpe gmake libtool pathfix pkgconfig tar:bzip2
14
USES=		cpe gettext gmake libtool pathfix pkgconfig tar:bzip2
15
USE_GNOME?=	gnomeprefix intlhack glib20 libxml2
15
USE_GNOME?=	gnomeprefix intltool glib20 libxml2
16
GNU_CONFIGURE=	yes
16
GNU_CONFIGURE=	yes
17
CONFIGURE_ARGS?=--disable-gtkui \
17
CONFIGURE_ARGS?=--disable-gtkui \
18
		--disable-consoleui \
18
		--disable-consoleui \
Lines 26-32 INSTALL_TARGET= install-strip Link Here
26
.if !defined(PIDGIN_SLAVE)
26
.if !defined(PIDGIN_SLAVE)
27
# Pidgin slave ports that require the following functionality, must explicitly
27
# Pidgin slave ports that require the following functionality, must explicitly
28
# set these macros themselves.
28
# set these macros themselves.
29
USES+=		gettext iconv python
29
USES+=		iconv python
30
USE_LDCONFIG=	yes
30
USE_LDCONFIG=	yes
31
WANT_GNOME=	yes
31
WANT_GNOME=	yes
32
32
(-)net-im/libpurple/pkg-plist (-47 lines)
Lines 279-328 share/sounds/purple/login.wav Link Here
279
share/sounds/purple/logout.wav
279
share/sounds/purple/logout.wav
280
share/sounds/purple/receive.wav
280
share/sounds/purple/receive.wav
281
share/sounds/purple/send.wav
281
share/sounds/purple/send.wav
282
@dir share/sounds/purple
283
@dir share/purple/ca-certs
284
@dir share/purple
285
@dir share/locale/zh_HK/LC_MESSAGES
286
@dir share/locale/zh_HK
287
@dir share/locale/xh/LC_MESSAGES
288
@dir share/locale/xh
289
@dir share/locale/ur/LC_MESSAGES
290
@dir share/locale/ur
291
@dir share/locale/te/LC_MESSAGES
292
@dir share/locale/te
293
@dir share/locale/sw/LC_MESSAGES
294
@dir share/locale/sw
295
@dir share/locale/sr@latin/LC_MESSAGES
296
@dir share/locale/sr@latin
297
@dir share/locale/si/LC_MESSAGES
298
@dir share/locale/si
299
@dir share/locale/ps/LC_MESSAGES
300
@dir share/locale/ps
301
@dir share/locale/oc/LC_MESSAGES
302
@dir share/locale/oc
303
@dir share/locale/my_MM/LC_MESSAGES
304
@dir share/locale/my_MM
305
@dir share/locale/mr/LC_MESSAGES
306
@dir share/locale/mr
307
@dir share/locale/mhr/LC_MESSAGES
308
@dir share/locale/mhr
309
@dir share/locale/mai/LC_MESSAGES
310
@dir share/locale/mai
311
@dir share/locale/ku/LC_MESSAGES
312
@dir share/locale/ku
313
@dir share/locale/km/LC_MESSAGES
314
@dir share/locale/km
315
@dir share/locale/dz/LC_MESSAGES
316
@dir share/locale/dz
317
@dir share/locale/ca@valencia/LC_MESSAGES
318
@dir share/locale/ca@valencia
319
@dir share/locale/bn_IN/LC_MESSAGES
320
@dir share/locale/bn_IN
321
@dir share/locale/be@latin/LC_MESSAGES
322
@dir share/locale/be@latin
323
%%PERL:%%@dir lib/purple-2/perl/auto/Purple
324
%%PERL:%%@dir lib/purple-2/perl/auto
325
%%PERL:%%@dir lib/purple-2/perl
326
@dir lib/purple-2
327
@dir include/libpurple/media
328
@dir include/libpurple
(-)net-im/licq-osd/Makefile (-1 / +1 lines)
Lines 16-22 RUN_DEPENDS= ${LOCALBASE}/lib/licq/licq_ Link Here
16
# plugin (gtk+) and wish run osd with it. i've not tested with
16
# plugin (gtk+) and wish run osd with it. i've not tested with
17
# plugins other than qt-gui
17
# plugins other than qt-gui
18
18
19
USES=		cmake
19
USES=		cmake gettext-tools
20
20
21
LOCALES=	be de cs es fr pt pt_BR ro ru sv sk
21
LOCALES=	be de cs es fr pt pt_BR ro ru sv sk
22
PLIST_FILES=	lib/licq/licq_osd.so \
22
PLIST_FILES=	lib/licq/licq_osd.so \
(-)net-im/pidgin/Makefile (-1 / +1 lines)
Lines 21-27 PIDGIN_SLAVE= yes Link Here
21
WITH_GTKUI=	yes
21
WITH_GTKUI=	yes
22
22
23
USE_LDCONFIG=	yes
23
USE_LDCONFIG=	yes
24
USE_GNOME=	gnomeprefix intlhack gtk20
24
USE_GNOME=	gnomeprefix gtk20
25
USE_XORG=	xscrnsaver sm
25
USE_XORG=	xscrnsaver sm
26
WANT_GNOME=	yes
26
WANT_GNOME=	yes
27
CONFIGURE_ARGS=	--disable-consoleui \
27
CONFIGURE_ARGS=	--disable-consoleui \
(-)net-im/telepathy-logger/Makefile (-1 / +2 lines)
Lines 15-21 LICENSE= LGPL21 Link Here
15
LIB_DEPENDS=	libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \
15
LIB_DEPENDS=	libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \
16
		libtelepathy-glib.so:${PORTSDIR}/net-im/telepathy-glib
16
		libtelepathy-glib.so:${PORTSDIR}/net-im/telepathy-glib
17
17
18
USES=		gmake libtool pathfix pkgconfig python:build tar:bzip2
18
USES=		gettext-tools gmake libtool pathfix pkgconfig python:build \
19
		tar:bzip2
19
GNU_CONFIGURE=	yes
20
GNU_CONFIGURE=	yes
20
USE_LDCONFIG=	yes
21
USE_LDCONFIG=	yes
21
USE_GNOME=	glib20 gnomedocutils intltool libxml2 \
22
USE_GNOME=	glib20 gnomedocutils intltool libxml2 \
(-)net-mgmt/monitoring-plugins/Makefile (-1 lines)
Lines 107-113 LDAP_CONFIGURE_WITH= ldap Link Here
107
107
108
NLS_USES=	gettext
108
NLS_USES=	gettext
109
NLS_CONFIGURE_ENABLE=	nls
109
NLS_CONFIGURE_ENABLE=	nls
110
NLS_USES_OFF=	gettext:build
111
110
112
DBI_LIB_DEPENDS=	libdbi.so:${PORTSDIR}/databases/libdbi
111
DBI_LIB_DEPENDS=	libdbi.so:${PORTSDIR}/databases/libdbi
113
DBI_CONFIGURE_WITH=	dbi
112
DBI_CONFIGURE_WITH=	dbi
(-)net-mgmt/nagios-plugins/Makefile (-1 lines)
Lines 112-118 LDAP_USE= openldap=yes Link Here
112
LDAP_CONFIGURE_WITH=	ldap
112
LDAP_CONFIGURE_WITH=	ldap
113
113
114
NLS_USES=	gettext
114
NLS_USES=	gettext
115
NLS_USES_OFF=	gettext:build
116
NLS_CONFIGURE_ENABLE=	nls
115
NLS_CONFIGURE_ENABLE=	nls
117
116
118
DBI_LIB_DEPENDS=	libdbi.so:${PORTSDIR}/databases/libdbi
117
DBI_LIB_DEPENDS=	libdbi.so:${PORTSDIR}/databases/libdbi
(-)net-p2p/linuxdcpp/Makefile (-1 / +1 lines)
Lines 14-21 LICENSE_FILE= ${WRKSRC}/License.txt Link Here
14
14
15
BUILD_DEPENDS=	${LOCALBASE}/include/boost/version.hpp:${PORTSDIR}/devel/boost-libs
15
BUILD_DEPENDS=	${LOCALBASE}/include/boost/version.hpp:${PORTSDIR}/devel/boost-libs
16
16
17
USES=		gettext iconv pkgconfig scons tar:bzip2
17
USE_GNOME=	libglade2
18
USE_GNOME=	libglade2
18
USES=		iconv pkgconfig scons tar:bzip2
19
USE_OPENSSL=	yes
19
USE_OPENSSL=	yes
20
PORTDOCS=	*
20
PORTDOCS=	*
21
DESTDIRNAME=	FAKE_ROOT
21
DESTDIRNAME=	FAKE_ROOT
(-)science/chemical-mime-data/Makefile (-4 / +5 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	chemical-mime-data
4
PORTNAME=	chemical-mime-data
5
PORTVERSION=	0.1.94
5
PORTVERSION=	0.1.94
6
PORTREVISION=	6
6
PORTREVISION=	7
7
CATEGORIES=	science
7
CATEGORIES=	science
8
MASTER_SITES=	SF/chemical-mime/${PORTNAME}/${PORTVERSION}
8
MASTER_SITES=	SF/chemical-mime/${PORTNAME}/${PORTVERSION}
9
9
Lines 12-22 COMMENT= Collection of chemical MIME typ Link Here
12
12
13
BUILD_DEPENDS=	${LOCALBASE}/libdata/pkgconfig/librsvg-2.0.pc:${PORTSDIR}/graphics/librsvg2
13
BUILD_DEPENDS=	${LOCALBASE}/libdata/pkgconfig/librsvg-2.0.pc:${PORTSDIR}/graphics/librsvg2
14
14
15
USES=		gmake pkgconfig tar:bzip2 shared-mime-info
15
USES=		gettext-tools gmake pkgconfig tar:bzip2 shared-mime-info
16
USE_GNOME=	gnomemimedata intltool libxslt:build
16
USE_GNOME=	gnomemimedata intlhack libxslt:build
17
GNU_CONFIGURE=	yes
17
GNU_CONFIGURE=	yes
18
CONFIGURE_ARGS=	--disable-update-database
18
CPPFLAGS+=	-I${LOCALBASE}/include
19
CPPFLAGS+=	-I${LOCALBASE}/include
19
LDFLAGS+=	-L${LOCALBASE}/lib -lintl
20
LDFLAGS+=	-L${LOCALBASE}/lib
20
INSTALLS_ICONS=	yes
21
INSTALLS_ICONS=	yes
21
22
22
post-patch:
23
post-patch:
(-)science/chemical-mime-data/pkg-plist (-44 lines)
Lines 19-68 share/locale/fr/LC_MESSAGES/chemical-mim Link Here
19
share/pixmaps/chemistry.png
19
share/pixmaps/chemistry.png
20
share/pixmaps/gnome-mime-chemical.png
20
share/pixmaps/gnome-mime-chemical.png
21
share/mime/packages/chemical-mime-data.xml
21
share/mime/packages/chemical-mime-data.xml
22
share/mime/chemical/x-alchemy.xml
23
share/mime/chemical/x-cactvs-ascii.xml
24
share/mime/chemical/x-cactvs-binary.xml
25
share/mime/chemical/x-cactvs-table.xml
26
share/mime/chemical/x-cache.xml
27
share/mime/chemical/x-cdxml.xml
28
share/mime/chemical/x-cdx.xml
29
share/mime/chemical/x-chem3d.xml
30
share/mime/chemical/x-cif.xml
31
share/mime/chemical/x-cml.xml
32
share/mime/chemical/x-daylight-smiles.xml
33
share/mime/chemical/x-dmol.xml
34
share/mime/chemical/x-gamess-input.xml
35
share/mime/chemical/x-gamess-output.xml
36
share/mime/chemical/x-gaussian-input.xml
37
share/mime/chemical/x-gaussian-log.xml
38
share/mime/chemical/x-genbank.xml
39
share/mime/chemical/x-gulp.xml
40
share/mime/chemical/x-hin.xml
41
share/mime/chemical/x-inchi.xml
42
share/mime/chemical/x-inchi-xml.xml
43
share/mime/chemical/x-jcamp-dx.xml
44
share/mime/chemical/x-macromodel-input.xml
45
share/mime/chemical/x-mdl-molfile.xml
46
share/mime/chemical/x-mdl-rdfile.xml
47
share/mime/chemical/x-mdl-rxnfile.xml
48
share/mime/chemical/x-mdl-sdfile.xml
49
share/mime/chemical/x-mdl-tgf.xml
50
share/mime/chemical/x-mmcif.xml
51
share/mime/chemical/x-mol2.xml
52
share/mime/chemical/x-mopac-graph.xml
53
share/mime/chemical/x-mopac-input.xml
54
share/mime/chemical/x-mopac-out.xml
55
share/mime/chemical/x-msi-car.xml
56
share/mime/chemical/x-msi-hessian.xml
57
share/mime/chemical/x-msi-mdf.xml
58
share/mime/chemical/x-msi-msi.xml
59
share/mime/chemical/x-ncbi-asn1.xml
60
share/mime/chemical/x-ncbi-asn1-binary.xml
61
share/mime/chemical/x-ncbi-asn1-xml.xml
62
share/mime/chemical/x-pdb.xml
63
share/mime/chemical/x-shelx.xml
64
share/mime/chemical/x-vmd.xml
65
share/mime/chemical/x-xyz.xml
66
share/mime-info/chemical-mime-data.keys
22
share/mime-info/chemical-mime-data.keys
67
share/mime-info/chemical-mime-data.mime
23
share/mime-info/chemical-mime-data.mime
68
share/mimelnk/chemical/x-alchemy.desktop
24
share/mimelnk/chemical/x-alchemy.desktop
(-)security/clamtk/Makefile (-2 / +2 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	clamtk
4
PORTNAME=	clamtk
5
PORTVERSION=	4.45
5
PORTVERSION=	4.45
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	security
7
CATEGORIES=	security
8
MASTER_SITES=	SF/${PORTNAME}/ClamTk/${PORTVERSION}
8
MASTER_SITES=	SF/${PORTNAME}/ClamTk/${PORTVERSION}
9
9
Lines 24-30 RUN_DEPENDS= p5-Config-Tiny>=2.12:${PORT Link Here
24
		p5-Gtk2>=1.144:${PORTSDIR}/x11-toolkits/p5-Gtk2
24
		p5-Gtk2>=1.144:${PORTSDIR}/x11-toolkits/p5-Gtk2
25
25
26
NO_BUILD=	yes
26
NO_BUILD=	yes
27
USES=		gettext:run perl5 shebangfix
27
USES=		gettext-runtime:run perl5 shebangfix
28
USE_PERL5=	run
28
USE_PERL5=	run
29
SHEBANG_FILES=	clamtk
29
SHEBANG_FILES=	clamtk
30
30
(-)security/gringotts/Makefile (-2 / +2 lines)
Lines 13-24 COMMENT= GTK application to securely sto Link Here
13
LIB_DEPENDS=	libpopt.so:${PORTSDIR}/devel/popt \
13
LIB_DEPENDS=	libpopt.so:${PORTSDIR}/devel/popt \
14
		libgringotts.so:${PORTSDIR}/security/libgringotts
14
		libgringotts.so:${PORTSDIR}/security/libgringotts
15
15
16
USES=		pkgconfig
16
USES=		gettext pkgconfig
17
USE_GNOME=	gtk20
17
USE_GNOME=	gtk20
18
GNU_CONFIGURE=	yes
18
GNU_CONFIGURE=	yes
19
19
20
CPPFLAGS+=	-I${LOCALBASE}/include
20
CPPFLAGS+=	-I${LOCALBASE}/include
21
LDFLAGS+=	-L${LOCALBASE}/lib
21
LIBS+=		-L${LOCALBASE}/lib
22
22
23
OPTIONS_DEFINE=	DOCS
23
OPTIONS_DEFINE=	DOCS
24
24
(-)security/gtkpasman/Makefile (-2 / +4 lines)
Lines 11-20 COMMENT= GTK+ passwords manager for syst Link Here
11
11
12
RUN_DEPENDS+=	gpgv2:${PORTSDIR}/security/gnupg
12
RUN_DEPENDS+=	gpgv2:${PORTSDIR}/security/gnupg
13
13
14
USES=		desktop-file-utils gmake pkgconfig tar:xz
14
USES=		desktop-file-utils gettext gmake pkgconfig tar:xz
15
USE_GNOME=	gtk20
15
USE_GNOME=	gtk20
16
GNU_CONFIGURE=	yes
16
GNU_CONFIGURE=	yes
17
CONFIGURE_ARGS+=	--with-gtk2
17
CONFIGURE_ARGS=	--with-gtk2
18
CPPFLAGS+=	-I${LOCALBASE}/include
19
LIBS+=		-L${LOCALBASE}/lib
18
20
19
SUB_FILES=	pkg-message
21
SUB_FILES=	pkg-message
20
22
(-)security/openvpn-admin/Makefile (-5 / +3 lines)
Lines 14-26 RUN_DEPENDS= openvpn:${PORTSDIR}/securit Link Here
14
14
15
WRKSRC=		${WRKDIR}/${DISTNAME:S/b//}
15
WRKSRC=		${WRKDIR}/${DISTNAME:S/b//}
16
16
17
USES=		gmake pkgconfig
17
USES=		gettext gmake pkgconfig
18
USE_GNOME=	gtksharp20
18
USE_GNOME=	gtksharp20
19
GNU_CONFIGURE=	yes
19
GNU_CONFIGURE=	yes
20
CPPFLAGS+=	-I${LOCALBASE}/include
20
CPPFLAGS+=	-I${LOCALBASE}/include
21
LDFLAGS+=	-L${LOCALBASE}/lib
21
LIBS+=		-L${LOCALBASE}/lib
22
23
.include <bsd.port.pre.mk>
24
22
25
post-patch:
23
post-patch:
26
	@${REINPLACE_CMD} -e 's,/usr/bin/iconv,${LOCALBASE}/bin/iconv,g' \
24
	@${REINPLACE_CMD} -e 's,/usr/bin/iconv,${LOCALBASE}/bin/iconv,g' \
Lines 37-40 do-install: Link Here
37
		${STAGEDIR}${PREFIX}/lib/${PORTNAME}
35
		${STAGEDIR}${PREFIX}/lib/${PORTNAME}
38
	@${MKDIR} ${STAGEDIR}${PREFIX}/etc/openvpn
36
	@${MKDIR} ${STAGEDIR}${PREFIX}/etc/openvpn
39
37
40
.include <bsd.port.post.mk>
38
.include <bsd.port.mk>
(-)sysutils/froxlor/Makefile (-2 / +2 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	froxlor
4
PORTNAME=	froxlor
5
PORTVERSION=	0.9.32
5
PORTVERSION=	0.9.32
6
PORTREVISION=	2
6
PORTREVISION=	3
7
CATEGORIES=	sysutils www
7
CATEGORIES=	sysutils www
8
MASTER_SITES=	http://files.froxlor.org/releases/
8
MASTER_SITES=	http://files.froxlor.org/releases/
9
9
Lines 105-111 MYSQLS_USE= MYSQL=server Link Here
105
105
106
PCNTL_USE=	PHP=pcntl
106
PCNTL_USE=	PHP=pcntl
107
107
108
NLS_USES=	gettext:run
108
NLS_USES=	gettext-runtime:run
109
NLS_USE=	PHP=gettext
109
NLS_USE=	PHP=gettext
110
110
111
.include <bsd.port.options.mk>
111
.include <bsd.port.options.mk>
(-)sysutils/k3b-kde4/Makefile (-1 / +1 lines)
Lines 15-21 LIB_DEPENDS= libcdda_paranoia.so:${PORTS Link Here
15
RUN_DEPENDS=	cdrecord:${PORTSDIR}/sysutils/cdrtools
15
RUN_DEPENDS=	cdrecord:${PORTSDIR}/sysutils/cdrtools
16
BUILD_DEPENDS=	cdrecord:${PORTSDIR}/sysutils/cdrtools
16
BUILD_DEPENDS=	cdrecord:${PORTSDIR}/sysutils/cdrtools
17
17
18
USES=		cmake shared-mime-info pkgconfig tar:bzip2
18
USES=		cmake gettext pkgconfig shared-mime-info tar:bzip2
19
CMAKE_ARGS=	-DK3B_BUILD_K3BSETUP:BOOL=OFF \
19
CMAKE_ARGS=	-DK3B_BUILD_K3BSETUP:BOOL=OFF \
20
		-DK3B_ENABLE_MUSICBRAINZ:BOOL=OFF
20
		-DK3B_ENABLE_MUSICBRAINZ:BOOL=OFF
21
USE_KDE4=	automoc4 kdeprefix kdelibs libkcddb
21
USE_KDE4=	automoc4 kdeprefix kdelibs libkcddb
(-)sysutils/kdirstat/Makefile (-1 / +1 lines)
Lines 15-21 LICENSE= GPLv2 Link Here
15
15
16
WRKSRC=		${WRKDIR}/jeromerobert-k4dirstat-1ad2e96d73fa
16
WRKSRC=		${WRKDIR}/jeromerobert-k4dirstat-1ad2e96d73fa
17
17
18
USES=		cmake desktop-file-utils tar:bzip2
18
USES=		cmake desktop-file-utils gettext-tools tar:bzip2
19
USE_KDE4=	automoc4 kdelibs kdeprefix libkonq
19
USE_KDE4=	automoc4 kdelibs kdeprefix libkonq
20
USE_QT4=	moc_build qmake_build rcc_build uic_build
20
USE_QT4=	moc_build qmake_build rcc_build uic_build
21
INSTALLS_ICONS=	yes
21
INSTALLS_ICONS=	yes
(-)sysutils/krename-kde4/Makefile (-1 / +1 lines)
Lines 13-19 LIB_DEPENDS= libtag.so:${PORTSDIR}/audio Link Here
13
		libexiv2.so:${PORTSDIR}/graphics/exiv2 \
13
		libexiv2.so:${PORTSDIR}/graphics/exiv2 \
14
		libpodofo.so:${PORTSDIR}/graphics/podofo
14
		libpodofo.so:${PORTSDIR}/graphics/podofo
15
15
16
USES=		cmake:outsource tar:bzip2
16
USES=		cmake:outsource gettext tar:bzip2
17
USE_KDE4=	kdeprefix kdelibs automoc4
17
USE_KDE4=	kdeprefix kdelibs automoc4
18
USE_QT4=	qmake_build moc_build rcc_build uic_build
18
USE_QT4=	qmake_build moc_build rcc_build uic_build
19
19
(-)sysutils/kshutdown-kde4/Makefile (-1 / +1 lines)
Lines 9-15 DISTNAME= ${PORTNAME}-source-${DISTVERSI Link Here
9
MAINTAINER=	kde@FreeBSD.org
9
MAINTAINER=	kde@FreeBSD.org
10
COMMENT=	Advanced shutdown utility for KDE
10
COMMENT=	Advanced shutdown utility for KDE
11
11
12
USES=		alias cmake:outsource compiler:c++0x zip
12
USES=		alias cmake:outsource compiler:c++0x gettext zip
13
USE_QT4=	moc_build qmake_build rcc_build uic_build
13
USE_QT4=	moc_build qmake_build rcc_build uic_build
14
USE_KDE4=	automoc4 kdeprefix workspace
14
USE_KDE4=	automoc4 kdeprefix workspace
15
15
(-)sysutils/libgksu/Makefile (-1 / +1 lines)
Lines 17-23 LIB_DEPENDS= libgtop-2.0.so:${PORTSDIR}/ Link Here
17
RUN_DEPENDS=	xauth:${PORTSDIR}/x11/xauth \
17
RUN_DEPENDS=	xauth:${PORTSDIR}/x11/xauth \
18
		sudo:${PORTSDIR}/security/sudo
18
		sudo:${PORTSDIR}/security/sudo
19
19
20
USES=		gmake libtool pathfix pkgconfig
20
USES=		gettext gmake libtool pathfix pkgconfig
21
USE_GNOME=	glib20 gconf2
21
USE_GNOME=	glib20 gconf2
22
USE_LDCONFIG=	yes
22
USE_LDCONFIG=	yes
23
USE_XORG=	x11
23
USE_XORG=	x11
(-)sysutils/plasma-applet-apcups/Makefile (-1 / +1 lines)
Lines 13-19 COMMENT= Plasma applet to monitor the st Link Here
13
13
14
PROJECTHOST=	plasma-apcups
14
PROJECTHOST=	plasma-apcups
15
15
16
USES=		cmake
16
USES=		cmake gettext
17
USE_KDE4=	automoc4 kdeprefix kdelibs
17
USE_KDE4=	automoc4 kdeprefix kdelibs
18
USE_QT4=	qmake_build moc_build rcc_build uic_build
18
USE_QT4=	qmake_build moc_build rcc_build uic_build
19
19
(-)sysutils/policykit/Makefile (-1 / +1 lines)
Lines 18-24 LIB_DEPENDS= libdbus-glib-1.so:${PORTSDI Link Here
18
USERS=		polkit
18
USERS=		polkit
19
GROUPS=		polkit
19
GROUPS=		polkit
20
20
21
USES=		gmake libtool:keepla pathfix pkgconfig
21
USES=		gettext gmake libtool:keepla pathfix pkgconfig
22
USE_GNOME=	glib20 intlhack
22
USE_GNOME=	glib20 intlhack
23
GNU_CONFIGURE=	yes
23
GNU_CONFIGURE=	yes
24
USE_LDCONFIG=	yes
24
USE_LDCONFIG=	yes
(-)sysutils/system-tools-backends/Makefile (-6 / +2 lines)
Lines 16-32 LIB_DEPENDS= libdbus-glib-1.so:${PORTSDI Link Here
16
		libpolkit-gobject-1.so:${PORTSDIR}/sysutils/polkit
16
		libpolkit-gobject-1.so:${PORTSDIR}/sysutils/polkit
17
RUN_DEPENDS=	p5-Net-DBus>=0:${PORTSDIR}/devel/p5-Net-DBus
17
RUN_DEPENDS=	p5-Net-DBus>=0:${PORTSDIR}/devel/p5-Net-DBus
18
18
19
USES=		gmake pathfix perl5 pkgconfig tar:bzip2
19
USES=		gettext-tools gmake pathfix perl5 pkgconfig tar:bzip2
20
USE_GNOME=	intlhack glib20
20
USE_GNOME=	intlhack glib20
21
GNU_CONFIGURE=	yes
21
GNU_CONFIGURE=	yes
22
USE_GNOME_SUBR=	yes
22
USE_GNOME_SUBR=	yes
23
CONFIGURE_ARGS=	--with-stb-group=wheel \
23
CONFIGURE_ARGS=	--with-stb-group=wheel \
24
		--localstatedir=/var
24
		--localstatedir=/var
25
CPPFLAGS+=	-I${LOCALBASE}/include
25
CPPFLAGS+=	-I${LOCALBASE}/include
26
LDFLAGS+=	-L${LOCALBASE}/lib
26
LIBS+=		-L${LOCALBASE}/lib
27
28
post-configure:
29
	@${REINPLACE_CMD} -e 's|@GETTEXT_PACKAGE@|system-tools-backends|g' \
30
		${WRKSRC}/po/Makefile
31
27
32
.include <bsd.port.mk>
28
.include <bsd.port.mk>
(-)textproc/gnome-doc-utils/Makefile (-2 / +2 lines)
Lines 4-10 Link Here
4
4
5
PORTNAME=	gnome-doc-utils
5
PORTNAME=	gnome-doc-utils
6
PORTVERSION=	0.20.10
6
PORTVERSION=	0.20.10
7
PORTREVISION=	2
7
PORTREVISION=	3
8
CATEGORIES=	textproc gnome
8
CATEGORIES=	textproc gnome
9
MASTER_SITES=	GNOME
9
MASTER_SITES=	GNOME
10
10
Lines 17-23 RUN_DEPENDS= rarian-sk-config:${PORTSDIR Link Here
17
		${PYTHON_SITELIBDIR}/libxml2mod.so:${PORTSDIR}/textproc/py-libxml2 \
17
		${PYTHON_SITELIBDIR}/libxml2mod.so:${PORTSDIR}/textproc/py-libxml2 \
18
		${LOCALBASE}/share/xml/docbook/4.3:${PORTSDIR}/textproc/docbook-xml
18
		${LOCALBASE}/share/xml/docbook/4.3:${PORTSDIR}/textproc/docbook-xml
19
19
20
USES=		gettext gmake pathfix pkgconfig tar:xz
20
USES=		gettext-tools:build,run gmake pathfix pkgconfig tar:xz
21
USE_GNOME=	gnomehier libxslt intlhack
21
USE_GNOME=	gnomehier libxslt intlhack
22
USE_PYTHON=	2
22
USE_PYTHON=	2
23
INSTALLS_OMF=	yes
23
INSTALLS_OMF=	yes
(-)textproc/gtk-doc/Makefile (-1 / +1 lines)
Lines 26-32 CATALOG_DIR= ${PREFIX}/share/sgml/${POR Link Here
26
XMLCATMGR=		${LOCALBASE}/bin/xmlcatmgr
26
XMLCATMGR=		${LOCALBASE}/bin/xmlcatmgr
27
CATALOG_PORTS_SGML=	${PREFIX}/share/sgml/catalog.ports
27
CATALOG_PORTS_SGML=	${PREFIX}/share/sgml/catalog.ports
28
28
29
USES=		gmake gettext:build pathfix perl5 pkgconfig python tar:xz
29
USES=		gmake gettext-tools pathfix perl5 pkgconfig python tar:xz
30
USE_GNOME=	gnomeprefix libxslt
30
USE_GNOME=	gnomeprefix libxslt
31
GNU_CONFIGURE=	yes
31
GNU_CONFIGURE=	yes
32
CONFIGURE_ARGS=	--with-xml-catalog=${LOCALBASE}/share/xml/catalog.ports
32
CONFIGURE_ARGS=	--with-xml-catalog=${LOCALBASE}/share/xml/catalog.ports
(-)textproc/libtranslate/Makefile (-5 / +4 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=		libtranslate
4
PORTNAME=		libtranslate
5
PORTVERSION=		0.99
5
PORTVERSION=		0.99
6
PORTREVISION=		7
6
PORTREVISION=		8
7
CATEGORIES=		textproc
7
CATEGORIES=		textproc
8
MASTER_SITES=		${MASTER_SITE_SAVANNAH}
8
MASTER_SITES=		${MASTER_SITE_SAVANNAH}
9
MASTER_SITE_SUBDIR=	${PORTNAME}
9
MASTER_SITE_SUBDIR=	${PORTNAME}
Lines 17-28 PATCH_DIST_STRIP= -p1 Link Here
17
MAINTAINER=		ports@FreeBSD.org
17
MAINTAINER=		ports@FreeBSD.org
18
COMMENT=		Natural language translation library
18
COMMENT=		Natural language translation library
19
19
20
USES=			gmake pathfix pkgconfig
20
USES=			gettext gmake libtool pathfix pkgconfig
21
USE_GNOME=		glib20 intlhack
21
USE_GNOME=		glib20 intlhack
22
GNU_CONFIGURE=		yes
22
GNU_CONFIGURE=		yes
23
USE_LDCONFIG=		yes
23
USE_LDCONFIG=		yes
24
CPPFLAGS+=		-I${LOCALBASE}/include
24
CPPFLAGS+=		-I${LOCALBASE}/include
25
LDFLAGS+=		-L${LOCALBASE}/lib
25
LIBS+=			-L${LOCALBASE}/lib
26
CONFIGURE_ARGS=		--with-html-dir=${PREFIX}/share/doc
26
CONFIGURE_ARGS=		--with-html-dir=${PREFIX}/share/doc
27
27
28
OPTIONS_DEFINE=	GENERIC TALKFILTERS
28
OPTIONS_DEFINE=	GENERIC TALKFILTERS
Lines 31-38 GENERIC_DESC= generic module Link Here
31
TALKFILTERS_DESC=	talkfilters module
31
TALKFILTERS_DESC=	talkfilters module
32
32
33
post-patch::
33
post-patch::
34
	@${REINPLACE_CMD} -e 's|echo aout|echo elf|'	\
34
	@${REINPLACE_CMD} -e 's|libsoup-2.2|libsoup-2.4|g' ${WRKSRC}/configure
35
		-e 's|libsoup-2.2|libsoup-2.4|g' ${WRKSRC}/configure
36
35
37
.include <bsd.port.options.mk>
36
.include <bsd.port.options.mk>
38
37
(-)textproc/libtranslate/files/patch-configure (-101 lines)
Lines 1-101 Link Here
1
--- configure.orig	2014-06-20 22:12:16.401089000 +0000
2
+++ configure
3
@@ -3608,7 +3608,7 @@ darwin* | rhapsody*)
4
   lt_cv_deplibs_check_method=pass_all
5
   ;;
6
 
7
-freebsd* | kfreebsd*-gnu)
8
+dragonfly* | freebsd* | kfreebsd*-gnu)
9
   if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
10
     case $host_cpu in
11
     i*86 )
12
@@ -5545,7 +5545,7 @@ else
13
     lt_cv_sys_max_cmd_len=8192;
14
     ;;
15
 
16
-  netbsd* | freebsd* | openbsd* | darwin* )
17
+  netbsd* | dragonfly* | freebsd* | openbsd* | darwin* )
18
     # This has been around since 386BSD, at least.  Likely further.
19
     if test -x /sbin/sysctl; then
20
       lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
21
@@ -7324,7 +7324,7 @@ if test -z "$aix_libpath"; then aix_libp
22
       ;;
23
 
24
     # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
25
-    freebsd* | kfreebsd*-gnu)
26
+    dragonfly* | freebsd* | kfreebsd*-gnu)
27
       archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
28
       hardcode_libdir_flag_spec='-R$libdir'
29
       hardcode_direct=yes
30
@@ -7903,7 +7903,7 @@ kfreebsd*-gnu)
31
   dynamic_linker='GNU ld.so'
32
   ;;
33
 
34
-freebsd*)
35
+dragonfly* | freebsd*)
36
   objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout`
37
   version_type=freebsd-$objformat
38
   case $version_type in
39
@@ -10260,7 +10260,7 @@ if test -z "$aix_libpath"; then aix_libp
40
   freebsd-elf*)
41
     archive_cmds_need_lc_CXX=no
42
     ;;
43
-  freebsd* | kfreebsd*-gnu)
44
+  dragonfly* | freebsd* | kfreebsd*-gnu)
45
     # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF
46
     # conventions
47
     ld_shlibs_CXX=yes
48
@@ -11004,7 +11004,7 @@ echo $ECHO_N "checking for $compiler opt
49
 	    ;;
50
 	esac
51
 	;;
52
-      freebsd* | kfreebsd*-gnu)
53
+      dragonfly* | freebsd* | kfreebsd*-gnu)
54
 	# FreeBSD uses GNU C++
55
 	;;
56
       hpux9* | hpux10* | hpux11*)
57
@@ -11615,7 +11615,7 @@ kfreebsd*-gnu)
58
   dynamic_linker='GNU ld.so'
59
   ;;
60
 
61
-freebsd*)
62
+dragonfly* | freebsd*)
63
   objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout`
64
   version_type=freebsd-$objformat
65
   case $version_type in
66
@@ -14196,7 +14196,7 @@ if test -z "$aix_libpath"; then aix_libp
67
       ;;
68
 
69
     # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
70
-    freebsd* | kfreebsd*-gnu)
71
+    dragonfly* | freebsd* | kfreebsd*-gnu)
72
       archive_cmds_F77='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
73
       hardcode_libdir_flag_spec_F77='-R$libdir'
74
       hardcode_direct_F77=yes
75
@@ -14775,7 +14775,7 @@ kfreebsd*-gnu)
76
   dynamic_linker='GNU ld.so'
77
   ;;
78
 
79
-freebsd*)
80
+dragonfly* | freebsd*)
81
   objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout`
82
   version_type=freebsd-$objformat
83
   case $version_type in
84
@@ -16554,7 +16554,7 @@ if test -z "$aix_libpath"; then aix_libp
85
       ;;
86
 
87
     # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
88
-    freebsd* | kfreebsd*-gnu)
89
+    dragonfly* | freebsd* | kfreebsd*-gnu)
90
       archive_cmds_GCJ='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
91
       hardcode_libdir_flag_spec_GCJ='-R$libdir'
92
       hardcode_direct_GCJ=yes
93
@@ -17133,7 +17133,7 @@ kfreebsd*-gnu)
94
   dynamic_linker='GNU ld.so'
95
   ;;
96
 
97
-freebsd*)
98
+dragonfly* | freebsd*)
99
   objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout`
100
   version_type=freebsd-$objformat
101
   case $version_type in
(-)textproc/libtranslate/pkg-plist (+1 lines)
Lines 8-13 include/libtranslate/translate.h Link Here
8
lib/libtranslate.a
8
lib/libtranslate.a
9
lib/libtranslate.so
9
lib/libtranslate.so
10
lib/libtranslate.so.0
10
lib/libtranslate.so.0
11
lib/libtranslate.so.0.0.0
11
%%GENERIC%%lib/libtranslate/modules/generic.so
12
%%GENERIC%%lib/libtranslate/modules/generic.so
12
%%TALKFILTERS%%lib/libtranslate/modules/talkfilters.so
13
%%TALKFILTERS%%lib/libtranslate/modules/talkfilters.so
13
libdata/pkgconfig/libtranslate.pc
14
libdata/pkgconfig/libtranslate.pc
(-)textproc/openjade/Makefile (+1 lines)
Lines 19-24 USE_LDCONFIG= yes Link Here
19
GNU_CONFIGURE=	yes
19
GNU_CONFIGURE=	yes
20
CONFIGURE_ARGS=	--enable-default-catalog=${PREFIX}/share/sgml/catalog \
20
CONFIGURE_ARGS=	--enable-default-catalog=${PREFIX}/share/sgml/catalog \
21
		--datadir=${DATADIR}
21
		--datadir=${DATADIR}
22
LDFLAGS+=	-L${LOCALBASE}/lib
22
INSTALL_TARGET=	install install-man
23
INSTALL_TARGET=	install install-man
23
MAKE_ENV=	STRIP="${STRIP}"
24
MAKE_ENV=	STRIP="${STRIP}"
24
PLIST_SUB=	XMLCATMGR=${XMLCATMGR} \
25
PLIST_SUB=	XMLCATMGR=${XMLCATMGR} \
(-)textproc/openjade/files/patch-Makefile.comm.in (-11 lines)
Lines 1-11 Link Here
1
--- Makefile.comm.in.orig	Mon Jan  8 00:28:27 2007
2
+++ Makefile.comm.in	Mon Jan  8 00:29:02 2007
3
@@ -32,7 +32,7 @@
4
 INCS=-I$(srcdir) -I$(srcdir)/../include -I$(spincludedir) -I$(spincludedir)/.. $(INCLUDE)
5
 CXXFLAGS=@CXXFLAGS@ $(INCS) $(DEBUG) $(DEFS)
6
 CFLAGS=@CFLAGS@ $(DEBUG) $(DEFS)
7
-LDFLAGS=@LDFLAGS@
8
+LDFLAGS=@LDFLAGS@ -lintl
9
 MSGGENFLAGS= -l jstyleModule
10
 CXXDEPGENFLAGS=-MM
11
 
(-)textproc/uim-el/Makefile (-1 / +1 lines)
Lines 21-29 RUN_DEPENDS= uim-el-agent:${PORTSDIR}/te Link Here
21
21
22
OPTIONS_DEFINE=	DOCS
22
OPTIONS_DEFINE=	DOCS
23
23
24
USES=		gettext-tools gmake iconv perl5 tar:bzip2
24
USE_PERL5=	build
25
USE_PERL5=	build
25
USE_GNOME=	intltool
26
USE_GNOME=	intltool
26
USES=		iconv gmake perl5 tar:bzip2
27
USE_EMACS=	yes
27
USE_EMACS=	yes
28
GNU_CONFIGURE=	yes
28
GNU_CONFIGURE=	yes
29
29
(-)www/cssed/Makefile (-2 / +2 lines)
Lines 10-23 MASTER_SITES= SF Link Here
10
MAINTAINER=	ports@FreeBSD.org
10
MAINTAINER=	ports@FreeBSD.org
11
COMMENT=	Application to help CSS style sheets creation and maintenance
11
COMMENT=	Application to help CSS style sheets creation and maintenance
12
12
13
USES=		dos2unix pathfix pkgconfig
13
USES=		dos2unix gettext pathfix pkgconfig
14
DOS2UNIX_FILES=	scintilla/gtk/ScintillaGTK.cxx
14
DOS2UNIX_FILES=	scintilla/gtk/ScintillaGTK.cxx
15
USE_GNOME=	gtk20 libxml2
15
USE_GNOME=	gtk20 libxml2
16
GNU_CONFIGURE=	yes
16
GNU_CONFIGURE=	yes
17
CONFIGURE_ARGS=	--with-plugin-headers
17
CONFIGURE_ARGS=	--with-plugin-headers
18
18
19
CPPFLAGS+=	-I${LOCALBASE}/include
19
CPPFLAGS+=	-I${LOCALBASE}/include
20
LDFLAGS+=	-L${LOCALBASE}/lib
20
LIBS+=		-L${LOCALBASE}/lib
21
21
22
DESKTOP_ENTRIES="CSSED" "CSS Editor" "${DATADIR}/pixmaps/cssed-icon.png" \
22
DESKTOP_ENTRIES="CSSED" "CSS Editor" "${DATADIR}/pixmaps/cssed-icon.png" \
23
		"${PORTNAME}" "GTK;Development;WebDevelopment;TextEditor;" ""
23
		"${PORTNAME}" "GTK;Development;WebDevelopment;TextEditor;" ""
(-)www/py-formencode/Makefile (-2 / +2 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	formencode
4
PORTNAME=	formencode
5
PORTVERSION=	1.2.6
5
PORTVERSION=	1.2.6
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	www python
7
CATEGORIES=	www python
8
MASTER_SITES=	CHEESESHOP
8
MASTER_SITES=	CHEESESHOP
9
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
9
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
Lines 16-22 LICENSE= PSFL Link Here
16
16
17
OPTIONS_DEFINE=	DOCS
17
OPTIONS_DEFINE=	DOCS
18
18
19
USES=		gettext:run python:2 zip
19
USES=		gettext-runtime:run python:2 zip
20
USE_PYTHON=	distutils autoplist
20
USE_PYTHON=	distutils autoplist
21
21
22
DOCSDIR=	${PREFIX}/share/doc/py-${PORTNAME}
22
DOCSDIR=	${PREFIX}/share/doc/py-${PORTNAME}
(-)www/rekonq/Makefile (-1 / +1 lines)
Lines 9-15 MASTER_SITES= SF/${PORTNAME}/${PORTVERSI Link Here
9
MAINTAINER=	makc@FreeBSD.org
9
MAINTAINER=	makc@FreeBSD.org
10
COMMENT=	Lightweight KDE browser based on WebKit
10
COMMENT=	Lightweight KDE browser based on WebKit
11
11
12
USES=		cmake:outsource tar:xz
12
USES=		cmake:outsource gettext tar:xz
13
USE_KDE4=	kdehier kdelibs kdeprefix automoc4
13
USE_KDE4=	kdehier kdelibs kdeprefix automoc4
14
USE_QT4=	script webkit \
14
USE_QT4=	script webkit \
15
		moc_build qmake_build rcc_build uic_build
15
		moc_build qmake_build rcc_build uic_build
(-)www/sarg/Makefile (-7 / +6 lines)
Lines 14-35 LICENSE_FILE= ${WRKSRC}/LICENSE Link Here
14
14
15
OPTIONS_DEFINE=	GD PHP NLS PCRE LDAP ICONV
15
OPTIONS_DEFINE=	GD PHP NLS PCRE LDAP ICONV
16
OPTIONS_DEFAULT=GD PHP NLS PCRE LDAP ICONV
16
OPTIONS_DEFAULT=GD PHP NLS PCRE LDAP ICONV
17
OPTIONS_SUB=	yes
17
18
18
PHP_DESC=	Install PHP for reporting generating
19
PHP_DESC=	Install PHP for reporting generating
19
20
20
USES=		gmake
21
USES=		gmake
21
USE_AUTOTOOLS=	autoconf aclocal
22
OPTIONS_SUB=	yes
23
GNU_CONFIGURE=	yes
22
GNU_CONFIGURE=	yes
24
LDFLAGS+=	-L${LOCALBASE}/lib
23
CONFIGURE_ARGS=	--sysconfdir="${ETCDIR}" \
25
CONFIGURE_ARGS=	CPPFLAGS=-I${LOCALBASE}/include \
26
		--sysconfdir="${ETCDIR}" \
27
		--enable-fontdir="${ETCDIR}/fonts" \
24
		--enable-fontdir="${ETCDIR}/fonts" \
28
		--enable-imagedir="${ETCDIR}/images"
25
		--enable-imagedir="${ETCDIR}/images"
26
CPPFLAGS+=	-I${LOCALBASE}/include
27
LIBS+=		-L${LOCALBASE}/lib
29
28
30
NLS_USES=		gettext
29
NLS_USES=		gettext
31
NLS_LDFLAGS=		-lintl
32
NLS_CONFIGURE_ENABLE=	nls
30
NLS_CONFIGURE_ENABLE=	nls
31
NLS_LIBS=		-lintl
33
GD_CONFIGURE_WITH=	gd
32
GD_CONFIGURE_WITH=	gd
34
GD_LIB_DEPENDS=		libgd.so:${PORTSDIR}/graphics/gd
33
GD_LIB_DEPENDS=		libgd.so:${PORTSDIR}/graphics/gd
35
PHP_CONFIGURE_ON=	--enable-sargphp="${ETCDIR}"
34
PHP_CONFIGURE_ON=	--enable-sargphp="${ETCDIR}"
Lines 44-49 ICONV_LDFLAGS= ${ICONV_LIB} Link Here
44
43
45
post-patch:
44
post-patch:
46
	@${REINPLACE_CMD} -e '/test .*==/ s/==/=/' \
45
	@${REINPLACE_CMD} -e '/test .*==/ s/==/=/' \
47
		${WRKSRC}/configure.in
46
		${WRKSRC}/configure
48
47
49
.include <bsd.port.mk>
48
.include <bsd.port.mk>
(-)x11/wdm/Makefile (-2 / +2 lines)
Lines 26-32 OPTIONS_DEFINE= PAM Link Here
26
OPTIONS_DEFAULT=	PAM
26
OPTIONS_DEFAULT=	PAM
27
OPTIONS_SUB=	yes
27
OPTIONS_SUB=	yes
28
28
29
USES=		tar:bzip2
29
USES=		gettext tar:bzip2
30
USE_XORG=	x11 xmu
30
USE_XORG=	x11 xmu
31
GNU_CONFIGURE=	yes
31
GNU_CONFIGURE=	yes
32
CONFIGURE_ENV=	DEF_SERVER="${DEF_SERVER}" XRDB_PATH="${XRDB_PATH}"
32
CONFIGURE_ENV=	DEF_SERVER="${DEF_SERVER}" XRDB_PATH="${XRDB_PATH}"
Lines 43-49 CONFIGURE_ARGS= --with-logdir=/var/log \ Link Here
43
		--with-wmlist=wmaker:afterstep:blackbox:ctwm:enlightenment:fvwm:fvwm2:fvwm95:olvwm:qvwm:tvtwm
43
		--with-wmlist=wmaker:afterstep:blackbox:ctwm:enlightenment:fvwm:fvwm2:fvwm95:olvwm:qvwm:tvtwm
44
44
45
CPPFLAGS+=	-I${LOCALBASE}/include -DCSRG_BASED -DHAS_SETUSERCONTEXT
45
CPPFLAGS+=	-I${LOCALBASE}/include -DCSRG_BASED -DHAS_SETUSERCONTEXT
46
LDFLAGS+=	-L${LOCALBASE}/lib -lintl
46
LIBS+=		-L${LOCALBASE}/lib
47
47
48
DEF_SERVER?=	${LOCALBASE}/bin/X
48
DEF_SERVER?=	${LOCALBASE}/bin/X
49
XRDB_PATH?=	${LOCALBASE}/bin/xrdb
49
XRDB_PATH?=	${LOCALBASE}/bin/xrdb
(-)x11/xkeyboard-config/Makefile (-1 / +1 lines)
Lines 34-40 ETERSOFT_EXTRA_PATCHES= ${FILESDIR}/eter Link Here
34
34
35
# !nls case doesn't work correctly, comment it out.
35
# !nls case doesn't work correctly, comment it out.
36
#.if ${PORT_OPTIONS:MNLS}
36
#.if ${PORT_OPTIONS:MNLS}
37
USES+=		gettext:build iconv
37
USES+=		gettext-tools iconv
38
PLIST_SUB+=	NLS=""
38
PLIST_SUB+=	NLS=""
39
#.else
39
#.else
40
#CONFIGURE_ARGS+=--disable-nls
40
#CONFIGURE_ARGS+=--disable-nls
(-)x11-fm/rox-session/Makefile (-1 / +1 lines)
Lines 19-25 RUN_DEPENDS= ${LOCALBASE}/bin/rox:${PORT Link Here
19
WRKSRC=		${WRKDIR}/ROX-Session
19
WRKSRC=		${WRKDIR}/ROX-Session
20
DATADIR=	${PREFIX}/apps/ROX-Session
20
DATADIR=	${PREFIX}/apps/ROX-Session
21
21
22
USES=		pkgconfig python
22
USES=		gettext-tools pkgconfig python
23
USE_GNOME=	gtk20 libxml2
23
USE_GNOME=	gtk20 libxml2
24
USE_XORG=	x11 xext xtst xxf86vm
24
USE_XORG=	x11 xext xtst xxf86vm
25
25
(-)x11-themes/adwaita-icon-theme/Makefile (-2 / +3 lines)
Lines 12-19 MAINTAINER= gnome@FreeBSD.org Link Here
12
COMMENT=	GNOME Symbolic Icons
12
COMMENT=	GNOME Symbolic Icons
13
13
14
INSTALLS_ICONS=	yes
14
INSTALLS_ICONS=	yes
15
USES=		gmake pathfix pkgconfig tar:xz
15
USES=		gettext-tools gmake pathfix pkgconfig tar:xz
16
USE_GNOME=	gnomeprefix intltool
16
USE_GNOME=	gnomeprefix intlhack
17
GNU_CONFIGURE=	yes
17
GNU_CONFIGURE=	yes
18
CONFIGURE_ARGS=	ac_cv_path_GTK_ENCODE_SYMBOLIC_SVG=false
18
19
19
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)x11-themes/gnome-themes-standard/Makefile (-1 / +1 lines)
Lines 13-19 COMMENT= Standard themes for GNOME Link Here
13
13
14
CONFLICTS=	gnome-themes-2.[0-9]*
14
CONFLICTS=	gnome-themes-2.[0-9]*
15
15
16
USES=		gettext:build gmake libtool pathfix pkgconfig tar:xz
16
USES=		gettext-tools gmake libtool pathfix pkgconfig tar:xz
17
USE_GNOME=	gnomeprefix gtk30 intlhack librsvg2
17
USE_GNOME=	gnomeprefix gtk30 intlhack librsvg2
18
INSTALLS_ICONS=	yes
18
INSTALLS_ICONS=	yes
19
GNU_CONFIGURE=	yes
19
GNU_CONFIGURE=	yes
(-)x11-themes/gtk-murrine-engine/Makefile (-1 / +1 lines)
Lines 12-18 PKGNAMESUFFIX= -engine Link Here
12
MAINTAINER=	pneumann@gmail.com
12
MAINTAINER=	pneumann@gmail.com
13
COMMENT=	Murrine GTK+ 2.x cairo based engine
13
COMMENT=	Murrine GTK+ 2.x cairo based engine
14
14
15
USES=		gmake libtool pkgconfig tar:xz
15
USES=		gettext gmake libtool pkgconfig tar:xz
16
USE_XORG=	pixman
16
USE_XORG=	pixman
17
USE_GNOME=	gtk20 intltool intlhack
17
USE_GNOME=	gtk20 intltool intlhack
18
USE_LDCONFIG=	yes
18
USE_LDCONFIG=	yes
(-)x11-themes/icons-tango/Makefile (-1 / +1 lines)
Lines 16-22 BUILD_DEPENDS= ${LOCALBASE}/libexec/icon Link Here
16
16
17
GNU_CONFIGURE=	yes
17
GNU_CONFIGURE=	yes
18
USE_GNOME=	intlhack
18
USE_GNOME=	intlhack
19
USES+=		pathfix gmake pkgconfig
19
USES+=		gettext-tools gmake pathfix pkgconfig
20
INSTALLS_ICONS=	yes
20
INSTALLS_ICONS=	yes
21
21
22
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)x11-themes/kde-gtk-config/Makefile (-1 / +1 lines)
Lines 10-16 MASTER_SITE_SUBDIR= stable/${PORTNAME}/$ Link Here
10
MAINTAINER=	kde@FreeBSD.org
10
MAINTAINER=	kde@FreeBSD.org
11
COMMENT=	GTK2 and GTK3 Configurator for KDE
11
COMMENT=	GTK2 and GTK3 Configurator for KDE
12
12
13
USES=		cmake:outsource pkgconfig tar:xz
13
USES=		cmake:outsource gettext pkgconfig tar:xz
14
USE_GNOME=	gtk20 gtk30
14
USE_GNOME=	gtk20 gtk30
15
USE_KDE4=	automoc4 kdelibs kdeprefix
15
USE_KDE4=	automoc4 kdelibs kdeprefix
16
USE_QT4=	moc_build qmake_build rcc_build uic_build
16
USE_QT4=	moc_build qmake_build rcc_build uic_build
(-)x11-themes/kde4-style-polyester/Makefile (-1 / +1 lines)
Lines 13-18 COMMENT= KDE style and window decoration Link Here
13
13
14
USE_KDE4=	kdelibs kdehier kdeprefix automoc4
14
USE_KDE4=	kdelibs kdehier kdeprefix automoc4
15
USE_QT4=	qmake_build moc_build rcc_build uic_build
15
USE_QT4=	qmake_build moc_build rcc_build uic_build
16
USES=		cmake tar:bzip2
16
USES=		cmake gettext tar:bzip2
17
17
18
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)x11-themes/nimbus/Makefile (-1 / +1 lines)
Lines 17-23 GNU_CONFIGURE= yes Link Here
17
CONFIGURE_ARGS=		--disable-static
17
CONFIGURE_ARGS=		--disable-static
18
INSTALLS_ICONS=		yes
18
INSTALLS_ICONS=		yes
19
INSTALL_TARGET=		install-strip
19
INSTALL_TARGET=		install-strip
20
USES=			gmake libtool pkgconfig tar:bzip2
20
USES=			gettext gmake libtool pkgconfig tar:bzip2
21
USE_LDCONFIG=		yes
21
USE_LDCONFIG=		yes
22
USE_GNOME=		gtk20
22
USE_GNOME=		gtk20
23
23
(-)x11-themes/qtcurve-kde4/Makefile (-1 / +1 lines)
Lines 11-17 DISTNAME= QtCurve-KDE4-${PORTVERSION} Link Here
11
MAINTAINER=	makc@FreeBSD.org
11
MAINTAINER=	makc@FreeBSD.org
12
COMMENT=	QtCurve KDE4 widget style
12
COMMENT=	QtCurve KDE4 widget style
13
13
14
USES=		cmake tar:bzip2
14
USES=		cmake gettext-tools tar:bzip2
15
USE_QT4=	qmake_build uic_build moc_build rcc_build
15
USE_QT4=	qmake_build uic_build moc_build rcc_build
16
USE_KDE4=	kdelibs workspace kdehier kdeprefix automoc4
16
USE_KDE4=	kdelibs workspace kdehier kdeprefix automoc4
17
17
(-)x11-toolkits/wxgtk28/Makefile (+1 lines)
Lines 71-76 RUN_DEPENDS= ${LOCALBASE}/include/wx-2.8 Link Here
71
.if ${WXGTK_FLAVOR:M*-common} != ""
71
.if ${WXGTK_FLAVOR:M*-common} != ""
72
NO_BUILD=	yes
72
NO_BUILD=	yes
73
INSTALL_TARGET=	install-common
73
INSTALL_TARGET=	install-common
74
USES+=		gettext-tools
74
.else
75
.else
75
USE_LDCONFIG=	yes
76
USE_LDCONFIG=	yes
76
.endif # *-common
77
.endif # *-common
(-)x11-wm/libcompizconfig/Makefile (-1 / +1 lines)
Lines 14-20 BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgc Link Here
14
GNU_CONFIGURE=	yes
14
GNU_CONFIGURE=	yes
15
USE_LDCONFIG=	yes
15
USE_LDCONFIG=	yes
16
16
17
USES=		gmake libtool:keepla pathfix pkgconfig tar:bzip2
17
USES=		gettext gmake libtool:keepla pathfix pkgconfig tar:bzip2
18
USE_GNOME=	intltool libxml2
18
USE_GNOME=	intltool libxml2
19
19
20
CPPFLAGS+=	-I${LOCALBASE}/include
20
CPPFLAGS+=	-I${LOCALBASE}/include

Return to bug 194038