- fix segfault on attempt to play next track from empty playlist [1]
- make mpg321 be RUN_DEPEND instead of BUILD_DEPEND PR: 80365 [1] Submitted by: Andrej Zverev (maintainer)
This commit is contained in:
parent
2bad4f4ce0
commit
4c165134cb
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=134245
2 changed files with 25 additions and 6 deletions
|
@ -7,13 +7,14 @@
|
|||
|
||||
PORTNAME= orpheus
|
||||
PORTVERSION= 1.5
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= http://thekonst.net/download/
|
||||
|
||||
MAINTAINER= az@inec.ru
|
||||
COMMENT= Light-weight console UI audio player application
|
||||
|
||||
BUILD_DEPENDS= mpg321:${PORTSDIR}/audio/mpg321
|
||||
RUN_DEPENDS= mpg321:${PORTSDIR}/audio/mpg321
|
||||
|
||||
USE_BZIP2= yes
|
||||
HAS_CONFIGURE= yes
|
||||
|
@ -37,7 +38,7 @@ CONFIGURE_ARGS+= --enable-ghttp
|
|||
.endif
|
||||
|
||||
.if defined(WITH_VORBIS)
|
||||
RUN_DEPENDS= ogg123:${PORTSDIR}/audio/vorbis-tools
|
||||
RUN_DEPENDS+= ogg123:${PORTSDIR}/audio/vorbis-tools
|
||||
LIB_DEPENDS+= vorbis:${PORTSDIR}/audio/libvorbis
|
||||
LIB_DEPENDS+= vorbisfile:${PORTSDIR}/audio/libvorbis
|
||||
CONFIGURE_ARGS+= --enable-vorbis
|
||||
|
|
|
@ -1,6 +1,24 @@
|
|||
--- src/uitext.cc Tue Feb 17 04:18:21 2004
|
||||
+++ src/uitext.cc Sun Dec 12 22:12:41 2004
|
||||
@@ -577,14 +577,16 @@
|
||||
diff -Nru src.orig/uitext.cc src/uitext.cc
|
||||
--- src.orig/uitext.cc Tue Feb 17 04:18:21 2004
|
||||
+++ src/uitext.cc Tue Apr 26 19:49:01 2005
|
||||
@@ -125,6 +125,8 @@
|
||||
}
|
||||
|
||||
void OrpheusTextUI::nexttrack() {
|
||||
+ if (!plist.empty())
|
||||
+ {
|
||||
if(conf.getplaymode() == Random) {
|
||||
int k;
|
||||
while(*(plist.begin()+(k = randlimit(0, plist.size()-1))) == currenttrack);
|
||||
@@ -143,6 +145,7 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
+ }
|
||||
}
|
||||
|
||||
void OrpheusTextUI::prevtrack() {
|
||||
@@ -577,14 +580,16 @@
|
||||
autosavepl = !autosavepl;
|
||||
break;
|
||||
case 41:
|
||||
|
@ -19,7 +37,7 @@
|
|||
sortorder = byFileName;
|
||||
break;
|
||||
case 44:
|
||||
@@ -719,7 +721,8 @@
|
||||
@@ -719,7 +724,8 @@
|
||||
while(!finished) {
|
||||
m.clear();
|
||||
|
||||
|
|
Loading…
Reference in a new issue