diff options
author | taoka <taoka@FreeBSD.org> | 1999-04-30 17:08:25 +0000 |
---|---|---|
committer | taoka <taoka@FreeBSD.org> | 1999-04-30 17:08:25 +0000 |
commit | 1ad141bf3c97db3c33a176cd8823a8a80e6888ab (patch) | |
tree | 736df612c01cd7515f79927085f95713b19ca4bf /irc/irssi/Makefile | |
parent | 79714d2e91c33f48aa063299c6ebcb1b190f32cb (diff) | |
download | FreeBSD-ports-1ad141bf3c97db3c33a176cd8823a8a80e6888ab.zip FreeBSD-ports-1ad141bf3c97db3c33a176cd8823a8a80e6888ab.tar.gz |
an IRC client that uses GTK+ and (optionally) GNOME
PR: 11120
Submitted by: Jim Mock <jim@phrantic.phear.net>
Diffstat (limited to 'irc/irssi/Makefile')
-rw-r--r-- | irc/irssi/Makefile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/irc/irssi/Makefile b/irc/irssi/Makefile new file mode 100644 index 0000000..69677e4 --- /dev/null +++ b/irc/irssi/Makefile @@ -0,0 +1,40 @@ +# New ports collection makefile for: irssi +# Version required: 0.7.8 +# Date created: 14 Apr 1999 +# Whom: Jim Mock <jim@phrantic.phear.net> +# +# $Id$ +# + +DISTNAME= irssi-0.7.8 +CATEGORIES= net +MASTER_SITES= http://www.sicom.fi/~ikioma/irssi/ + +MAINTAINER= jim@phrantic.phear.net + +LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 + +USE_BZIP2= yes +USE_GMAKE= yes +USE_PERL5= yes +USE_X_PREFIX= yes + +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --without-gnome --without-dock --without-pthreads \ + --without-socks --with-textui=none +CONFIGURE_ENV= GTK_CONFIG="${X11BASE}/bin/gtk12-config" \ + GLIB_CONFIG="${LOCALBASE}/bin/glib12-config" + +post-install: + @${ECHO} " " + @${ECHO} "---------------------------------------------------------------------------" + @${ECHO} "===> Installing example irssi.conf to ${PREFIX}/share/examples/irssi" + @${ECHO} "===> You will find a ~/.irssi.conf after running irssi for the first time." + @${ECHO} "---------------------------------------------------------------------------" + @${ECHO} " " + @${MKDIR} ${PREFIX}/share/examples/irssi && chmod a+rx ${PREFIX}/share/examples/irssi + ${INSTALL_DATA} ${WRKSRC}/irssi.conf ${PREFIX}/share/examples/irssi + strip ${PREFIX}/bin/irssi + strip ${PREFIX}/bin/irssi-bot + +.include <bsd.port.mk> |