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

Collapse All | Expand All

(-)Mk/Uses/autoreconf.mk (-1 / +3 lines)
Lines 64-69 BUILD_DEPENDS+= autoconf-2.69:${PORTSDIR Link Here
64
BUILD_DEPENDS+=	libtoolize:${PORTSDIR}/devel/libtool
64
BUILD_DEPENDS+=	libtoolize:${PORTSDIR}/devel/libtool
65
.endif
65
.endif
66
66
67
AUTORECONF?=	${LOCALBASE}/bin/autoreconf
68
67
.endif
69
.endif
68
70
69
.if defined(_POSTMKINCLUDED) && !defined(_INCLUDE_USES_AUTORECONF_POST_MK)
71
.if defined(_POSTMKINCLUDED) && !defined(_INCLUDE_USES_AUTORECONF_POST_MK)
Lines 83-89 do-autoreconf: Link Here
83
		if ${EGREP} -q '^(AC|IT)_PROG_INTLTOOL' $${configure}; \
85
		if ${EGREP} -q '^(AC|IT)_PROG_INTLTOOL' $${configure}; \
84
		then ${LOCALBASE}/bin/intltoolize -f -c; fi)
86
		then ${LOCALBASE}/bin/intltoolize -f -c; fi)
85
.endif
87
.endif
86
	@(cd ${CONFIGURE_WRKSRC} && ${LOCALBASE}/bin/autoreconf -f -i)
88
	@(cd ${CONFIGURE_WRKSRC} && ${AUTORECONF} -f -i)
87
.endif
89
.endif
88
90
89
.endif
91
.endif
(-)games/qqwing/Makefile (-1 / +1 lines)
Lines 30-36 pre-configure: Link Here
30
		target/automake
30
		target/automake
31
	@cd ${WRKSRC} && ${CP} doc/qqwing.man target/automake/qqwing.1
31
	@cd ${WRKSRC} && ${CP} doc/qqwing.man target/automake/qqwing.1
32
	@cd ${WRKSRC}/target/automake && ${TOUCH} config.h.in
32
	@cd ${WRKSRC}/target/automake && ${TOUCH} config.h.in
33
	@cd ${WRKSRC}/target/automake && autoreconf --force --install
33
	@cd ${WRKSRC}/target/automake && ${AUTORECONF} --force --install
34
34
35
pre-build:
35
pre-build:
36
	@cd ${WRKSRC} && ${CP} src/cpp/*.cpp target/automake
36
	@cd ${WRKSRC} && ${CP} src/cpp/*.cpp target/automake
(-)net/tigervnc/Makefile (-1 / +1 lines)
Lines 134-140 post-patch: Link Here
134
	@cd ${WRKSRC}/unix/xserver/ && ${PATCH} -p1 < ${WRKSRC}/unix/xserver${TIGERVNC_XORG_PATCH_VER}.patch
134
	@cd ${WRKSRC}/unix/xserver/ && ${PATCH} -p1 < ${WRKSRC}/unix/xserver${TIGERVNC_XORG_PATCH_VER}.patch
135
135
136
post-configure:
136
post-configure:
137
	@cd ${WRKSRC}/unix/xserver/ && ${SETENV} ${CONFIGURE_ENV} ${LOCALBASE}/bin/autoreconf -fiv
137
	@cd ${WRKSRC}/unix/xserver/ && ${SETENV} ${CONFIGURE_ENV} ${AUTORECONF} -fiv
138
	@cd ${WRKSRC}/unix/xserver/ && ${SETENV} ${CONFIGURE_ENV} ./configure ${CONFIGURE_ARGS}
138
	@cd ${WRKSRC}/unix/xserver/ && ${SETENV} ${CONFIGURE_ENV} ./configure ${CONFIGURE_ARGS}
139
139
140
post-build:
140
post-build:
(-)print/fontforge/Makefile (-1 / +1 lines)
Lines 77-82 pre-configure: Link Here
77
		${SH} -c '. ./bootstrap.conf ; \
77
		${SH} -c '. ./bootstrap.conf ; \
78
		${LOCALBASE}/bin/libtoolize -i -c -q ; \
78
		${LOCALBASE}/bin/libtoolize -i -c -q ; \
79
		${LOCALBASE}/bin/gnulib-tool --aux-dir=config --m4-base=m4 --libtool --symlink --import $${gnulib_modules}' ; \
79
		${LOCALBASE}/bin/gnulib-tool --aux-dir=config --m4-base=m4 --libtool --symlink --import $${gnulib_modules}' ; \
80
		export LIBTOOLIZE=true ; ${LOCALBASE}/bin/autoreconf -s -i)
80
		export LIBTOOLIZE=true ; ${AUTORECONF} -f -i)
81
81
82
.include <bsd.port.mk>
82
.include <bsd.port.mk>
(-)devel/ptlib/Makefile (-3 / +2 lines)
Lines 16-23 LIB_DEPENDS= libexpat.so:${PORTSDIR}/tex Link Here
16
16
17
CONFLICTS=	pwlib-1.*
17
CONFLICTS=	pwlib-1.*
18
18
19
USES=		bison gmake pkgconfig tar:xz
19
USES=		autoreconf:build bison gmake pkgconfig tar:xz
20
USE_AUTOTOOLS=	autoconf:env automake:env
21
GNU_CONFIGURE=	yes
20
GNU_CONFIGURE=	yes
22
USE_OPENSSL=	yes
21
USE_OPENSSL=	yes
23
USE_LDCONFIG=	yes
22
USE_LDCONFIG=	yes
Lines 162-168 post-patch: Link Here
162
	@${REINPLACE_CMD} -e 's/RTF_WASCLONED/0x20000/' ${WRKSRC}/src/ptlib/unix/socket.cxx
161
	@${REINPLACE_CMD} -e 's/RTF_WASCLONED/0x20000/' ${WRKSRC}/src/ptlib/unix/socket.cxx
163
162
164
pre-configure:
163
pre-configure:
165
	cd ${WRKSRC}/plugins/ && autoreconf -fi
164
	(cd ${WRKSRC}/plugins/ && ${AUTORECONF} -fi)
166
165
167
post-install:
166
post-install:
168
	${LN} -sf libpt.so.${PORTVERSION} ${STAGEDIR}${PREFIX}/lib/libpt.so.${PVERSION_MAJOR}
167
	${LN} -sf libpt.so.${PORTVERSION} ${STAGEDIR}${PREFIX}/lib/libpt.so.${PVERSION_MAJOR}

Return to bug 204534