summaryrefslogtreecommitdiff
path: root/audio/id3lib/Makefile
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2002-01-08 17:49:12 +0000
committerdrochner <drochner@pkgsrc.org>2002-01-08 17:49:12 +0000
commitca77633070ae61e5f14635f55d343e89aa29c93a (patch)
treea6b8d0ca7d4f547d1b3c922efc7a0862986a2367 /audio/id3lib/Makefile
parent51eac23d9974d6210338252bed2d313747979901 (diff)
downloadpkgsrc-ca77633070ae61e5f14635f55d343e89aa29c93a.tar.gz
solve the strings.h problem in a better way -
The library contains a header file "strings.h" which gets pulled in by <string.h>, leading to lossage. Defining ANSI_SOURCE used to help, but now we don't get an mkstemp() prototype anymore if this is defined, leading to compile problems at another place... So finally rename the pkg's strings.h. Being here, update to ...pre2, the changelog is * Many bug fixes -- mostly compilation problems -- more detailed info will be provided in a later release.
Diffstat (limited to 'audio/id3lib/Makefile')
-rw-r--r--audio/id3lib/Makefile10
1 files changed, 7 insertions, 3 deletions
diff --git a/audio/id3lib/Makefile b/audio/id3lib/Makefile
index f039a151498..cef37cd4d8b 100644
--- a/audio/id3lib/Makefile
+++ b/audio/id3lib/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.2 2001/08/03 17:05:16 wiz Exp $
+# $NetBSD: Makefile,v 1.3 2002/01/08 17:49:12 drochner Exp $
#
-DISTNAME= id3lib-3.8.0pre1
-PKGNAME= id3lib-3.8.0.0.1
+DISTNAME= id3lib-3.8.0pre2
+PKGNAME= id3lib-3.8.0.0.2
CATEGORIES= audio
MASTER_SITES= http://prdownloads.sourceforge.net/id3lib/
@@ -14,4 +14,8 @@ GNU_CONFIGURE= YES
USE_LIBTOOL= yes
LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig
+post-extract:
+ ${MV} ${WRKSRC}/include/id3/strings.h \
+ ${WRKSRC}/include/id3/id3strings.h
+
.include "../../mk/bsd.pkg.mk"