Sun Jan 4 11:43:12 2015 UTC ()
Fix python path in installed shell script.
Ride import.


(wiz)
diff -r1.1 -r1.2 pkgsrc/audio/eyeD3/Makefile

cvs diff -r1.1 -r1.2 pkgsrc/audio/eyeD3/Makefile (expand / switch to unified diff)

--- pkgsrc/audio/eyeD3/Makefile 2015/01/04 11:05:15 1.1
+++ pkgsrc/audio/eyeD3/Makefile 2015/01/04 11:43:12 1.2
@@ -1,18 +1,24 @@ @@ -1,18 +1,24 @@
1# $NetBSD: Makefile,v 1.1 2015/01/04 11:05:15 wiz Exp $ 1# $NetBSD: Makefile,v 1.2 2015/01/04 11:43:12 wiz Exp $
2 2
3DISTNAME= eyeD3-0.7.5 3DISTNAME= eyeD3-0.7.5
4CATEGORIES= audio 4CATEGORIES= audio
5MASTER_SITES= http://eyed3.nicfit.net/releases/ 5MASTER_SITES= http://eyed3.nicfit.net/releases/
6EXTRACT_SUFX= .tgz 6EXTRACT_SUFX= .tgz
7 7
8MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
9HOMEPAGE= http://eyed3.nicfit.net/ 9HOMEPAGE= http://eyed3.nicfit.net/
10COMMENT= Python tool for working with audio files (in particular, mp3) 10COMMENT= Python tool for working with audio files (in particular, mp3)
11LICENSE= gnu-gpl-v2 11LICENSE= gnu-gpl-v2
12 12
13USE_LANGUAGES= # none 13USE_LANGUAGES= # none
14PYTHON_VERSIONS_INCOMPATIBLE= 33 34 # not yet ported as of 0.7.5 14PYTHON_VERSIONS_INCOMPATIBLE= 33 34 # not yet ported as of 0.7.5
15REPLACE_SH+= bin/eyeD3 15REPLACE_SH+= bin/eyeD3
16 16
 17SUBST_CLASSES+= python
 18SUBST_SED.python+= -e "s,python,${PYTHONBIN},"
 19SUBST_MESSAGE.python= Fixing path to python executable.
 20SUBST_FILES.python+= bin/eyeD3
 21SUBST_STAGE.python+= post-configure
 22
17.include "../../lang/python/egg.mk" 23.include "../../lang/python/egg.mk"
18.include "../../mk/bsd.pkg.mk" 24.include "../../mk/bsd.pkg.mk"