diff options
author | adam <adam@pkgsrc.org> | 2011-03-18 10:50:46 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2011-03-18 10:50:46 +0000 |
commit | 953cc6765c5a34863fa0fc2c70f24b137422a784 (patch) | |
tree | 443df894f24540e70a55514f3c7329336a1428cc /x11/dxpc/Makefile | |
parent | 0ba6330c860fa8b2eec4bfab95afde0387ac0078 (diff) | |
download | pkgsrc-953cc6765c5a34863fa0fc2c70f24b137422a784.tar.gz |
Changes 3.9.2:
* Improved pidfile handling code contributed by Jay Berkenbilt.
Changes 3.9.1:
* Fix assertion failure on 64-bit architectures using LZO 2.0+.
* Clean up harmless compiler warnings in ClientMultiplexer and
ServerMultiplexer.
Changes 3.9.0:
* Re-implemented EncodeBuffer/DecodeBuffer to use considerably less CPU and
very slightly improve compression.
* Builds with LZO 2.0 release.
* Compiles under the Mingw environment to create native Win32 binaries.
* Added dxpcssh sample script courtesy of Wicher Minnaard.
* Added dxpc.spec file contributed by Daniel Mealha Cabrita.
* Fixed some small memory leaks and potential buffer overruns.
* Indented all sources.
Diffstat (limited to 'x11/dxpc/Makefile')
-rw-r--r-- | x11/dxpc/Makefile | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/x11/dxpc/Makefile b/x11/dxpc/Makefile index cbe862b6fcb..47b3ace1ea0 100644 --- a/x11/dxpc/Makefile +++ b/x11/dxpc/Makefile @@ -1,22 +1,24 @@ -# $NetBSD: Makefile,v 1.29 2009/07/07 18:30:27 joerg Exp $ +# $NetBSD: Makefile,v 1.30 2011/03/18 10:50:46 adam Exp $ -DISTNAME= dxpc-3.8.2 -PKGREVISION= 1 +DISTNAME= dxpc-3.9.2 CATEGORIES= x11 -MASTER_SITES= http://www.vigor.nu/dxpc/3.8.2/ +MASTER_SITES= http://www.vigor.nu/dxpc/ +EXTRACT_SUFX= .tgz MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.vigor.nu/dxpc/ COMMENT= Differential X Protocol Compressor +LICENSE= 2-clause-bsd PKG_DESTDIR_SUPPORT= user-destdir -GNU_CONFIGURE= yes USE_LANGUAGES= c c++ +USE_TOOLS+= gmake +GNU_CONFIGURE= yes -INSTALL_MAKE_FLAGS+= bindir=${DESTDIR}${PREFIX}/bin \ - man1dir=${DESTDIR}${PREFIX}/${PKGMANDIR}/man1 +INSTALL_MAKE_FLAGS+= bindir=${DESTDIR}${PREFIX}/bin +INSTALL_MAKE_FLAGS+= man1dir=${DESTDIR}${PREFIX}/${PKGMANDIR}/man1 -.include "../../archivers/liblzo/buildlink3.mk" +.include "../../archivers/lzo/buildlink3.mk" .include "../../x11/xproto/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |