freebsd-ports/irc/xchat-devel/Makefile

66 lines
1.8 KiB
Makefile
Raw Normal View History

# New ports collection makefile for: xchat
# Date created: 17 Nov 1998
1999-08-12 03:55:42 -04:00
# Whom: Jim Mock <jim@FreeBSD.org>
#
1999-08-25 02:16:32 -04:00
# $FreeBSD$
#
2000-10-07 13:49:33 -04:00
PORTNAME= xchat
2001-06-24 11:28:53 -04:00
PORTVERSION= 1.7.8
2000-10-07 13:49:33 -04:00
CATEGORIES= irc gnome
MASTER_SITES= http://xchat.org/files/source/1.7/ \
http://xchat.linuxpower.org/files/source/1.7/
2000-10-07 13:49:33 -04:00
MAINTAINER= jim@FreeBSD.org
USE_X_PREFIX= yes
USE_BZIP2= yes
USE_GMAKE= yes
USE_PERL5= yes
USE_IMLIB= yes
WANT_GNOME= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-python --disable-nls
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LIBS="-L${LOCALBASE}/lib -lintl"
2000-10-05 03:22:56 -04:00
.include <bsd.port.pre.mk>
.if defined(WITH_SOCKS)
2000-10-07 13:49:33 -04:00
BUILD_DEPENDS+= ${LOCALBASE}/lib/libsocks5.a:${PORTSDIR}/net/socks5
CONFIGURE_ARGS+= --enable-socks
2000-04-14 14:18:37 -04:00
.endif
.if defined(WITH_SSL)
2000-10-07 13:49:33 -04:00
USE_OPENSSL= YES
CONFIGURE_ARGS+= --enable-openssl
.endif
2000-10-05 03:22:56 -04:00
.if defined(HAVE_GNOME)
2000-10-07 13:49:33 -04:00
USE_GNOME= yes
CONFIGURE_ARGS+= --enable-gnome --enable-panel --enable-gdk-pixbuf
2000-10-05 03:22:56 -04:00
.else
2000-10-07 13:49:33 -04:00
CONFIGURE_ARGS+= --disable-gnome --disable-gdk-pixbuf
2000-10-05 03:22:56 -04:00
.endif
pre-patch:
@${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g ; \
2000-10-05 03:22:56 -04:00
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)
2000-10-05 03:22:56 -04:00
@${ECHO_MSG} "===> Installing xchat docs in ${PREFIX}/share/doc/xchat"
1999-08-22 15:01:07 -04:00
@${MKDIR} ${PREFIX}/share/doc/xchat && ${CHMOD} a+rx ${PREFIX}/share/doc/xchat
2000-10-03 01:48:54 -04: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
.endif
2000-10-05 03:22:56 -04:00
.include <bsd.port.post.mk>