1998-11-19 16:08:31 +01:00
|
|
|
# New ports collection makefile for: xchat
|
|
|
|
# Date created: 17 Nov 1998
|
1999-08-12 09:55:42 +02:00
|
|
|
# Whom: Jim Mock <jim@FreeBSD.org>
|
1998-11-19 10:27:59 +01:00
|
|
|
#
|
1999-08-25 08:16:32 +02:00
|
|
|
# $FreeBSD$
|
1998-11-19 10:27:59 +01:00
|
|
|
#
|
|
|
|
|
2000-04-12 08:28:35 +02:00
|
|
|
PORTNAME= xchat
|
|
|
|
PORTVERSION= 1.4.2
|
1999-06-28 04:24:57 +02:00
|
|
|
CATEGORIES= irc
|
2000-02-11 20:24:39 +01:00
|
|
|
MASTER_SITES= http://xchat.org/files/source/1.4/ \
|
|
|
|
http://xchat.linuxpower.org/files/source/1.4/
|
1998-11-19 10:27:59 +01:00
|
|
|
|
1999-08-12 09:55:42 +02:00
|
|
|
MAINTAINER= jim@FreeBSD.org
|
1998-11-19 10:27:59 +01:00
|
|
|
|
2000-04-14 20:18:37 +02:00
|
|
|
.if defined(USE_SOCKS)
|
|
|
|
BUILD_DEPENDS+= ${LOCALBASE}/lib/libsocks5.a:${PORTSDIR}/net/socks5
|
|
|
|
.endif
|
1999-08-31 06:01:25 +02:00
|
|
|
LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 \
|
1999-10-08 05:30:33 +02:00
|
|
|
Imlib.5:${PORTSDIR}/graphics/imlib
|
1999-10-26 00:15:10 +02:00
|
|
|
.if defined(USE_GNOME)
|
|
|
|
LIB_DEPENDS+= gnome.3:${PORTSDIR}/x11/gnomelibs
|
|
|
|
.endif
|
1998-11-19 10:27:59 +01:00
|
|
|
|
1999-05-29 05:56:15 +02:00
|
|
|
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
2000-01-20 03:23:12 +01:00
|
|
|
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
1999-05-29 05:56:15 +02:00
|
|
|
|
|
|
|
USE_X_PREFIX= yes
|
1999-10-02 11:46:11 +02:00
|
|
|
USE_BZIP2= yes
|
1998-11-19 16:08:31 +01:00
|
|
|
USE_GMAKE= yes
|
|
|
|
USE_PERL5= yes
|
|
|
|
GNU_CONFIGURE= yes
|
1999-11-03 01:22:09 +01:00
|
|
|
CONFIGURE_ARGS= --disable-nls --disable-python
|
1999-07-21 07:24:44 +02:00
|
|
|
|
2000-04-14 20:18:37 +02:00
|
|
|
.if defined(USE_SOCKS)
|
|
|
|
CONFIGURE_ARGS+= --enable-socks
|
|
|
|
.endif
|
|
|
|
|
1999-07-21 07:24:44 +02:00
|
|
|
.if defined(USE_GNOME)
|
|
|
|
CONFIGURE_ARGS+= --enable-gnome
|
|
|
|
.if defined(USE_PANEL)
|
|
|
|
CONFIGURE_ARGS+= --enable-panel
|
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+= --disable-panel
|
|
|
|
.endif
|
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+= --disable-gnome
|
|
|
|
.endif
|
|
|
|
|
2000-01-20 03:23:12 +01:00
|
|
|
CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" \
|
|
|
|
GLIB_CONFIG="${GLIB_CONFIG}"
|
|
|
|
|
|
|
|
.if defined(USE_GNOME)
|
|
|
|
PLIST= ${PKGDIR}/PLIST.gnome
|
|
|
|
.endif
|
1999-05-09 18:57:32 +02:00
|
|
|
|
|
|
|
post-install:
|
1999-07-05 04:30:59 +02:00
|
|
|
@strip ${PREFIX}/bin/xchat
|
1999-05-09 18:57:32 +02:00
|
|
|
.if !defined(NOPORTDOCS)
|
1999-08-12 09:55:42 +02:00
|
|
|
@${ECHO} "===> Installing xchat docs in ${PREFIX}/share/doc/xchat"
|
1999-08-22 21:01:07 +02:00
|
|
|
@${MKDIR} ${PREFIX}/share/doc/xchat && ${CHMOD} a+rx ${PREFIX}/share/doc/xchat
|
1999-07-05 04:30:59 +02: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 18:57:32 +02:00
|
|
|
.endif
|
1998-11-19 10:27:59 +01:00
|
|
|
|
|
|
|
.include <bsd.port.mk>
|