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

(-)Makefile (-3 / +15 lines)
Lines 7-12 Link Here
7
7
8
PORTNAME=	gnutls
8
PORTNAME=	gnutls
9
PORTVERSION=	0.8.10
9
PORTVERSION=	0.8.10
10
PORTREVISION=	1
10
CATEGORIES=	security net
11
CATEGORIES=	security net
11
MASTER_SITES=	${MASTER_SITE_GNUPG} \
12
MASTER_SITES=	${MASTER_SITE_GNUPG} \
12
	http://www.mirrors.wiretapped.net/security/network-security/gnutls/ \
13
	http://www.mirrors.wiretapped.net/security/network-security/gnutls/ \
Lines 17-25 Link Here
17
MAINTAINER=	sergei@kolobov.com
18
MAINTAINER=	sergei@kolobov.com
18
COMMENT=	GNU Transport Layer Security library
19
COMMENT=	GNU Transport Layer Security library
19
20
20
LIB_DEPENDS=	gcrypt.6:${PORTSDIR}/security/libgcrypt \
21
LIB_DEPENDS=	gcrypt.6:${PORTSDIR}/security/libgcrypt
21
		tasn1.2:${PORTSDIR}/security/libtasn1 \
22
		opencdk.6:${PORTSDIR}/security/opencdk
23
22
24
USE_LIBTOOL=	yes
23
USE_LIBTOOL=	yes
25
INSTALLS_SHLIB=	yes
24
INSTALLS_SHLIB=	yes
Lines 27-32 Link Here
27
LDFLAGS+=	-L${LOCALBASE}/lib
26
LDFLAGS+=	-L${LOCALBASE}/lib
28
CONFIGURE_ENV=	CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
27
CONFIGURE_ENV=	CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
29
CONFIGURE_TARGET=	--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
28
CONFIGURE_TARGET=	--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
29
CONFIGURE_ARGS=	--with-included-lzo
30
31
.if defined(WITH_LIBTASN1) || exists(${LOCALBASE}/lib/libtasn1.so.2)
32
LIB_DEPENDS+=		tasn1.2:${PORTSDIR}/security/libtasn1
33
.else
34
CONFIGURE_ARGS+=	--with-included-libtasn1
35
.endif
36
37
.if defined(WITH_OPENCDK) || exists(${LOCALBASE}/lib/libopencdk.so.6)
38
LIB_DEPENDS+=		opencdk.6:${PORTSDIR}/security/opencdk
39
.else
40
CONFIGURE_ARGS+=	--disable-openpgp-authentication
41
.endif
30
42
31
DOCS=		AUTHORS NEWS README THANKS doc/tex/*.ps
43
DOCS=		AUTHORS NEWS README THANKS doc/tex/*.ps
32
EXAMPLES=	doc/examples/*.c
44
EXAMPLES=	doc/examples/*.c
(-)pkg-plist (-9 / +11 lines)
Lines 1-21 Link Here
1
@comment $FreeBSD: ports/security/gnutls/pkg-plist,v 1.6 2003/09/24 09:06:54 krion Exp $
1
@comment $FreeBSD: ports/security/gnutls/pkg-plist,v 1.6 2003/09/24 09:06:54 krion Exp $
2
bin/gnutls-serv
3
bin/gnutls-cli
2
bin/gnutls-cli
4
bin/gnutls-srpcrypt
5
bin/gnutls-cli-debug
3
bin/gnutls-cli-debug
4
bin/gnutls-serv
5
bin/gnutls-srpcrypt
6
bin/libgnutls-config
6
bin/libgnutls-config
7
bin/libgnutls-extra-config
7
bin/libgnutls-extra-config
8
include/gnutls/extra.h
9
include/gnutls/compat4.h
8
include/gnutls/compat4.h
10
include/gnutls/openssl.h
9
include/gnutls/extra.h
11
include/gnutls/gnutls.h
10
include/gnutls/gnutls.h
11
include/gnutls/openssl.h
12
@dirrm include/gnutls
12
@dirrm include/gnutls
13
lib/libgnutls.so.7
14
lib/libgnutls.so
15
lib/libgnutls.a
16
lib/libgnutls-extra.so.7
17
lib/libgnutls-extra.so
18
lib/libgnutls-extra.a
13
lib/libgnutls-extra.a
14
lib/libgnutls-extra.la
15
lib/libgnutls-extra.so
16
lib/libgnutls-extra.so.7
17
lib/libgnutls.a
18
lib/libgnutls.la
19
lib/libgnutls.so
20
lib/libgnutls.so.7
19
share/aclocal/libgnutls.m4
21
share/aclocal/libgnutls.m4
20
share/aclocal/libgnutls-extra.m4
22
share/aclocal/libgnutls-extra.m4
21
%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
23
%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
(-)files/patch-configure (-13 lines)
Removed Link Here
1
2
$FreeBSD: ports/security/gnutls/files/patch-configure,v 1.1 2003/02/27 20:52:02 naddy Exp $
3
4
--- configure.orig	Thu Feb 27 21:25:22 2003
5
+++ configure	Thu Feb 27 21:25:36 2003
6
@@ -12529,6 +12529,7 @@
7
 
8
 # This can be used to rebuild libtool when needed
9
 LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"
10
+$ac_aux_dir/ltconfig $LIBTOOL_DEPS
11
 
12
 # Always use our own libtool.
13
 LIBTOOL='$(SHELL) $(top_builddir)/libtool'

Return to bug 57346