summaryrefslogtreecommitdiff
path: root/audio/id3ed
diff options
context:
space:
mode:
authorgrant <grant@pkgsrc.org>2004-01-28 22:34:07 +0000
committergrant <grant@pkgsrc.org>2004-01-28 22:34:07 +0000
commit6af66439c460ce234376a5150fe84cdba2b8974a (patch)
treed4288fd339e072147021898a6c200bc7f710cd20 /audio/id3ed
parent1cce0bd065c5760abaaa9fc47c79d704edf541a4 (diff)
downloadpkgsrc-6af66439c460ce234376a5150fe84cdba2b8974a.tar.gz
make sure ${LDFLAGS} comes before ${LIBS} when linking.
fixes build on Solaris.
Diffstat (limited to 'audio/id3ed')
-rw-r--r--audio/id3ed/Makefile10
-rw-r--r--audio/id3ed/distinfo3
-rw-r--r--audio/id3ed/patches/patch-ab13
3 files changed, 20 insertions, 6 deletions
diff --git a/audio/id3ed/Makefile b/audio/id3ed/Makefile
index 7147f9f0eed..50726fc40d0 100644
--- a/audio/id3ed/Makefile
+++ b/audio/id3ed/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.18 2004/01/22 07:15:00 grant Exp $
+# $NetBSD: Makefile,v 1.19 2004/01/28 22:34:07 grant Exp $
#
DISTNAME= id3ed-1.10.4
@@ -9,14 +9,14 @@ MAINTAINER= hubertf@NetBSD.org
HOMEPAGE= http://www.azstarnet.com/~donut/programs/id3ed.html
COMMENT= Edit id3 description tags in mpeg3 files
-USE_BUILDLINK2= YES
+PKG_INSTALLATION_TYPES= overwrite pkgviews
+
+USE_BUILDLINK3= YES
GNU_CONFIGURE= YES
USE_GNU_TOOLS+= make
USE_GCC_SHLIB= YES
USE_GNU_READLINE= # uses rl_startup_hook
-LIBS+= ${LDFLAGS}
-
-.include "../../devel/readline/buildlink2.mk"
+.include "../../devel/readline/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/audio/id3ed/distinfo b/audio/id3ed/distinfo
index 46ef676a6af..99b7f7a1eb9 100644
--- a/audio/id3ed/distinfo
+++ b/audio/id3ed/distinfo
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.5 2003/07/02 09:04:36 martin Exp $
+$NetBSD: distinfo,v 1.6 2004/01/28 22:34:08 grant Exp $
SHA1 (id3ed-1.10.4.tar.gz) = b699e645fcea2fa42658886621eb10531d24008a
Size (id3ed-1.10.4.tar.gz) = 31610 bytes
SHA1 (patch-aa) = b20838a13e1cae3217917d4f5f8023c4329aa979
+SHA1 (patch-ab) = cafd397b8e994eea35e7d87d504c84c79c158fc2
diff --git a/audio/id3ed/patches/patch-ab b/audio/id3ed/patches/patch-ab
new file mode 100644
index 00000000000..3427db86f1c
--- /dev/null
+++ b/audio/id3ed/patches/patch-ab
@@ -0,0 +1,13 @@
+$NetBSD: patch-ab,v 1.1 2004/01/28 22:34:08 grant Exp $
+
+--- Makefile.in.orig 2003-01-10 14:09:20.000000000 +1100
++++ Makefile.in
+@@ -22,7 +22,7 @@ all: id3ed
+ OBJS=id3ed.o misc.o
+
+ id3ed: $(OBJS) .depend
+- $(CXX) $(CXXFLAGS) $(OBJS) -o $@ $(LIBS)
++ $(CXX) $(CXXFLAGS) $(OBJS) -o $@ $(LDFLAGS) $(LIBS)
+
+ dep depend .depend:
+ $(CXX) -MM *.cc > .depend