1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00

- fix network interface detection failure, introduced in 3.4.0. There is

upstream bug-report [1] and the issue is patched partially in upstream's
  repository, but it has some problems so I stick with own workaround until
  the new release
- add missing runtime dependency on audio/py-eyed3, while here
- bump PORTREVISION

[1] https://bugs.gpodder.org/show_bug.cgi?id=1730

Reported by:	Stephan Schindel <sts@tp1.rub.de> (via ports@)
This commit is contained in:
Ruslan Makhmatkhanov 2013-01-16 15:20:20 +00:00
parent 2410e46bc7
commit 374ebe12d9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=310498
2 changed files with 14 additions and 1 deletions

View File

@ -3,6 +3,7 @@
PORTNAME= gpodder
PORTVERSION= 3.4.0
PORTREVISION= 1
CATEGORIES= multimedia python
MASTER_SITES= http://gpodder.org/src/
@ -16,7 +17,8 @@ BUILD_DEPENDS= intltool-extract:${PORTSDIR}/textproc/intltool \
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>=0:${PORTSDIR}/databases/py-sqlite3 \
${PYTHON_PKGNAMEPREFIX}feedparser>=5.0.1:${PORTSDIR}/textproc/py-feedparser \
${PYTHON_PKGNAMEPREFIX}mygpoclient>=1.4:${PORTSDIR}/devel/py-mygpoclient \
${PYTHON_PKGNAMEPREFIX}dbus>=0:${PORTSDIR}/devel/py-dbus
${PYTHON_PKGNAMEPREFIX}dbus>=0:${PORTSDIR}/devel/py-dbus \
${PYTHON_PKGNAMEPREFIX}eyed3>=0:${PORTSDIR}/audio/py-eyed3
OPTIONS_DEFINE= GTK2 NOTIFY MUTAGEN OGG2MP3
OPTIONS_DEFAULT=GTK2

View File

@ -0,0 +1,11 @@
--- ./src/gpodder/util.py.orig 2012-12-22 15:53:19.000000000 +0400
+++ ./src/gpodder/util.py 2013-01-16 15:18:56.000000000 +0400
@@ -1682,7 +1682,7 @@
if gpodder.ui.win32:
# FIXME: Implement for Windows
return True
- elif gpodder.ui.osx:
+ elif gpodder.ui.osx or 'freebsd' in sys.platform:
return len(list(osx_get_active_interfaces())) > 0
return True
else: