diff options
author | rillig <rillig@pkgsrc.org> | 2006-10-22 17:55:41 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-10-22 17:55:41 +0000 |
commit | d90c0d8ed4c10ee9f82a5cbd95a60d386733ba0e (patch) | |
tree | 2938a20395a444ce772d1dfc29373d7c3c2d230c /emulators | |
parent | 00ce44a026c7103aa38abb7da4ad6baa863aea19 (diff) | |
download | pkgsrc-d90c0d8ed4c10ee9f82a5cbd95a60d386733ba0e.tar.gz |
Fixed "test ==".
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/ucon64/Makefile | 7 | ||||
-rw-r--r-- | emulators/ucon64/distinfo | 3 | ||||
-rw-r--r-- | emulators/ucon64/patches/patch-ag | 22 |
3 files changed, 27 insertions, 5 deletions
diff --git a/emulators/ucon64/Makefile b/emulators/ucon64/Makefile index e958b095f9b..e9e1f2e9534 100644 --- a/emulators/ucon64/Makefile +++ b/emulators/ucon64/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2006/03/22 22:50:32 tv Exp $ +# $NetBSD: Makefile,v 1.4 2006/10/22 17:55:41 rillig Exp $ # DISTNAME= ucon64-2.0.0-src @@ -19,12 +19,11 @@ CPPFLAGS+= -D__unix__ GNU_CONFIGURE= yes USE_TOOLS+= gmake +INSTALLATION_DIRS= share/examples/ucon64 share/doc/ucon64/images + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/ucon64 ${PREFIX}/bin/ - ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/ucon64 ${INSTALL_DATA} ${WRKSRC}/[a-z]*.txt ${PREFIX}/share/examples/ucon64/ - ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/ucon64 \ - ${PREFIX}/share/doc/ucon64/images ${INSTALL_DATA} ${WRKDIR}/${DISTNAME}/*.html \ ${PREFIX}/share/doc/ucon64/ ${INSTALL_DATA} ${WRKDIR}/${DISTNAME}/images/* \ diff --git a/emulators/ucon64/distinfo b/emulators/ucon64/distinfo index 9b0dd246f74..4d8ec381407 100644 --- a/emulators/ucon64/distinfo +++ b/emulators/ucon64/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.2 2005/12/09 11:48:11 joerg Exp $ +$NetBSD: distinfo,v 1.3 2006/10/22 17:55:41 rillig Exp $ SHA1 (ucon64-2.0.0-src.tar.gz) = 8782bbc2bf5760fafe3fa4cd02b67991d984a973 RMD160 (ucon64-2.0.0-src.tar.gz) = c28921cfae1a010db917b96be542c089690b374c @@ -9,3 +9,4 @@ SHA1 (patch-ac) = 9c7febe59e1c8e6959f56e34ced83a31fa54c294 SHA1 (patch-ad) = c41895de15bc2a48bf5de1535f03d070ade79ea3 SHA1 (patch-ae) = bfb38ecec2408deaaef881fa33943e2c45bccd4d SHA1 (patch-af) = 5fea372717e49f3d161c544e5ee01a8d23d688ba +SHA1 (patch-ag) = 300fabd67fb114f9280980461cd5d3d9eed2831a diff --git a/emulators/ucon64/patches/patch-ag b/emulators/ucon64/patches/patch-ag new file mode 100644 index 00000000000..a8156a9c76b --- /dev/null +++ b/emulators/ucon64/patches/patch-ag @@ -0,0 +1,22 @@ +$NetBSD: patch-ag,v 1.1 2006/10/22 17:55:41 rillig Exp $ + +--- install_beos.sh.orig 2003-05-21 16:21:12.000000000 +0200 ++++ install_beos.sh 2006-10-22 19:39:20.000000000 +0200 +@@ -7,7 +7,7 @@ areply=$(alert "This will start installa + uCON64 will be installed in $HOME/config/bin. + + Do you want to continue?" "Cancel" "Install") +-if [ "$areply" == "Install" ]; then ++if [ "$areply" = "Install" ]; then + cp ucon64 "$HOME/config/bin" + if [ ! -e "$HOME/.ucon64" ]; then + mkdir "$HOME/.ucon64" +@@ -24,7 +24,7 @@ if [ "$areply" == "Install" ]; then + drreply=$(alert "In order to communicate with a backup device (\"copier\") uCON64 needs the BeOS ioport driver by Caz Jones. You needn't install it if you don't want to use uCON64 for communicating with a copier. + + Would you like to do install it?" "No" "Yes, install driver") +- if [ "$drreply" == "Yes, install driver" ]; then ++ if [ "$drreply" = "Yes, install driver" ]; then + if [ -e "$HOME/ioport" ]; then + cd "$HOME/ioport/driver" + install_ioport |