mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Revive audio/exaile-devel
The main difference of development branch is that Exaile is ported to GTK+3 and Gstreamer 1.x.
This commit is contained in:
parent
309d5eb086
commit
051a789d34
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=420560
7 changed files with 1113 additions and 1 deletions
1
MOVED
1
MOVED
|
@ -869,7 +869,6 @@ www/tcldom|devel/tclxml|2009-11-26|Port now is part of devel/tclxml
|
||||||
www/tcldom-libxml2|devel/tclxml|2009-11-26|Port now is part of devel/tclxml
|
www/tcldom-libxml2|devel/tclxml|2009-11-26|Port now is part of devel/tclxml
|
||||||
lang/erlang-doc||2009-11-27|Documentation now part of lang/erlang package
|
lang/erlang-doc||2009-11-27|Documentation now part of lang/erlang package
|
||||||
devel/gtkmozedit||2009-11-27|No longer under development, does not build with libxul
|
devel/gtkmozedit||2009-11-27|No longer under development, does not build with libxul
|
||||||
audio/exaile-devel|audio/exaile|2009-11-28|Main port updated to the latest stable version
|
|
||||||
finance/p5-HTML-Query|www/p5-HTML-Query|2009-11-28|Moved to www category
|
finance/p5-HTML-Query|www/p5-HTML-Query|2009-11-28|Moved to www category
|
||||||
graphics/clutter-cairo|graphics/clutter|2009-11-28|This port is obsolete, all functionality is now in graphics/clutter
|
graphics/clutter-cairo|graphics/clutter|2009-11-28|This port is obsolete, all functionality is now in graphics/clutter
|
||||||
www/galeon||2009-11-28|This port is obsolete; similar functionality can be found in www/epiphany
|
www/galeon||2009-11-28|This port is obsolete; similar functionality can be found in www/epiphany
|
||||||
|
|
|
@ -123,6 +123,7 @@
|
||||||
SUBDIR += etcd
|
SUBDIR += etcd
|
||||||
SUBDIR += etktab
|
SUBDIR += etktab
|
||||||
SUBDIR += exaile
|
SUBDIR += exaile
|
||||||
|
SUBDIR += exaile-devel
|
||||||
SUBDIR += extace
|
SUBDIR += extace
|
||||||
SUBDIR += ezstream
|
SUBDIR += ezstream
|
||||||
SUBDIR += faac
|
SUBDIR += faac
|
||||||
|
|
39
audio/exaile-devel/Makefile
Normal file
39
audio/exaile-devel/Makefile
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
# $FreeBSD$
|
||||||
|
|
||||||
|
PORTNAME= exaile
|
||||||
|
PORTVERSION= 4.0
|
||||||
|
CATEGORIES= audio
|
||||||
|
PKGNAMESUFFIX= -devel
|
||||||
|
|
||||||
|
MAINTAINER= rm@FreeBSD.org
|
||||||
|
COMMENT= Full featured python-based music player for GTK+
|
||||||
|
|
||||||
|
LICENSE= GPLv2
|
||||||
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
||||||
|
|
||||||
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mutagen>0:audio/py-mutagen \
|
||||||
|
${PYTHON_PKGNAMEPREFIX}gstreamer1>0:multimedia/py-gstreamer1 \
|
||||||
|
${PYTHON_PKGNAMEPREFIX}dbus>0:devel/py-dbus \
|
||||||
|
${PYTHON_PKGNAMEPREFIX}bsddb3>0:databases/py-bsddb3
|
||||||
|
|
||||||
|
USE_GITHUB= yes
|
||||||
|
GH_TAGNAME= 22c75bf
|
||||||
|
|
||||||
|
NO_ARCH= yes
|
||||||
|
USES= desktop-file-utils gmake gnome python:2.7
|
||||||
|
USE_GNOME= gtk30 librsvg2 pygobject3
|
||||||
|
USE_GSTREAMER1= good faad
|
||||||
|
OPTIONS_DEFINE= DOCS NLS
|
||||||
|
OPTIONS_SUB= yes
|
||||||
|
NLS_USES= gettext
|
||||||
|
NLS_BUILD_DEPENDS= help2man:misc/help2man
|
||||||
|
NLS_INSTALL_TARGET_OFF= install_no_locale
|
||||||
|
CDDB_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cddb>0:audio/py-cddb
|
||||||
|
HAL_LIB_DEPENDS= libhal.so:sysutils/hal
|
||||||
|
|
||||||
|
MAKE_ENV= PREFIX=${PREFIX} \
|
||||||
|
PYTHON2_CMD=${PYTHON_CMD} \
|
||||||
|
XDGCONFDIR=${PREFIX}/etc/xdg \
|
||||||
|
MANPREFIX=${PREFIX}
|
||||||
|
|
||||||
|
.include <bsd.port.mk>
|
3
audio/exaile-devel/distinfo
Normal file
3
audio/exaile-devel/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
TIMESTAMP = 1471782443
|
||||||
|
SHA256 (exaile-exaile-4.0-22c75bf_GH0.tar.gz) = 63fa528585c78b51ccc0c1681cafaf583b79fbbd9713f2011dfe198ff805954e
|
||||||
|
SIZE (exaile-exaile-4.0-22c75bf_GH0.tar.gz) = 3371486
|
|
@ -0,0 +1,19 @@
|
||||||
|
Fix SyntaxError with python3 (PEP 3113)
|
||||||
|
|
||||||
|
--- plugins/daapclient/__init__.py.orig 2016-08-14 05:19:15 UTC
|
||||||
|
+++ plugins/daapclient/__init__.py
|
||||||
|
@@ -307,12 +307,13 @@ class DaapManager:
|
||||||
|
|
||||||
|
self.history = DaapHistory(5, menu=hmenu, callback=self.connect_share)
|
||||||
|
|
||||||
|
- def connect_share(self, obj, (name, address, port, svc)):
|
||||||
|
+ def connect_share(self, obj, args):
|
||||||
|
'''
|
||||||
|
This function is called when a user wants to connec to
|
||||||
|
a DAAP share. It creates a new panel for the share, and
|
||||||
|
requests a track list.
|
||||||
|
'''
|
||||||
|
+ name, address, port, svc = args
|
||||||
|
conn = DaapConnection(name, address, port)
|
||||||
|
|
||||||
|
conn.connect()
|
7
audio/exaile-devel/pkg-descr
Normal file
7
audio/exaile-devel/pkg-descr
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
Exaile is a music manager and player for GTK+ written in Python. It
|
||||||
|
incorporates automatic fetching of album art, lyrics fetching, artist/album
|
||||||
|
information via Wikipedia, Last.fm scrobbling, support for many portable
|
||||||
|
media players including iPods, internet radio such as shoutcast, and tabbed
|
||||||
|
playlists.
|
||||||
|
|
||||||
|
WWW: http://www.exaile.org/
|
1044
audio/exaile-devel/pkg-plist
Normal file
1044
audio/exaile-devel/pkg-plist
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue