freebsd-ports/irc/xchat-gnome/Makefile
Akinori MUSHA 65c8663f35 Fix japanese/xchat which had been broken by the last two commits on
irc/xchat.  As japanese/xchat "built" without a problem, I didn't
notice it was "broken"...  In reality, the configure script failed to
detect the iconv library because of the removal of CPPFLAGS and LIBS
in CONFIGURE_ENV, therefore the built binary lacked Japanese support.
(i.e. the ja-xchat package included in 4.2-RELEASE will be broken)

To avoid this kind of sad accidents in future, add a note to irc/xchat
that it has a slave port and one should be careful not to overwrite
variables or targets.
2000-11-06 19:39:43 +00:00

63 lines
1.8 KiB
Makefile

# New ports collection makefile for: xchat
# Date created: 17 Nov 1998
# Whom: Jim Mock <jim@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= xchat
PORTVERSION= 1.4.3
CATEGORIES+= irc gnome
MASTER_SITES= http://xchat.org/files/source/1.4/ \
http://xchat.linuxpower.org/files/source/1.4/
MAINTAINER= jim@FreeBSD.org
# 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.
USE_X_PREFIX= yes
USE_BZIP2= yes
USE_GMAKE= yes
USE_PERL5= yes
USE_IMLIB= yes
WANT_GNOME= yes
GNU_CONFIGURE= yes
# Assign with `+=' for slave ports
CONFIGURE_ARGS+=--disable-python
.include <bsd.port.pre.mk>
.if defined(WITH_SOCKS)
# Assign with `+=' for slave ports
BUILD_DEPENDS+= ${LOCALBASE}/lib/libsocks5.a:${PORTSDIR}/net/socks5
CONFIGURE_ARGS+=--enable-socks
.endif
.if defined(HAVE_GNOME)
USE_GNOME= yes
CONFIGURE_ARGS+=--enable-gnome --enable-panel --enable-gdk-pixbuf
.else
CONFIGURE_ARGS+=--disable-gnome --disable-gdk-pixbuf
.endif
post-patch:
@${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'
post-install:
.if !defined(NOPORTDOCS)
@${ECHO_MSG} "===> Installing xchat docs in ${PREFIX}/share/doc/xchat"
@${MKDIR} ${PREFIX}/share/doc/xchat && ${CHMOD} a+rx ${PREFIX}/share/doc/xchat
${INSTALL_DATA} ${WRKSRC}/doc/*.* ${PREFIX}/share/doc/xchat
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/xchat
${INSTALL_DATA} ${WRKSRC}/ChangeLog ${PREFIX}/share/doc/xchat
.endif
.include <bsd.port.post.mk>