Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 25 Jul 2013 14:43:21 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r323645 - head/audio/madplay
Message-ID:  <201307251443.r6PEhLdq059965@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marino
Date: Thu Jul 25 14:43:20 2013
New Revision: 323645
URL: http://svnweb.freebsd.org/changeset/ports/323645

Log:
  audio/madplay: directly link libz and cleanup
  
  Fixes indirect linking errors on modern binutils (fix from dports)
  Also:
    remove redundant MAKE_JOBS_SAFE while we are here.
    Remove library version specification
    Make portlint happy
  
  Approved by:	bapt (mentor)

Modified:
  head/audio/madplay/Makefile

Modified: head/audio/madplay/Makefile
==============================================================================
--- head/audio/madplay/Makefile	Thu Jul 25 14:25:51 2013	(r323644)
+++ head/audio/madplay/Makefile	Thu Jul 25 14:43:20 2013	(r323645)
@@ -8,20 +8,19 @@ CATEGORIES=	audio
 MASTER_SITES=	SF/mad/${PORTNAME}/${PORTVERSION} \
 		ftp://ftp.mars.org/pub/mpeg/
 
-
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	Madplay MP3 player (part of MAD project)
 
-LIB_DEPENDS=	mad.2:${PORTSDIR}/audio/libmad \
-		id3tag.0:${PORTSDIR}/audio/libid3tag
-
 LICENSE=	GPLv2
 
+LIB_DEPENDS=	mad:${PORTSDIR}/audio/libmad \
+		id3tag:${PORTSDIR}/audio/libid3tag
+
 WANT_GNOME=	yes
 
 GNU_CONFIGURE=	yes
 CFLAGS+=	-I${LOCALBASE}/include
-LDFLAGS+=	-L${LOCALBASE}/lib
+LDFLAGS+=	-L${LOCALBASE}/lib -lz
 ALL_TARGET=	all madtime
 
 MAN1=		abxtest.1 madplay.1



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