View | Details | Raw Unified | Return to bug 86886
Collapse All | Expand All

(-)lmtp2nntp/Makefile (-5 / +22 lines)
Lines 6-17 Link Here
6
#
6
#
7
7
8
PORTNAME=	lmtp2nntp
8
PORTNAME=	lmtp2nntp
9
PORTVERSION=	1.3.0
9
PORTVERSION=	1.4.0
10
CATEGORIES=	mail news
10
CATEGORIES=	mail news
11
MASTER_SITES=	${MASTER_SITE_OSSP}
11
MASTER_SITES=	${MASTER_SITE_OSSP}
12
MASTER_SITE_SUBDIR=	tool/${PORTNAME}
12
MASTER_SITE_SUBDIR=	tool/${PORTNAME}
13
13
14
MAINTAINER=	ports@FreeBSD.org
14
MAINTAINER=	vd@datamax.bg
15
COMMENT=	OSSP mail to news gateway
15
COMMENT=	OSSP mail to news gateway
16
16
17
LIB_DEPENDS=	str.9:${PORTSDIR}/devel/str \
17
LIB_DEPENDS=	str.9:${PORTSDIR}/devel/str \
Lines 19-29 Link Here
19
		sa.12:${PORTSDIR}/net/ossp-sa \
19
		sa.12:${PORTSDIR}/net/ossp-sa \
20
		var.11:${PORTSDIR}/devel/ossp-var
20
		var.11:${PORTSDIR}/devel/ossp-var
21
21
22
GNU_CONFIGURE=	yes
23
CONFIGURE_TARGET=	--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
24
CONFIGURE_ARGS=	--with-ex=${LOCALBASE} --with-str=${LOCALBASE} \
25
		--with-sa=${LOCALBASE} --with-var=${LOCALBASE}
26
22
MAN8=		lmtp2nntp.8
27
MAN8=		lmtp2nntp.8
23
PLIST_FILES=	sbin/lmtp2nntp
28
PLIST_FILES=	sbin/lmtp2nntp
24
HAS_CONFIGURE=	yes
29
25
CONFIGURE_ARGS=	--with-ex="${LOCALBASE}" --with-str="${LOCALBASE}" \
30
.if !defined(NOPORTDOCS)
26
		--with-sa="${LOCALBASE}" --with-var="${LOCALBASE}"
31
PORTDOCS=	INSTALL README
32
.endif
33
34
check: build
35
	@(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} check)
36
37
post-install:
38
.if !defined(NOPORTDOCS)
39
	${MKDIR} ${DOCSDIR}
40
.for doc in ${PORTDOCS}
41
	${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR}/
42
.endfor
43
.endif
27
44
28
.include <bsd.port.pre.mk>
45
.include <bsd.port.pre.mk>
29
46
(-)lmtp2nntp/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
MD5 (lmtp2nntp-1.3.0.tar.gz) = ae79014d8c6129153206de2bcf871c76
1
MD5 (lmtp2nntp-1.4.0.tar.gz) = 7d7b8db96219e790759d7a1b96c6a8c5
2
SIZE (lmtp2nntp-1.3.0.tar.gz) = 3458398
2
SIZE (lmtp2nntp-1.4.0.tar.gz) = 3542820
(-)lmtp2nntp/files/patch-l2_ut_format.c (-15 lines)
Lines 1-15 Link Here
1
--- l2_ut_format.c.orig	Tue Apr 13 19:04:15 2004
2
+++ lib_l2/l2_ut_format.c	Tue Apr 13 19:05:59 2004
3
@@ -1131,8 +1131,11 @@
4
     va_list apbak;
5
     char *s;
6
     int rv;
7
-
8
+#ifdef __amd64__
9
+    va_copy(apbak,ap);
10
+#else
11
     apbak = ap;
12
+#endif
13
     if ((rv = l2_util_vsprintf(NULL, -1, fmt, ap)) == -1)
14
         return NULL;
15
     if ((s = malloc(rv+1)) == NULL)

Return to bug 86886