1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-11 02:50:24 +00:00
freebsd-ports/net/loudmouth/Makefile
Joe Marcus Clarke d3702246bb Chase the gnutls shared lib version.
Pointy hat to:	sergei
2004-06-06 01:44:39 +00:00

46 lines
1011 B
Makefile

# New ports collection makefile for: loudmouth
# Date created: 08 July 2003
# Whom: Adam Weinberger <adamw@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= loudmouth
PORTVERSION= 0.16
PORTREVISION= 1
CATEGORIES= net gnome
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= sources/${PORTNAME}/0.16
MAINTAINER= gnome@FreeBSD.org
COMMENT= Lightweight Jabber client library
USE_BZIP2= yes
USE_GMAKE= yes
USE_LIBTOOL_VER=13
INSTALLS_SHLIB= yes
USE_GNOME= gnomehack glib20
CONFIGURE_ARGS= --disable-gtk-doc
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
.include <bsd.port.pre.mk>
.if exists(${LOCALBASE}/lib/libgnutls.so)
WITH_GNUTLS= yes
.endif
.if defined(WITH_GNUTLS)
LIB_DEPENDS+= gnutls.12:${PORTSDIR}/security/gnutls
.else
CONFIGURE_ARGS+= --without-ssl
.endif
pre-everything::
@${ECHO_MSG} ""
@${ECHO_MSG} "Loudmouth has the following tunable option(s):"
@${ECHO_MSG} " WITH_GNUTLS Enable SSL (via GnuTLS) support"
@${ECHO_MSG} ""
.include <bsd.port.post.mk>