freebsd-ports/irc/xchat-gnome/Makefile

78 lines
1.9 KiB
Makefile
Raw Normal View History

# New ports collection makefile for: xchat2
# Date created: 17 Aug 2002
# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
#
1999-08-25 08:16:32 +02:00
# $FreeBSD$
#
PORTNAME= xchat2
PORTVERSION= 2.0.2
CATEGORIES= irc gnome ipv6
2003-02-12 04:31:58 +01:00
MASTER_SITES= http://xchat.org/files/source/2.0/ \
http://xchat.linuxpower.org/files/source/2.0/
DISTNAME= xchat-${PORTVERSION}
MAINTAINER= gnome@FreeBSD.org
COMMENT= An X11 IRC client using the GTK+ 2 toolkit
USE_X_PREFIX= yes
USE_BZIP2= yes
USE_GMAKE= yes
USE_PERL5= yes
2003-04-22 06:46:36 +02:00
USE_GNOME= gnomeprefix gnomehack gtk20
2003-01-19 20:43:44 +01:00
USE_LIBTOOL= yes
USE_REINPLACE= yes
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \
LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}"
CONFIGURE_ARGS= --enable-nls \
--enable-ipv6 \
--enable-perl
2000-10-05 09:22:56 +02:00
.include <bsd.port.pre.mk>
.if defined(WITH_SOCKS)
BUILD_DEPENDS+= ${LOCALBASE}/lib/libsocks5.a:${PORTSDIR}/net/socks5
CONFIGURE_ARGS+= --enable-socks
2000-04-14 20:18:37 +02:00
.endif
2003-01-19 20:43:44 +01:00
# openssl in now default in configure
.if defined(WITH_PYTHON)
USE_PYTHON= yes
CONFIGURE_ARGS+= --enable-python
PLIST_SUB+= PYTHON=""
.else
CONFIGURE_ARGS+= --disable-python
PLIST_SUB+= PYTHON="@comment "
.endif
.if defined(WITH_TCL)
LIB_DEPENDS= tcl83.1:${PORTSDIR}/lang/tcl83
CONFIGURE_ARGS+= --enable-tcl=${LOCALBASE}/lib/tcl8.3
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS} \
-I${LOCALBASE}/include/tcl8.3" \
LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS} \
-L${LOCALBASE}/lib/tcl8.3"
PLIST_SUB+= TCL=""
.else
CONFIGURE_ARGS+= --enable-tcl=no
PLIST_SUB+= TCL="@comment "
.endif
pre-everything::
.if !defined(WITH_PYTHON) || !defined(WITH_SOCKS) || !defined(WITH_TCL)
@${ECHO_MSG} "You may specify the following on the command line:"
@${ECHO_MSG} ""
.endif
.if !defined(WITH_PYTHON)
@${ECHO_MSG} "WITH_PYTHON=yes for Python support"
.endif
.if !defined(WITH_SOCKS)
@${ECHO_MSG} "WITH_SOCKS=yes for SOCKS5 proxy support"
.endif
.if !defined(WITH_TCL)
@${ECHO_MSG} "WITH_TCL=yes for tcl support"
.endif
2000-10-05 09:22:56 +02:00
.include <bsd.port.post.mk>