diff options
author | sbd <sbd@pkgsrc.org> | 2012-01-30 01:34:38 +0000 |
---|---|---|
committer | sbd <sbd@pkgsrc.org> | 2012-01-30 01:34:38 +0000 |
commit | 8875efefb4f5ab0f3182a9264d90361ced566c13 (patch) | |
tree | 73caf0d49a4bc9753d5a86e1b77471b5b21dd1a5 | |
parent | 5d6a9f8992a17f2e8ba0d015a72276b1db306dc1 (diff) | |
download | pkgsrc-8875efefb4f5ab0f3182a9264d90361ced566c13.tar.gz |
In server/Imakefile add a target for $(VOXWARELIBS) that call make for
the targets directory.
This should fix the occasional problem were make complains with
"don't know how to make dda/voxware/libvoxware.a"
-rw-r--r-- | audio/nas/distinfo | 4 | ||||
-rw-r--r-- | audio/nas/patches/patch-ab | 21 |
2 files changed, 20 insertions, 5 deletions
diff --git a/audio/nas/distinfo b/audio/nas/distinfo index e9a2e6d62a0..77c05f5a98b 100644 --- a/audio/nas/distinfo +++ b/audio/nas/distinfo @@ -1,10 +1,10 @@ -$NetBSD: distinfo,v 1.27 2009/07/09 19:10:25 hasso Exp $ +$NetBSD: distinfo,v 1.28 2012/01/30 01:34:38 sbd Exp $ SHA1 (nas-1.9.1.src.tar.gz) = 1207a821676ca1b763a47e3c278262a64a626ba3 RMD160 (nas-1.9.1.src.tar.gz) = 6d6aa05ae2376fbc8ff3145b73da1d28b190a856 Size (nas-1.9.1.src.tar.gz) = 1454523 bytes SHA1 (patch-aa) = f407891f0207d789c0e5bf7a455fd7798ce01fde -SHA1 (patch-ab) = d424b0970bd23584629f6a9bebea8b8c014462b5 +SHA1 (patch-ab) = 2929b5477f21cd82ef8b5f0fb3039ea9a6e7b2c0 SHA1 (patch-ac) = 48f6c6791bde679774fd534012e8da2cf6e1e781 SHA1 (patch-ad) = b889775d66e1de80fc9bc2563f9cc0ebf720ad71 SHA1 (patch-ae) = f8ec2cb1809937aa7366ab65bee294e8affce543 diff --git a/audio/nas/patches/patch-ab b/audio/nas/patches/patch-ab index e63e99dd76c..81d735db034 100644 --- a/audio/nas/patches/patch-ab +++ b/audio/nas/patches/patch-ab @@ -1,6 +1,6 @@ -$NetBSD: patch-ab,v 1.13 2007/05/05 21:31:10 markd Exp $ +$NetBSD: patch-ab,v 1.14 2012/01/30 01:34:38 sbd Exp $ ---- server/Imakefile.orig 2006-08-14 13:04:17.000000000 +1200 +--- server/Imakefile.orig 2007-06-16 19:03:22.000000000 +0000 +++ server/Imakefile @@ -61,7 +61,7 @@ XCOMM $NCDId: @(#)Imakefile,v 1.17 1995/ #endif @@ -20,7 +20,22 @@ $NetBSD: patch-ab,v 1.13 2007/05/05 21:31:10 markd Exp $ # define CanBuildAuServer YES # if defined(cygwinArchitecture) -@@ -213,14 +213,19 @@ clean:: +@@ -204,23 +204,34 @@ dirs: FRC @@\ + $(MAKE) $(MFLAGS) PassCDebugFlags all @@\ + @@\ + FRC: ++ + #endif /* ForceSubdirs */ + #endif /* Project X < 5 */ + + ForceSubdirs($(DEPDIRS) $(SUBDIRS)) + ++$(VOXWARELIBS): ++ @echo "making all in $(CURRENT_DIR)/${@D}..." ++ @(cd ${@D} && $(MAKE) $(MFLAGS) $(PARALLELMFLAGS) \ @@\ ++ PassCDebugFlags all) || exit $$? ++ + clean:: $(RM) $(ALL) ETCDIR = NasConfigSearchPath |