1998-04-18 04:04:44 +02:00
|
|
|
# New ports collection makefile for: BitchX ircII client
|
2000-01-22 05:56:41 +01:00
|
|
|
# Version required: 1.0c15
|
1998-04-18 04:04:44 +02:00
|
|
|
# Date created: 26 Jan 1998
|
|
|
|
# Whom: griffin
|
|
|
|
#
|
1999-08-25 08:16:32 +02:00
|
|
|
# $FreeBSD$
|
1998-04-18 04:04:44 +02:00
|
|
|
#
|
|
|
|
|
2000-01-22 05:56:41 +01:00
|
|
|
DISTNAME= BitchX-1.0c15
|
1999-06-28 04:24:57 +02:00
|
|
|
CATEGORIES= irc
|
2000-01-22 05:56:41 +01:00
|
|
|
MASTER_SITES= ftp://ftp.bitchx.com/pub/ \
|
|
|
|
ftp://bitchx.dimension6.com/pub/
|
1998-04-18 04:04:44 +02:00
|
|
|
|
2000-01-22 05:56:41 +01:00
|
|
|
MAINTAINER= calle.madestrand@norrgarden.se
|
1998-04-18 04:04:44 +02:00
|
|
|
|
2000-01-22 05:56:41 +01:00
|
|
|
.if defined(USE_GNOME)
|
|
|
|
LIB_DEPENDS= gnome.3:${PORTSDIR}/x11/gnomelibs
|
|
|
|
.endif
|
1998-04-18 04:04:44 +02:00
|
|
|
|
2000-01-22 05:56:41 +01:00
|
|
|
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
|
|
|
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
1998-04-18 04:04:44 +02:00
|
|
|
WRKSRC= ${WRKDIR}/BitchX
|
2000-01-22 05:56:41 +01:00
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
USE_GMAKE= yes
|
|
|
|
.if defined(USE_GNOME)
|
|
|
|
CONFIGURE_ARGS+= --with-plugins --with-gtk --enable-sound
|
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+= --with-plugins --without-gtk
|
|
|
|
.endif
|
|
|
|
CONFIGURE_ARGS+= --exec-prefix="${PREFIX}/share" \
|
|
|
|
--bindir="${PREFIX}/bin" \
|
|
|
|
--datadir="${PREFIX}/share" \
|
|
|
|
--libdir="${PREFIX}/share"
|
|
|
|
|
|
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
|
|
GLIB_CONFIG="${GLIB_CONFIG}" \
|
|
|
|
GTK_CONFIG="${GTK_CONFIG}"
|
1998-04-18 04:04:44 +02:00
|
|
|
|
2000-01-22 05:56:41 +01:00
|
|
|
MAKE_ENV+= INSTALL_PROGRAM="${INSTALL_PROGRAM}" \
|
|
|
|
INSTALL_DATA="${INSTALL_DATA}"
|
1999-06-27 18:16:16 +02:00
|
|
|
|
2000-01-22 05:56:41 +01:00
|
|
|
.if !defined(USE_GNOME)
|
|
|
|
pre-extract:
|
|
|
|
@${ECHO} "You can add hooks for GNOME by defining USE_GNOME"
|
|
|
|
.endif
|
|
|
|
|
|
|
|
# Horrible hack to remove bogus CR's at the end of this file
|
1998-04-18 04:04:44 +02:00
|
|
|
post-patch:
|
2000-01-22 05:56:41 +01:00
|
|
|
@${PERL} -pi -e 's,\r$$,,' ${WRKSRC}/script/menu.bx
|
|
|
|
|
|
|
|
post-install:
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
|
|
${MKDIR} ${PREFIX}/share/bx/help
|
|
|
|
${MKDIR} ${PREFIX}/share/doc/bitchx
|
|
|
|
${TAR} --directory ${WRKSRC}/bitchx-docs -cf - . --exclude CVS | \
|
|
|
|
${TAR} --directory ${PREFIX}/share/bx/help -xf -
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/doc/bxfaq.html ${PREFIX}/share/doc/bitchx
|
|
|
|
.endif
|
|
|
|
.if defined(USE_GNOME)
|
|
|
|
@${ECHO} bin/gtkBitchX >> ${TMPPLIST}
|
|
|
|
@${ECHO} bin/gtkBitchX-1.0c15 >> ${TMPPLIST}
|
|
|
|
@${ECHO} share/bx/plugins/nicklist.so >> ${TMPPLIST}
|
|
|
|
.else
|
|
|
|
@${ECHO} bin/BitchX >> ${TMPPLIST}
|
|
|
|
@${ECHO} bin/BitchX-1.0c15 >> ${TMPPLIST}
|
|
|
|
@${ECHO} bin/scr-bx >> ${TMPPLIST}
|
|
|
|
@${ECHO} share/bx/wserv >> ${TMPPLIST}
|
|
|
|
.endif
|
|
|
|
@${ECHO} @dirrm share/bx/help >> ${TMPPLIST}
|
|
|
|
@${ECHO} @dirrm share/bx/plugins >> ${TMPPLIST}
|
|
|
|
@${ECHO} @dirrm share/bx/script >> ${TMPPLIST}
|
|
|
|
@${ECHO} @dirrm share/bx/translation >> ${TMPPLIST}
|
|
|
|
@${ECHO} @dirrm share/bx >> ${TMPPLIST}
|
1998-04-18 04:04:44 +02:00
|
|
|
|
|
|
|
.include <bsd.port.mk>
|