diff options
author | wiz <wiz> | 2002-09-11 20:47:14 +0000 |
---|---|---|
committer | wiz <wiz> | 2002-09-11 20:47:14 +0000 |
commit | cf1383f765811d68482fff3caab138a6fc1f9d87 (patch) | |
tree | 8c483a0f086dece9d8419b40ffe1a3b68eb0cbd1 /net/dctc/Makefile | |
parent | 5638ed6db19bef2a5672c8afe1ef6a543199a944 (diff) | |
download | pkgsrc-cf1383f765811d68482fff3caab138a6fc1f9d87.tar.gz |
Initial import of dctc (Direct Connect Text Client) and its GUI, dc_gui
(Direct Connect GUI). Requested by reed some months ago ;)
DC is another file sharing protocol.
Diffstat (limited to 'net/dctc/Makefile')
-rw-r--r-- | net/dctc/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/net/dctc/Makefile b/net/dctc/Makefile new file mode 100644 index 00000000000..7e09934f85e --- /dev/null +++ b/net/dctc/Makefile @@ -0,0 +1,28 @@ +# $NetBSD: Makefile,v 1.1.1.1 2002/09/11 20:47:14 wiz Exp $ +# + +DISTNAME= dctc-0.83.3 +CATEGORIES= net +MASTER_SITES= http://www.ac2i.tzo.com/dctc/ + +MAINTAINER= packages@netbsd.org +HOMEPAGE= http://www.ac2i.tzo.com/dctc/ +COMMENT= Direct Connect clone (Direct Connect Text Client) + +GNU_CONFIGURE= YES +USE_BUILDLINK2= YES +CONFIGURE_ARGS+= --enable-manual-db-detect +REPLACE_PERL= GDLjoiner +USE_PERL5= YES + +post-configure: + @${ECHO} '#ifndef MSG_NOSIGNAL' >> ${WRKSRC}/config.h + @${ECHO} '# define MSG_NOSIGNAL 0' >> ${WRKSRC}/config.h + @${ECHO} '#endif' >> ${WRKSRC}/config.h + @${ECHO} '#ifndef ENODATA' >> ${WRKSRC}/config.h + @${ECHO} '# define ENODATA ENOMSG' >> ${WRKSRC}/config.h + @${ECHO} '#endif' >> ${WRKSRC}/config.h + +.include "../../databases/db4/buildlink2.mk" +.include "../../devel/glib/buildlink2.mk" +.include "../../mk/bsd.pkg.mk" |