diff options
author | wiz <wiz@pkgsrc.org> | 2011-12-19 15:03:18 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2011-12-19 15:03:18 +0000 |
commit | 071a652c1e34d1dc2abbea682376054764c34661 (patch) | |
tree | 089225b0597f2f87f4817d649c4d725bfef00e7d /emulators | |
parent | 526b4e6d6dc5a6990a80ad6b92921f07106196c5 (diff) | |
download | pkgsrc-071a652c1e34d1dc2abbea682376054764c34661.tar.gz |
Fix libaudiofile recognition. Re-adds two executables that were not built.
Since this broke packaging, no PKGREVISION bump necessary.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/fuse-utils/Makefile | 4 | ||||
-rw-r--r-- | emulators/fuse-utils/distinfo | 3 | ||||
-rw-r--r-- | emulators/fuse-utils/patches/patch-configure | 21 |
3 files changed, 26 insertions, 2 deletions
diff --git a/emulators/fuse-utils/Makefile b/emulators/fuse-utils/Makefile index a553ccd2f2c..1121204f0ef 100644 --- a/emulators/fuse-utils/Makefile +++ b/emulators/fuse-utils/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 2011/04/22 13:43:28 obache Exp $ +# $NetBSD: Makefile,v 1.20 2011/12/19 15:03:18 wiz Exp $ DISTNAME= fuse-utils-1.0.0 PKGREVISION= 1 @@ -16,6 +16,8 @@ USE_LANGUAGES= c c++ USE_TOOLS+= pkg-config GNU_CONFIGURE= yes +CONFIGURE_ENV+= ac_cv_path_AUDIOFILE_CONFIG="pkg-config audiofile" + LIBS+= -lgcrypt LIBS+= -lgpg-error diff --git a/emulators/fuse-utils/distinfo b/emulators/fuse-utils/distinfo index 7491c793b9c..64491c4ffe7 100644 --- a/emulators/fuse-utils/distinfo +++ b/emulators/fuse-utils/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.9 2010/12/20 20:54:35 adam Exp $ +$NetBSD: distinfo,v 1.10 2011/12/19 15:03:18 wiz Exp $ SHA1 (fuse-utils-1.0.0.tar.gz) = f865c099aae7f0a751f43714700968a31cea3fbc RMD160 (fuse-utils-1.0.0.tar.gz) = 399441c92d0c08d971128a4355b5f50424a12c4e Size (fuse-utils-1.0.0.tar.gz) = 415310 bytes +SHA1 (patch-configure) = bfcc95f0a558f0d10037c9ac125021171f641b67 diff --git a/emulators/fuse-utils/patches/patch-configure b/emulators/fuse-utils/patches/patch-configure new file mode 100644 index 00000000000..46929f2d7c6 --- /dev/null +++ b/emulators/fuse-utils/patches/patch-configure @@ -0,0 +1,21 @@ +$NetBSD: patch-configure,v 1.1 2011/12/19 15:03:18 wiz Exp $ + +Fix build with audiofile-0.3+. + +--- configure.orig 2011-12-19 14:59:05.000000000 +0000 ++++ configure +@@ -15386,11 +15386,11 @@ $as_echo_n "checking for Audio File Libr + AUDIOFILE_LIBS=`$AUDIOFILE_CONFIG $audiofileconf_args --libs` + AUDIOFILE_CFLAGS=`$AUDIOFILE_CONFIG $audiofileconf_args --cflags` + audiofile_major_version=`$AUDIOFILE_CONFIG $audiofile_args --version | \ +- sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\1/'` ++ sed 's/\([0-9]*\).\([0-9]\)\([0-9]*\)/\1/'` + audiofile_minor_version=`$AUDIOFILE_CONFIG $audiofile_args --version | \ +- sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\2/'` ++ sed 's/\([0-9]*\).\([0-9]\)\([0-9]*\)/\2/'` + audiofile_micro_version=`$AUDIOFILE_CONFIG $audiofile_config_args --version | \ +- sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\3/'` ++ sed 's/\([0-9]*\).\([0-9]\)\([0-9]*\)/\3/'` + if test "x$enable_audiofiletest" = "xyes" ; then + + ac_ext=c |