diff options
author | Neil Blakey-Milner <nbm@FreeBSD.org> | 2000-07-31 15:31:16 +0000 |
---|---|---|
committer | Neil Blakey-Milner <nbm@FreeBSD.org> | 2000-07-31 15:31:16 +0000 |
commit | 3638ee2d00b57682468ca2b4253dfa45e4deeac4 (patch) | |
tree | 50e4ec38da757b682b17aca29bf083821ebe14c8 /irc/ircatlite/Makefile | |
parent | Add adasockets, an Ada interface to using sockets. (diff) |
Add ircatlite, a GTK+ IRC client.
PR: ports/18570
Submitted by: Yoshikazu GOTO <goto@snowy.to>
Notes
Notes:
svn path=/head/; revision=31170
Diffstat (limited to 'irc/ircatlite/Makefile')
-rw-r--r-- | irc/ircatlite/Makefile | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/irc/ircatlite/Makefile b/irc/ircatlite/Makefile new file mode 100644 index 000000000000..5bc1b36a61e2 --- /dev/null +++ b/irc/ircatlite/Makefile @@ -0,0 +1,41 @@ +# New ports collection makefile for: IRcatLite-r20000308 +# Date Created: May 14 2000 +# Whom: Yoshikazu GOTO <goto@snowy.to> +# +# $FreeBSD$ +# + +PORTNAME= ircatlite +PORTVERSION= 2000.03.08 +CATEGORIES= irc +MASTER_SITES= http://www.pp.iij4u.or.jp/~tagami/gtk/ +DISTNAME= IRcatLite-r20000308 + +MAINTAINER= goto@snowy.to + +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 + +GNU_CONFIGURE= yes +CONFIGURE_ARGS+=--with-gtk-config=gtk12-config + +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config + +USE_X_PREFIX= yes +MAKE_ENV= GTK_CONFIG="${GTK_CONFIG}" + +DOCS= LICENSE INSTALL INSTALL.jp README README.jp + +WRKSRC= ${WRKDIR}/${PORTNAME} + +.include <bsd.port.pre.mk> + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/src/ircat ${PREFIX}/bin/ircat +.if !defined(NOPORTDOCS) + @${MKDIR} ${PREFIX}/share/doc/IRcatLite +.for file in ${DOCS} + ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/IRcatLite +.endfor +.endif + +.include <bsd.port.post.mk> |