Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 25 Aug 2009 10:53:56 -0700 (PDT)
From:      Kevin Oberman <oberman@es.net>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/138179: Fix serpentine port to not require muine
Message-ID:  <20090825175356.EBA3C1CC0E@ptavv.es.net>
Resent-Message-ID: <200908251800.n7PI03r0062878@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         138179
>Category:       ports
>Synopsis:       Fix serpentine port to not require muine
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Tue Aug 25 18:00:02 UTC 2009
>Closed-Date:
>Last-Modified:
>Originator:     Kevin Oberman <oberman@es.net>
>Release:        FreeBSD 7.2-STABLE i386
>Organization:
ESnet
>Environment:
System: FreeBSD ptavv.es.net 7.2-STABLE FreeBSD 7.2-STABLE #0: Mon Jul 27 09:23:09 PDT 2009 root@ptavv.es.net:/usr/obj/usr/src/sys/PTAVV i386


	
>Description:
The muine port "is marked as broken: doesn't build and is apparently
unmaintained", but serpentine, due to an error in the Makefile, always
requires it, whether the MUINE option is set. (It defaults to 'off'.)
This makes serpentine and ports depending on it a dependency on the
broken muine port.

	
>How-To-Repeat:
Build serpentine with default (or any) config options
	
>Fix:
--- sysutils/serpentine/Makefile.orig	2009-08-25 10:45:24.000000000 -0700
+++ sysutils/serpentine/Makefile	2009-08-25 10:07:00.000000000 -0700
@@ -29,7 +29,7 @@
 
 .include <bsd.port.pre.mk>
 
-.if (defined(WITH_MUINE) || exists(${LOCALBASE}/bin/muine)) && ${ARCH}=="i386"
+.if (defined(MUINE) || exists(${LOCALBASE}/bin/muine)) && ${ARCH}=="i386"
 BUILD_DEPENDS+=	muine:${PORTSDIR}/audio/muine
 RUN_DEPENDS+=	muine:${PORTSDIR}/audio/muine
 PLIST_SUB+=	MUINE=""

	


>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20090825175356.EBA3C1CC0E>