1998-11-19 15:08:31 +00:00
|
|
|
# New ports collection makefile for: xchat
|
|
|
|
# Date created: 17 Nov 1998
|
1999-08-12 07:55:42 +00:00
|
|
|
# Whom: Jim Mock <jim@FreeBSD.org>
|
1998-11-19 09:27:59 +00:00
|
|
|
#
|
1999-08-25 06:16:32 +00:00
|
|
|
# $FreeBSD$
|
1998-11-19 09:27:59 +00:00
|
|
|
#
|
|
|
|
|
2000-04-22 00:20:14 +00:00
|
|
|
PORTNAME= xchat
|
2000-06-05 19:04:22 +00:00
|
|
|
PORTVERSION= 1.5.3
|
2000-06-01 16:25:45 +00:00
|
|
|
CATEGORIES= irc gnome
|
2000-04-25 16:14:24 +00:00
|
|
|
MASTER_SITES= http://xchat.org/files/source/1.5/ \
|
|
|
|
http://xchat.linuxpower.org/files/source/1.5/
|
1998-11-19 09:27:59 +00:00
|
|
|
|
2000-04-22 00:20:14 +00:00
|
|
|
MAINTAINER= jim@FreeBSD.org
|
1998-11-19 09:27:59 +00:00
|
|
|
|
2000-04-17 00:18:05 +00:00
|
|
|
.if defined(WITH_SOCKS)
|
2000-04-22 00:20:14 +00:00
|
|
|
BUILD_DEPENDS+= ${LOCALBASE}/lib/libsocks5.a:${PORTSDIR}/net/socks5
|
2000-04-14 18:18:37 +00:00
|
|
|
.endif
|
2000-04-22 00:20:14 +00:00
|
|
|
LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 \
|
|
|
|
Imlib.5:${PORTSDIR}/graphics/imlib
|
2000-04-17 00:18:05 +00:00
|
|
|
.if defined(WITH_GNOME)
|
2000-06-01 16:25:45 +00:00
|
|
|
LIB_DEPENDS+= gnome.4:${PORTSDIR}/x11/gnomelibs
|
1999-10-25 22:15:10 +00:00
|
|
|
.endif
|
1998-11-19 09:27:59 +00:00
|
|
|
|
2000-06-05 19:34:48 +00:00
|
|
|
.if exists(${X11BASE}/bin/panel) && defined(WITH_GNOME)
|
|
|
|
WITH_GDK_PIXBUF= YES
|
2000-06-12 19:12:37 +00:00
|
|
|
WITH_PANEL= YES
|
|
|
|
LIB_DEPENDS+= panel_applet.4:${PORTSDIR}/x11/gnomecore
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if defined(WITH_GDK_PIXBUF)
|
|
|
|
LIB_DEPENDS+= gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf
|
2000-06-05 19:34:48 +00:00
|
|
|
.endif
|
|
|
|
|
2000-04-22 00:20:14 +00:00
|
|
|
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
|
|
|
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
2000-06-05 19:04:22 +00:00
|
|
|
GDK_PIXBUF_CONFIG?= ${X11BASE}/bin/gdk-pixbuf-config
|
1999-05-29 03:56:15 +00:00
|
|
|
|
2000-04-22 00:20:14 +00:00
|
|
|
USE_X_PREFIX= yes
|
|
|
|
USE_BZIP2= yes
|
|
|
|
USE_GMAKE= yes
|
|
|
|
USE_PERL5= yes
|
|
|
|
GNU_CONFIGURE= yes
|
2000-05-25 22:48:30 +00:00
|
|
|
CONFIGURE_ARGS= --disable-python
|
1999-07-21 05:24:44 +00:00
|
|
|
|
2000-04-17 00:18:05 +00:00
|
|
|
.if defined(WITH_SOCKS)
|
2000-04-22 00:20:14 +00:00
|
|
|
CONFIGURE_ARGS+= --enable-socks
|
2000-04-14 18:18:37 +00:00
|
|
|
.endif
|
|
|
|
|
2000-04-17 00:18:05 +00:00
|
|
|
.if defined(WITH_GNOME)
|
2000-04-22 00:20:14 +00:00
|
|
|
CONFIGURE_ARGS+= --enable-gnome
|
2000-04-17 00:18:05 +00:00
|
|
|
.if defined(WITH_PANEL)
|
2000-04-22 00:20:14 +00:00
|
|
|
CONFIGURE_ARGS+= --enable-panel
|
1999-07-21 05:24:44 +00:00
|
|
|
.else
|
2000-04-22 00:20:14 +00:00
|
|
|
CONFIGURE_ARGS+= --disable-panel
|
1999-07-21 05:24:44 +00:00
|
|
|
.endif
|
|
|
|
.else
|
2000-04-22 00:20:14 +00:00
|
|
|
CONFIGURE_ARGS+= --disable-gnome
|
1999-07-21 05:24:44 +00:00
|
|
|
.endif
|
|
|
|
|
2000-06-05 19:04:22 +00:00
|
|
|
.if defined(WITH_GDK_PIXBUF)
|
|
|
|
CONFIGURE_ARGS+= --enable-gdk-pixbuf
|
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+= --disable-gdk-pixbuf
|
|
|
|
.endif
|
|
|
|
|
2000-06-12 19:12:37 +00:00
|
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
|
|
GTK_CONFIG="${GTK_CONFIG}" \
|
2000-06-05 19:04:22 +00:00
|
|
|
GLIB_CONFIG="${GLIB_CONFIG}" \
|
2000-06-12 19:12:37 +00:00
|
|
|
GDK_PIXBUF_CONFIG="${GDK_PIXBUF_CONFIG}" \
|
|
|
|
LIBS="-L${LOCALBASE}/lib"
|
2000-01-20 02:23:12 +00:00
|
|
|
|
2000-04-17 00:18:05 +00:00
|
|
|
.if defined(WITH_GNOME)
|
2000-04-22 00:20:14 +00:00
|
|
|
PLIST= ${PKGDIR}/PLIST.gnome
|
2000-01-20 02:23:12 +00:00
|
|
|
.endif
|
1999-05-09 16:57:32 +00:00
|
|
|
|
|
|
|
post-install:
|
1999-07-05 02:30:59 +00:00
|
|
|
@strip ${PREFIX}/bin/xchat
|
1999-05-09 16:57:32 +00:00
|
|
|
.if !defined(NOPORTDOCS)
|
1999-08-12 07:55:42 +00:00
|
|
|
@${ECHO} "===> Installing xchat docs in ${PREFIX}/share/doc/xchat"
|
1999-08-22 19:01:07 +00:00
|
|
|
@${MKDIR} ${PREFIX}/share/doc/xchat && ${CHMOD} a+rx ${PREFIX}/share/doc/xchat
|
1999-07-05 02:30:59 +00:00
|
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/*.* ${PREFIX}/share/doc/xchat
|
|
|
|
@${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/xchat
|
|
|
|
@${INSTALL_DATA} ${WRKSRC}/ChangeLog ${PREFIX}/share/doc/xchat
|
1999-05-09 16:57:32 +00:00
|
|
|
.endif
|
1998-11-19 09:27:59 +00:00
|
|
|
|
|
|
|
.include <bsd.port.mk>
|