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-11-16 06:30:14 +00:00
|
|
|
PORTNAME= xchat
|
|
|
|
PORTVERSION= 1.6.0
|
|
|
|
CATEGORIES+= irc gnome
|
|
|
|
MASTER_SITES= http://xchat.org/files/source/1.6/ \
|
|
|
|
http://xchat.linuxpower.org/files/source/1.6/
|
1998-11-19 09:27:59 +00:00
|
|
|
|
2000-11-16 06:30:14 +00:00
|
|
|
MAINTAINER= jim@FreeBSD.org
|
2000-11-06 19:39:43 +00:00
|
|
|
# This port has a slave port japanese/xchat. Do not carelessly overwrite
|
|
|
|
# the variables or the targets defined in it. When you need to, please
|
|
|
|
# contact its maintainer.
|
1998-11-19 09:27:59 +00:00
|
|
|
|
2000-11-16 06:30:14 +00:00
|
|
|
USE_X_PREFIX= yes
|
|
|
|
USE_BZIP2= yes
|
|
|
|
USE_GMAKE= yes
|
|
|
|
USE_PERL5= yes
|
|
|
|
USE_IMLIB= yes
|
|
|
|
WANT_GNOME= yes
|
|
|
|
GNU_CONFIGURE= yes
|
2000-11-06 19:39:43 +00:00
|
|
|
# Assign with `+=' for slave ports
|
2000-11-16 06:30:14 +00:00
|
|
|
CONFIGURE_ARGS+= --disable-python
|
1999-07-21 05:24:44 +00:00
|
|
|
|
2000-10-05 07:22:56 +00:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
2000-04-17 00:18:05 +00:00
|
|
|
.if defined(WITH_SOCKS)
|
2000-11-06 19:39:43 +00:00
|
|
|
# Assign with `+=' for slave ports
|
2000-11-16 06:30:14 +00:00
|
|
|
BUILD_DEPENDS+= ${LOCALBASE}/lib/libsocks5.a:${PORTSDIR}/net/socks5
|
|
|
|
CONFIGURE_ARGS+= --enable-socks
|
2000-04-14 18:18:37 +00:00
|
|
|
.endif
|
|
|
|
|
2000-10-05 07:22:56 +00:00
|
|
|
.if defined(HAVE_GNOME)
|
2000-11-16 06:30:14 +00:00
|
|
|
USE_GNOME= yes
|
|
|
|
CONFIGURE_ARGS+= --enable-gnome --enable-panel --enable-gdk-pixbuf
|
1999-07-21 05:24:44 +00:00
|
|
|
.else
|
2000-11-16 06:30:14 +00:00
|
|
|
CONFIGURE_ARGS+= --disable-gnome --disable-gdk-pixbuf
|
1999-07-21 05:24:44 +00:00
|
|
|
.endif
|
|
|
|
|
2000-11-06 19:39:43 +00:00
|
|
|
post-patch:
|
2000-10-05 07:22:56 +00:00
|
|
|
@${PERL} -pi -e 's|-lpthread|-pthread|g ; \
|
|
|
|
s|DATADIRNAME=lib|DATADIRNAME=share|g ; \
|
|
|
|
s|USE_INCLUDED_LIBINTL=yes|#USE_INCLUDED_LIBINTL=yes|g ; \
|
|
|
|
s|\$$\(top_builddir\)/intl/libintl.a|-lintl|g' ${WRKSRC}/configure
|
|
|
|
@find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \
|
|
|
|
's|\$$\(datadir\)/gnome/|\$$\(datadir\)/|g ; \
|
|
|
|
s|\$$\(datadir\)/locale|\$$\(prefix\)/share/locale|g'
|
2000-01-20 02:23:12 +00:00
|
|
|
|
1999-05-09 16:57:32 +00:00
|
|
|
post-install:
|
|
|
|
.if !defined(NOPORTDOCS)
|
2000-10-05 07:22:56 +00:00
|
|
|
@${ECHO_MSG} "===> 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
|
2000-10-03 05:48:54 +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
|
|
|
|
2000-10-05 07:22:56 +00:00
|
|
|
.include <bsd.port.post.mk>
|