diff --git a/net/Makefile b/net/Makefile index 3f1a1f79886..be864ce3f71 100644 --- a/net/Makefile +++ b/net/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.315 2004/05/09 19:25:39 david Exp $ +# $OpenBSD: Makefile,v 1.316 2004/05/12 05:17:15 david Exp $ # $FreeBSD: Makefile,v 1.129 1997/11/20 13:47:40 itojun Exp $ # @@ -102,6 +102,7 @@ SUBDIR += maradns SUBDIR += mbrowse SUBDIR += micq + SUBDIR += micq,ssl SUBDIR += mirror SUBDIR += mldonkey SUBDIR += mrtd diff --git a/net/micq/Makefile b/net/micq/Makefile index b5e2d5c444d..c193456463d 100644 --- a/net/micq/Makefile +++ b/net/micq/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.29 2004/01/21 18:16:22 david Exp $ +# $OpenBSD: Makefile,v 1.30 2004/05/12 05:17:16 david Exp $ # $FreeBSD: Makefile,v 1.6 1999/06/03 08:31:06 ache Exp $ COMMENT= "text-based ICQ implementation" @@ -21,6 +21,14 @@ MASTER_SITES= ${HOMEPAGE}source/ \ EXTRACT_SUFX= .tgz +FLAVORS= ssl +FLAVOR?= + +.if ${FLAVOR:L:Mssl} +LIB_DEPENDS= gnutls.12::security/gnutls +CONFIGURE_ARGS+= --enable-ssl +.endif + USE_GMAKE= Yes CONFIGURE_STYLE= gnu diff --git a/net/micq/pkg/DESCR b/net/micq/pkg/DESCR index 6ef9c640920..b77f34cdfdd 100644 --- a/net/micq/pkg/DESCR +++ b/net/micq/pkg/DESCR @@ -5,3 +5,6 @@ been rewritten by Ruediger Kuhlmann, in particular the support for the new version 8 of the ICQ protocol that became necessary, the internationalization, the file transfer and some restructuring of the code. + +Flavors: + ssl - build with SSL support.