diff options
author | adam <adam@pkgsrc.org> | 2004-02-13 13:36:43 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2004-02-13 13:36:43 +0000 |
commit | b59ea890428273feb010aa11d4de74ad1dfb64b7 (patch) | |
tree | 4a4cc6b644e9fb6d96f35cb5f224f37bb5d115d1 /emulators/libspectrum/Makefile | |
parent | 1d220f5614feba98eaccf829265f95b5ee4882f6 (diff) | |
download | pkgsrc-b59ea890428273feb010aa11d4de74ad1dfb64b7.tar.gz |
Changes 0.2.1:
* Transparent reading of bzipped and gzipped files.
* Add support for writing emulator custom data to .rzx and .szx files.
* Update to the more recent version of gcrypt; version 1.1.42 or
later is now required.
* Link libspectrum against gcrypt, glib and zlib; this means that
client applications no longer need to do this.
* Support for 'the last instruction was an EI' in the snapshot code.
* Routines to check the versions of libspectrum and gcrypt in use.
* Write .rzx files with a version number of 0.12 if we're not
signing the data; improves backward compatability.
* Fix a segfault when dealing with .slt files.
* QNX6 compilation fixes.
Diffstat (limited to 'emulators/libspectrum/Makefile')
-rw-r--r-- | emulators/libspectrum/Makefile | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/emulators/libspectrum/Makefile b/emulators/libspectrum/Makefile index 9f84b4f7bf9..edcbd3dea37 100644 --- a/emulators/libspectrum/Makefile +++ b/emulators/libspectrum/Makefile @@ -1,21 +1,19 @@ -# $NetBSD: Makefile,v 1.5 2003/10/14 10:12:02 salo Exp $ +# $NetBSD: Makefile,v 1.6 2004/02/13 13:36:43 adam Exp $ # -DISTNAME= libspectrum-0.2.0.1 +DISTNAME= libspectrum-0.2.1 CATEGORIES= emulators -MASTER_SITES= http://www.srcf.ucam.org/~pak21/spectrum/ +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=fuse-emulator/} MAINTAINER= adam@NetBSD.org -HOMEPAGE= http://www.srcf.ucam.org/~pak21/spectrum/libspectrum.html +HOMEPAGE= http://fuse-emulator.sourceforge.net/libspectrum.php COMMENT= ZX Spectrum emulator file format library -USE_PERL5= build -USE_BUILDLINK2= YES -USE_LIBTOOL= YES -GNU_CONFIGURE= YES - +USE_PERL5= build +USE_BUILDLINK2= yes +USE_LIBTOOL= yes LIBTOOL_OVERRIDE= ${WRKSRC}/libtool - +GNU_CONFIGURE= yes CONFIGURE_ENV+= PERL=${PERL5} DOCDIR= ${PREFIX}/share/doc/libspectrum @@ -24,7 +22,9 @@ post-install: ${INSTALL_DATA_DIR} ${DOCDIR} ${INSTALL_DATA} ${WRKSRC}/doc/libspectrum.txt ${DOCDIR} -.include "../../devel/glib/buildlink2.mk" +.include "../../devel/glib2/buildlink2.mk" +.include "../../devel/zlib/buildlink2.mk" .include "../../lang/perl5/buildlink2.mk" +.include "../../security/libgcrypt/buildlink2.mk" .include "../../mk/bsd.pkg.mk" |