diff options
author | marino <marino@pkgsrc.org> | 2012-08-07 20:18:20 +0000 |
---|---|---|
committer | marino <marino@pkgsrc.org> | 2012-08-07 20:18:20 +0000 |
commit | 249dd0441f9dc94ce4f804356ac8c0a30b1b82cf (patch) | |
tree | bb363f1adfc6e6a870723e7733b1abc0d9f2d0bd /audio | |
parent | 182460d3dcf62ae85d5f6ba689d155a5d91c35b5 (diff) | |
download | pkgsrc-249dd0441f9dc94ce4f804356ac8c0a30b1b82cf.tar.gz |
audio/xmcd: Fix FreeBSD && regression on DragonFly
FreeBSD deprecated and removed libmytinfo years ago (before that it was
an alias for -lcurses). DragonFly recently followed suit and consequently
this package broke.
Patch taken from FreeBSD ports -- it fixed DragonFly too.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/xmcd/distinfo | 10 | ||||
-rw-r--r-- | audio/xmcd/patches/patch-ab | 16 |
2 files changed, 17 insertions, 9 deletions
diff --git a/audio/xmcd/distinfo b/audio/xmcd/distinfo index 0048d5b2c75..4ce6b72de24 100644 --- a/audio/xmcd/distinfo +++ b/audio/xmcd/distinfo @@ -1,13 +1,13 @@ -$NetBSD: distinfo,v 1.16 2012/05/04 16:01:53 joerg Exp $ +$NetBSD: distinfo,v 1.17 2012/08/07 20:18:20 marino Exp $ -SHA1 (xmcd-3.0.2.tar.gz) = 10258f299f917c94780d3e6d9feb57535d4603b5 -RMD160 (xmcd-3.0.2.tar.gz) = 9fbee32681e8df4623a06b49ee64ac328478623b -Size (xmcd-3.0.2.tar.gz) = 690285 bytes SHA1 (xmcd-3.0.2-proxyauth-patch) = a6114c73e5470747fe2dcfe16cb11bc7c5e5b4dd RMD160 (xmcd-3.0.2-proxyauth-patch) = 405be2eefaaf51fc029828d5850b9f5c78cef5b2 Size (xmcd-3.0.2-proxyauth-patch) = 2922 bytes +SHA1 (xmcd-3.0.2.tar.gz) = 10258f299f917c94780d3e6d9feb57535d4603b5 +RMD160 (xmcd-3.0.2.tar.gz) = 9fbee32681e8df4623a06b49ee64ac328478623b +Size (xmcd-3.0.2.tar.gz) = 690285 bytes SHA1 (patch-aa) = 0a446d2943dd9ac9d66938674daa16d1d629e470 -SHA1 (patch-ab) = 2721877c17a7e810a4039be7056d015b87d94273 +SHA1 (patch-ab) = 35c9d7cfecbd276a034598375c033c0dd510acdf SHA1 (patch-ac) = 19440a72fda657bf73811c20aabab5c955369516 SHA1 (patch-ad) = afddba8e5a6070a54131ce2530479d4add9e19a4 SHA1 (patch-ae) = 3de0e9fd004fcb6012f033739ff1b66bd059d655 diff --git a/audio/xmcd/patches/patch-ab b/audio/xmcd/patches/patch-ab index fd0e4a70f74..2ff747d360e 100644 --- a/audio/xmcd/patches/patch-ab +++ b/audio/xmcd/patches/patch-ab @@ -1,6 +1,7 @@ -$NetBSD: patch-ab,v 1.12 2003/06/13 10:55:26 cjep Exp $ ---- cda_d/Imakefile.orig Wed Aug 8 01:15:13 2001 -+++ cda_d/Imakefile Tue Jun 10 13:29:21 2003 +$NetBSD: patch-ab,v 1.13 2012/08/07 20:18:20 marino Exp $ + +--- cda_d/Imakefile.orig 2001-08-08 00:15:13.000000000 +0000 ++++ cda_d/Imakefile @@ -53,7 +53,13 @@ DEFINES= -DBSDCOMPAT -DUSE_TERMIOS #else @@ -16,7 +17,14 @@ $NetBSD: patch-ab,v 1.12 2003/06/13 10:55:26 cjep Exp $ #else #if defined(__bsdi__) .if exists(/usr/include/ncurses.h) -@@ -127,11 +133,16 @@ +@@ -121,17 +127,22 @@ LOCAL_LIBRARIES=-L/usr/5lib -lcurses + LOCAL_LIBRARIES=-lncurses + #else + #if defined(FreeBSDArchitecture) +-LOCAL_LIBRARIES=-lncurses -lmytinfo ++LOCAL_LIBRARIES=-lncurses + .if exists(/usr/include/camlib.h) + LOCAL_LIBRARIES+= -lcam .endif #else #if defined(NetBSDArchitecture) |