Trim header, convert OptionsNG.

Switch to tcl 8.4 since 8.3 is going away soon [1]

Submitted by:	gahr@
Feature safe:	yes
This commit is contained in:
Koop Mast 2013-04-17 11:32:01 +00:00
parent 3bc71beccc
commit 32c430660f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=315959

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: xchat-gnome # Created by: Koop Mast <kwm@rainbow-runner.nl>
# Date created: 04 May 2004
# Whom: Koop Mast <kwm@rainbow-runner.nl>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= xchat PORTNAME= xchat
PORTVERSION= 0.26.1 PORTVERSION= 0.26.1
@ -18,26 +14,30 @@ MAINTAINER= kwm@FreeBSD.org
COMMENT= An IRC client for GNOME 2 (development version) COMMENT= An IRC client for GNOME 2 (development version)
LIB_DEPENDS= sexy:${PORTSDIR}/x11-toolkits/libsexy \ LIB_DEPENDS= sexy:${PORTSDIR}/x11-toolkits/libsexy \
canberra-gtk.0:${PORTSDIR}/audio/libcanberra \ canberra-gtk:${PORTSDIR}/audio/libcanberra \
notify:${PORTSDIR}/devel/libnotify notify:${PORTSDIR}/devel/libnotify
USE_GETTEXT= yes USE_GETTEXT= yes
USE_BZIP2= yes USE_BZIP2= yes
USE_GMAKE= yes USE_GMAKE= yes
USE_GNOME= gnomehack gnomeprefix libgnomeui gnomedocutils desktopfileutils USES= pathfix desktop-file-utils
USE_GNOME= gnomeprefix libgnomeui gnomedocutils
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}"
CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS} CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS}
CONFIGURE_ARGS= --disable-tcl
GCONF_SCHEMAS= apps_xchat.schemas notification.schemas urlscraper.schemas GCONF_SCHEMAS= apps_xchat.schemas notification.schemas urlscraper.schemas
INSTALLS_ICONS= yes INSTALLS_ICONS= yes
INSTALLS_OMF= yes INSTALLS_OMF= yes
WANT_PERL= yes
MAN1= xchat-gnome.1 MAN1= xchat-gnome.1
.if !defined(WITHOUT_DBUS) OPTIONS_DEFINE= DBUS IPV6 PYTHON PERL TCL
LIB_DEPENDS+= dbus-1.3:${PORTSDIR}/devel/dbus OPTIONS_DEFAULT=DBUS IPV6 PERL
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MDBUS}
LIB_DEPENDS+= dbus-1:${PORTSDIR}/devel/dbus
CONFIGURE_ARGS+= --enable-dbus CONFIGURE_ARGS+= --enable-dbus
USE_GNOME+= gconf2 USE_GNOME+= gconf2
GCONF_SCHEMAS+= url_handler.schemas GCONF_SCHEMAS+= url_handler.schemas
@ -47,13 +47,11 @@ CONFIGURE_ARGS+=--disable-dbus
PLIST_SUB+= DBUS="@comment " PLIST_SUB+= DBUS="@comment "
.endif .endif
.if !defined(WITHOUT_IPV6) .if ${PORT_OPTIONS:MIPV6}
CONFIGURE_ARGS+= --enable-ipv6 CONFIGURE_ARGS+= --enable-ipv6
.endif .endif
# openssl in now default in configure .if ${PORT_OPTIONS:MPYTHON}
.if defined(WITH_PYTHON)
USE_PYTHON= yes USE_PYTHON= yes
CONFIGURE_ARGS+= --enable-python CONFIGURE_ARGS+= --enable-python
PLIST_SUB+= PYTHON="" PLIST_SUB+= PYTHON=""
@ -62,54 +60,34 @@ CONFIGURE_ARGS+= --disable-python
PLIST_SUB+= PYTHON="@comment " PLIST_SUB+= PYTHON="@comment "
.endif .endif
.if defined(WITH_TCL) .if ${PORT_OPTIONS:MTCL}
LIB_DEPENDS+= tcl83.1:${PORTSDIR}/lang/tcl83 USE_TCL= 84
CONFIGURE_ARGS+=--enable-tcl=${LOCALBASE}/lib/tcl8.3 CONFIGURE_ARGS+=--enable-tcl=${TCL_LIBDIR}
CONFIGURE_ENV+= LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS} \ CONFIGURE_ENV+= LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS} \
-L${LOCALBASE}/lib/tcl8.3" -L${TCL_LIBDIR}"
CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS} \ CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS} \
-I${LOCALBASE}/include/tcl8.3 -I${TCL_INCLUDEDIR}
PLIST_SUB+= TCL="" PLIST_SUB+= TCL=""
.else .else
CONFIGURE_ARGS+=--enable-tcl=no CONFIGURE_ARGS+=--disable-tcl
PLIST_SUB+= TCL="@comment " PLIST_SUB+= TCL="@comment "
.endif .endif
.include <bsd.port.pre.mk> .if ${PORT_OPTIONS:MPERL}
.if defined(WITHOUT_PERL)
CONFIGURE_ARGS+=--disable-perl
PLIST_SUB+= PERL="@comment "
.else
USE_PERL5= yes USE_PERL5= yes
CONFIGURE_ARGS+=--enable-perl CONFIGURE_ARGS+=--enable-perl
PLIST_SUB+= PERL="" PLIST_SUB+= PERL=""
.endif .else
CONFIGURE_ARGS+=--disable-perl
pre-everything:: PLIST_SUB+= PERL="@comment "
.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
.if !defined(WITHOUT_PERL)
@${ECHO_MSG} "WITHOUT_PERL=yes to disable Perl support"
.endif .endif
post-patch: post-patch:
@${REINPLACE_CMD} -E -e 's|PY_LIBS=.*|PY_LIBS="-L\$$PY_EXEC_PREFIX/lib/python\$$PY_VER/config -lpython\$$PY_VER ${PTHREAD_LIBS} -lutil"|' \ @${REINPLACE_CMD} -E -e 's|PY_LIBS=.*|PY_LIBS="-L\$$PY_EXEC_PREFIX/lib/python\$$PY_VER/config -lpython\$$PY_VER ${PTHREAD_LIBS} -lutil"|' \
-e 's|tcl-8.4/lib|lib/tcl8.3|g' \ -e 's|tcl-8.4/lib|lib/tcl8.4|g' \
-e 's|-DGTK_DISABLE_DEPRECATED||g' \ -e 's|-DGTK_DISABLE_DEPRECATED||g' \
-e 's|-DGDK_DISABLE_DEPRECATED||g' \ -e 's|-DGDK_DISABLE_DEPRECATED||g' \
-e 's|-fgnu89-inline||g' \ -e 's|-fgnu89-inline||g' \
${WRKSRC}/configure ${WRKSRC}/configure
.include <bsd.port.post.mk> .include <bsd.port.mk>