diff options
author | itetcu <itetcu@FreeBSD.org> | 2006-07-10 19:15:04 +0000 |
---|---|---|
committer | itetcu <itetcu@FreeBSD.org> | 2006-07-10 19:15:04 +0000 |
commit | fcd87e8d72c910d68aeca15e3fd74059387a28cc (patch) | |
tree | 40d18a4e02e1df34bcd200050e4bc6b403be4858 /audio/euphoria | |
parent | 576833363d24c6bb558b26877c181ad8088acdfa (diff) | |
download | FreeBSD-ports-fcd87e8d72c910d68aeca15e3fd74059387a28cc.zip FreeBSD-ports-fcd87e8d72c910d68aeca15e3fd74059387a28cc.tar.gz |
- fix playlist issues with new xmms2
- bump PORTREVISION
PR: ports/100015
Submitted by: maintainer
Diffstat (limited to 'audio/euphoria')
-rw-r--r-- | audio/euphoria/Makefile | 1 | ||||
-rw-r--r-- | audio/euphoria/files/patch-lib_playlist_item.rb | 19 |
2 files changed, 20 insertions, 0 deletions
diff --git a/audio/euphoria/Makefile b/audio/euphoria/Makefile index 782fb3b..eaf95df 100644 --- a/audio/euphoria/Makefile +++ b/audio/euphoria/Makefile @@ -7,6 +7,7 @@ PORTNAME= euphoria PORTVERSION= 20062006 +PORTREVISON= 1 CATEGORIES= audio MASTER_SITES= http://mbsd.msk.ru/dist/ DISTNAME= ${PORTNAME}-${PORTVERSION} diff --git a/audio/euphoria/files/patch-lib_playlist_item.rb b/audio/euphoria/files/patch-lib_playlist_item.rb new file mode 100644 index 0000000..8ce8eae --- /dev/null +++ b/audio/euphoria/files/patch-lib_playlist_item.rb @@ -0,0 +1,19 @@ +--- lib/playlist_item.rb.orig Mon Jul 10 11:30:20 2006 ++++ lib/playlist_item.rb Mon Jul 10 11:31:08 2006 +@@ -1,4 +1,4 @@ +-# $Id: playlist_item.rb,v 1.17 2005/12/14 20:02:14 tsauerbeck Exp $ ++# $Id: playlist_item.rb,v 1.19 2006/07/08 12:25:31 tilman Exp $ + + class PlaylistItem + attr_reader :id, :edje, :position, :selected, :hilighted +@@ -23,9 +23,7 @@ + end + + def method_missing(method) +- tmp = @props[method] +- +- tmp || @props[:server][method] || "default" ++ @props[method] || "default" + end + + def duration |