pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/emulators/e-uae Fixed "test ==" and a pkglint warning.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/23bb36af0818
branches:  trunk
changeset: 520507:23bb36af0818
user:      rillig <rillig%pkgsrc.org@localhost>
date:      Sun Oct 22 19:38:58 2006 +0000

description:
Fixed "test ==" and a pkglint warning.

diffstat:

 emulators/e-uae/Makefile         |   4 ++--
 emulators/e-uae/distinfo         |   3 ++-
 emulators/e-uae/patches/patch-ah |  22 ++++++++++++++++++++++
 3 files changed, 26 insertions(+), 3 deletions(-)

diffs (56 lines):

diff -r 05f082a9a9f7 -r 23bb36af0818 emulators/e-uae/Makefile
--- a/emulators/e-uae/Makefile  Sun Oct 22 18:51:32 2006 +0000
+++ b/emulators/e-uae/Makefile  Sun Oct 22 19:38:58 2006 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2006/06/12 16:28:06 wiz Exp $
+# $NetBSD: Makefile,v 1.5 2006/10/22 19:38:58 rillig Exp $
 
 DISTNAME=      e-uae-0.8.28
 PKGREVISION=   2
@@ -10,7 +10,7 @@
 HOMEPAGE=      http://www.rcdrummond.net/uae/
 COMMENT=       Enhanced Ubiquitous Amiga Emulator
 
-CONFLICTS+=    uae-*
+CONFLICTS+=    uae-[0-9]*
 
 USE_LIBTOOL=           yes
 USE_TOOLS+=            gmake
diff -r 05f082a9a9f7 -r 23bb36af0818 emulators/e-uae/distinfo
--- a/emulators/e-uae/distinfo  Sun Oct 22 18:51:32 2006 +0000
+++ b/emulators/e-uae/distinfo  Sun Oct 22 19:38:58 2006 +0000
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.1.1.1 2006/01/24 20:21:46 adam Exp $
+$NetBSD: distinfo,v 1.2 2006/10/22 19:38:58 rillig Exp $
 
 SHA1 (e-uae-0.8.28.tar.bz2) = 11e647ed64420f85893ac77c072e268b650ae183
 RMD160 (e-uae-0.8.28.tar.bz2) = 7e9fa21fa14b0ca3a32a28ccb236b9d7628a7f69
 Size (e-uae-0.8.28.tar.bz2) = 1148790 bytes
 SHA1 (patch-ab) = dfce48dafb163b91c7252da14088e67b3e13bb6c
+SHA1 (patch-ah) = 6f83d380dd0a44cdb9dd4316ca72f90b7b1df644
diff -r 05f082a9a9f7 -r 23bb36af0818 emulators/e-uae/patches/patch-ah
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/emulators/e-uae/patches/patch-ah  Sun Oct 22 19:38:58 2006 +0000
@@ -0,0 +1,22 @@
+$NetBSD: patch-ah,v 1.1 2006/10/22 19:38:58 rillig Exp $
+
+--- src/install_libscg.orig    2004-05-19 03:21:12.000000000 +0200
++++ src/install_libscg 2006-10-22 21:34:07.000000000 +0200
+@@ -10,7 +10,7 @@
+ #
+ # check arguments
+ #
+-if [ $# -lt 1 ] || [ $# -gt 3 ] || [ "$1" == "--help" ]; then
++if [ $# -lt 1 ] || [ $# -gt 3 ] || [ "$1" = "--help" ]; then
+     echo "usage: $0 <cdrtools dir> <machine type (optional)>"
+     exit 0
+ fi
+@@ -32,7 +32,7 @@ else
+         echo "please specify your machine type - libscg was compiled for:"
+         echo "$machine"
+         exit 10
+-    elif [ "$machine"x == x ]; then
++    elif [ "$machine"x = x ]; then
+         echo "please compile cdrecord for your machine first"
+         exit 10
+     fi



Home | Main Index | Thread Index | Old Index