mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
- Fix a fairly major compile-time bug that causes ifoparser.so not to get
compiled, which in turns prevents lsdvd from working. - Transfer maintainership to submitter PR: ports/68025 Submitted by: Lewis Thompson <purple@lewiz.net> Approved by: old maintainer
This commit is contained in:
parent
543ea76c6e
commit
a271146310
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=111710
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME= mmpython
|
||||
PORTVERSION= 0.4.3
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= multimedia python
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||
@ -14,7 +15,7 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
# The mmpython folks keep changing their release naming scheme.
|
||||
#DISTNAME= mmpython_${PORTVERSION:C/\./-/}
|
||||
|
||||
MAINTAINER= lars.eggert@gmx.net
|
||||
MAINTAINER= purple@lewiz.net
|
||||
COMMENT= Retrieves metadata from mp3, ogg, avi, jpg and other formats
|
||||
|
||||
LIB_DEPENDS= dvdread.3:${PORTSDIR}/multimedia/libdvdread
|
||||
@ -27,5 +28,9 @@ RUN_DEPENDS= lsdvd:${PORTSDIR}/multimedia/lsdvd
|
||||
#USE_BZIP2= yes
|
||||
USE_PYTHON= yes
|
||||
USE_PYDISTUTILS=yes
|
||||
USE_REINPLACE= yes
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e 's|gcc -ldvdread|gcc -L${LOCALBASE}/lib -ldvdread|' ${WRKSRC}/setup.py
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,9 +1,17 @@
|
||||
|
||||
$FreeBSD$
|
||||
|
||||
--- disc/discinfo.py.orig Thu Jun 10 20:51:51 2004
|
||||
+++ disc/discinfo.py Thu Jun 10 20:52:32 2004
|
||||
@@ -223,22 +223,10 @@
|
||||
--- disc/discinfo.py Sun Feb 8 17:44:05 2004
|
||||
+++ disc/discinfo.py Thu Jun 17 00:04:48 2004
|
||||
@@ -191,7 +191,9 @@
|
||||
|
||||
fd = open(device, 'rb')
|
||||
try:
|
||||
- fd.seek(0x0000832d)
|
||||
+ fd.seek(32768) # 2048 multiple boundary for FreeBSD
|
||||
+ # FreeBSD doesn't return IOError unless we try and read:
|
||||
+ fd.read(1)
|
||||
except IOError:
|
||||
fd.close()
|
||||
return 3
|
||||
@@ -223,22 +225,12 @@
|
||||
else:
|
||||
f = open(device,'rb')
|
||||
|
||||
@ -23,6 +31,8 @@ $FreeBSD$
|
||||
- id = id[813:829]
|
||||
- else:
|
||||
- label = f.read(32)
|
||||
+ # FreeBSD can only seek to 2048 multiple boundaries.
|
||||
+ # Below works on Linux and FreeBSD:
|
||||
+ f.seek(32768)
|
||||
+ id = f.read(829)
|
||||
+ label = id[40:72]
|
||||
|
@ -9,8 +9,8 @@ $FreeBSD$
|
||||
f = open(device,'rb')
|
||||
- f.seek(32808, 0)
|
||||
- buffer = f.read(50000)
|
||||
+ f.seek(32768, 0)
|
||||
+ buffer = f.read(50040)
|
||||
+ f.seek(32768, 0) # FreeBSD requires seeking to a 2048 multiple boundary.
|
||||
+ buffer = f.read(50040) # Read 40 more to compensate for above seek.
|
||||
|
||||
if buffer.find('UDF') == -1:
|
||||
f.close()
|
||||
@ -20,8 +20,8 @@ $FreeBSD$
|
||||
# brute force reading of the device to find out if it is a DVD
|
||||
- f.seek(32808, 0)
|
||||
- buffer = f.read(50000)
|
||||
+ f.seek(32768, 0)
|
||||
+ buffer = f.read(50040)
|
||||
+ f.seek(32768, 0) # FreeBSD requires seeking to a 2048 multiple boundary.
|
||||
+ buffer = f.read(50040) # Read 40 more to compensate for above seek.
|
||||
|
||||
if buffer.find('UDF') == -1:
|
||||
return 0
|
||||
|
@ -9,8 +9,8 @@ $FreeBSD$
|
||||
f = open(device,'rb')
|
||||
- f.seek(32808, 0)
|
||||
- buffer = f.read(50000)
|
||||
+ f.seek(32768, 0)
|
||||
+ buffer = f.read(50040)
|
||||
+ f.seek(32768, 0) # FreeBSD requires seeking to a 2048 multiple boundary.
|
||||
+ buffer = f.read(50040) # Read 40 more to compensate for above seek.
|
||||
|
||||
if buffer.find('UDF') == -1:
|
||||
f.close()
|
||||
|
@ -10,9 +10,9 @@ $FreeBSD$
|
||||
- f.seek(32808, 0)
|
||||
- buffer = f.read(50000)
|
||||
- f.close()
|
||||
+ f.seek(32768, 0)
|
||||
+ buffer = f.read(50040)
|
||||
+ f.close()
|
||||
+ f.seek(32768, 0) # FreeBSD requires seeking to a 2048 multiple boundary.
|
||||
+ buffer = f.read(50040) # Read 40 more to compensate for above seek.
|
||||
+ f.close()
|
||||
|
||||
if buffer.find('SVCD') > 0 and buffer.find('TRACKS.SVD') > 0 and \
|
||||
buffer.find('ENTRIES.SVD') > 0:
|
||||
|
@ -10,9 +10,9 @@ $FreeBSD$
|
||||
- f.seek(32808, 0)
|
||||
- buffer = f.read(50000)
|
||||
- f.close()
|
||||
+ f.seek(32768, 0)
|
||||
+ buffer = f.read(50040)
|
||||
+ f.close()
|
||||
+ f.seek(32768, 0) # FreeBSD requires seeking to 2048 multiple boundary.
|
||||
+ buffer = f.read(50040) # Read 40 more to compensate for above seek.
|
||||
+ f.close()
|
||||
|
||||
if buffer.find('SVCD') > 0 and buffer.find('TRACKS.SVD') > 0 and \
|
||||
buffer.find('ENTRIES.SVD') > 0:
|
||||
|
@ -66,6 +66,7 @@ bin/mminfo
|
||||
%%PYTHON_SITELIBDIR%%/mmpython/disc/dvdinfo.py
|
||||
%%PYTHON_SITELIBDIR%%/mmpython/disc/dvdinfo.pyc
|
||||
%%PYTHON_SITELIBDIR%%/mmpython/disc/dvdinfo.pyo
|
||||
%%PYTHON_SITELIBDIR%%/mmpython/disc/ifoparser.so
|
||||
%%PYTHON_SITELIBDIR%%/mmpython/disc/lsdvd.py
|
||||
%%PYTHON_SITELIBDIR%%/mmpython/disc/lsdvd.pyc
|
||||
%%PYTHON_SITELIBDIR%%/mmpython/disc/lsdvd.pyo
|
||||
|
Loading…
Reference in New Issue
Block a user