svn commit: r323645 - head/audio/madplay
John Marino
marino at FreeBSD.org
Thu Jul 25 14:43:21 UTC 2013
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 at 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
More information about the svn-ports-head
mailing list