summaryrefslogtreecommitdiff
path: root/chat/bitlbee/Makefile
diff options
context:
space:
mode:
authorjmmv <jmmv@pkgsrc.org>2003-07-02 09:03:02 +0000
committerjmmv <jmmv@pkgsrc.org>2003-07-02 09:03:02 +0000
commit15eb2eeaf78b213718759e382d53f696fc8dd24f (patch)
tree9cab5a447e03e715143ffc794e2afacc5dc59cb3 /chat/bitlbee/Makefile
parent3232ab6f43a4a0b03e758226859ac27f3ceb95c7 (diff)
downloadpkgsrc-15eb2eeaf78b213718759e382d53f696fc8dd24f.tar.gz
Initial import of bitlbee, version 0.80:
bitlbee is an IRC gateway to other chat networks. It provides an IRC server where users connect to and have access to all their contacts in ICQ, MSN, Jabber or even IRC itself. Protocols are implemented using Gaim's code. Multiple users are supported too, where each one has its own set of accounts and contacts. Provided by Juan RP in pkgsrc-wip with some changes by me.
Diffstat (limited to 'chat/bitlbee/Makefile')
-rw-r--r--chat/bitlbee/Makefile46
1 files changed, 46 insertions, 0 deletions
diff --git a/chat/bitlbee/Makefile b/chat/bitlbee/Makefile
new file mode 100644
index 00000000000..5c21ed37214
--- /dev/null
+++ b/chat/bitlbee/Makefile
@@ -0,0 +1,46 @@
+# $NetBSD: Makefile,v 1.1.1.1 2003/07/02 09:03:02 jmmv Exp $
+#
+
+DISTNAME= bitlbee-0.80
+CATEGORIES= chat
+MASTER_SITES= http://www.lintux.cx/downloads/
+
+MAINTAINER= jrp@hispabsd.org
+HOMEPAGE= http://www.lintux.cx/downloads/
+COMMENT= IRC to other chat networks gateway
+
+USE_BUILDLINK2= yes
+HAS_CONFIGURE= yes
+USE_GMAKE= yes
+USE_PKGINSTALL= yes
+
+CONFIGURE_ARGS+= --prefix=${PREFIX}
+CONFIGURE_ARGS+= --bindir=${PREFIX}/sbin
+CONFIGURE_ARGS+= --etcdir=${PKG_SYSCONFDIR}
+CONFIGURE_ARGS+= --datadir=${DATADIR}
+CONFIGURE_ARGS+= --config=${STATEDIR}
+
+PKG_SYSCONFSUBDIR= bitlbee
+CONF_FILES= ${DATADIR}/motd.txt ${PKG_SYSCONFDIR}/motd.txt
+
+DATADIR= ${PREFIX}/share/bitlbee
+DOCDIR= ${PREFIX}/share/doc/bitlbee
+STATEDIR= /var/db/bitlbee
+
+OWN_DIRS_PERMS= ${STATEDIR} bitlbee nobody 700
+
+PKG_USERS= bitlbee:nobody::Bitlbee\\ user:/var/db/bitlbee
+
+do-install:
+ ${INSTALL_DATA_DIR} ${DATADIR} ${DOCDIR}
+ ${INSTALL_PROGRAM} ${WRKSRC}/bitlbee ${PREFIX}/sbin
+ ${INSTALL_DATA} ${WRKSRC}/help.txt ${DATADIR}
+ ${INSTALL_DATA} ${WRKSRC}/motd.txt ${DATADIR}
+ ${INSTALL_MAN} ${WRKSRC}/doc/bitlbee.8 ${PREFIX}/man/man8
+.for f in AUTHORS FAQ README TODO
+ ${INSTALL_DATA} ${WRKSRC}/doc/${f} ${DOCDIR}
+.endfor
+.undef f
+
+.include "../../devel/glib/buildlink2.mk"
+.include "../../mk/bsd.pkg.mk"