pkgsrc/audio/id3/patches/patch-aa
obache 4b7d16de7f Update id3 to 0.15.
While here, fixes patch-aa and original DESTDIR ready back.

ChangeLog:
d3 (0.15-1) unstable; urgency=low
   * Fix infinite loop when setting genre to Fusion (the official ID3v1 genre
     list has Fusion as both #30 and #84). Thanks to Matthew Garman for
     reporting this bug.

 -- Robert Woodcock <rcw@debian.org>  Mon, 31 Jul 2006 21:42:52 -0700

id3 (0.14-2) unstable; urgency=low
   * Rebuild to remove /usr/doc/id3 symlink, closes: #322808
   * Fixed spelling of Psychedelic, closes: #275155
   * Fixed version number, closes: #198439
   * Updated manual page

 -- Robert Woodcock <rcw@debian.org>  Fri, 12 Aug 2005 16:23:24 -0700

id3 (0.14-1) unstable; urgency=low
   * Added Hwei Sheng Teoh's patches to a new release
   * Added directory sanity checking

 -- Robert Woodcock <rcw@debian.org>  Sun, 24 Nov 2002 11:35:06 -0800
id3 (0.13-3.1) unstable; urgency=low
   * Non-maintainer upload
   * Clean up id3 tag structure after done processing with a file.
     (Closes: #66962)
   * Verified that #71795 has already been fixed. (Closes: #71795)

 -- Hwei Sheng Teoh <hsteoh@debian.org>  Sat, 23 Nov 2002 10:36:03 -0500
id3 (0.13-3) unstable; urgency=low
   * Added Build-Depends line

 -- Robert Woodcock <rcw@debian.org>  Fri, 24 May 2002 10:27:09 -0700

id3 (0.13-2) unstable; urgency=low
   * Accidentally built 0.13-1 as a debian-native package. Recompiled.

 -- Robert Woodcock <rcw@debian.org>  Sat, 23 Sep 2000 14:04:03 -0700
id3 (0.13-1) unstable; urgency=low
   * -R outputs genre numbers correctly, thanks to Ma.Fr@t-online.de,
     closes: bug #71795

 -- Robert Woodcock <rcw@debian.org>  Fri, 22 Sep 2000 20:08:27 -0700
2008-11-24 12:04:15 +00:00

39 lines
939 B
Text

$NetBSD: patch-aa,v 1.3 2008/11/24 12:04:15 obache Exp $
--- Makefile.orig 2000-09-23 03:08:39.000000000 +0000
+++ Makefile
@@ -3,17 +3,17 @@ VERSION = 0.13
SHELL = /bin/sh
-CC = gcc
-CFLAGS = -g -O2
-LDFLAGS =
+#CC = gcc
+#CFLAGS = -g -O2
+#LDFLAGS =
LIBS =
DEFS =
INSTALL = /usr/bin/install -c
# Installation directories
-prefix = ${DESTDIR}/usr
+prefix = ${DESTDIR}${PREFIX}
exec_prefix = ${prefix}
-mandir = ${prefix}/share/man/man1
+mandir = ${prefix}/${PKGMANDIR}/man1
bindir = ${exec_prefix}/bin
INCL =
@@ -34,7 +34,7 @@ clean:
rm -f *~ *.o core $(PRODUCT)
install: $(PRODUCT)
- $(INSTALL) -d -m 755 $(bindir)
- $(INSTALL) -s -m 755 -o 0 $(PRODUCT) $(bindir)
- $(INSTALL) -d -m 755 $(mandir)
- $(INSTALL) -m 644 -o 0 $(PRODUCT).1 $(mandir)
+ $(BSD_INSTALL_PROGRAM_DIR) $(bindir)
+ $(BSD_INSTALL_PROGRAM) $(PRODUCT) $(bindir)
+ $(BSD_INSTALL_MAN_DIR) $(mandir)
+ $(BSD_INSTALL_MAN) $(PRODUCT).1 $(mandir)