Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 5 Jan 2000 11:37:59 +0200 (EET)
From:      acid@stu.cn.ua
To:        FreeBSD-gnats-submit@freebsd.org
Subject:   ports/15902: mp3blaster port
Message-ID:  <200001050937.LAA63368@stalker.stu.cn.ua>

next in thread | raw e-mail | index | archive | help

>Number:         15902
>Category:       ports
>Synopsis:       mp3blaster port
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Wed Jan  5 01:40:00 PST 2000
>Closed-Date:
>Last-Modified:
>Originator:     Michael Vasilenko
>Release:        FreeBSD 3.4-STABLE i386
>Organization:
Chernigiv State Technological University
>Environment:
		

>Description:

		port of console ncurses-based mp3 player

>How-To-Repeat:


>Fix:
	
# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	audio/mp3blaster
#	audio/mp3blaster/Makefile
#	audio/mp3blaster/files
#	audio/mp3blaster/files/md5
#	audio/mp3blaster/pkg
#	audio/mp3blaster/pkg/COMMENT
#	audio/mp3blaster/pkg/DESCR
#	audio/mp3blaster/pkg/PLIST
#	audio/mp3blaster/patches
#	audio/mp3blaster/patches/patch-aa
#
echo c - audio/mp3blaster
mkdir -p audio/mp3blaster > /dev/null 2>&1
echo x - audio/mp3blaster/Makefile
sed 's/^X//' >audio/mp3blaster/Makefile << 'END-of-audio/mp3blaster/Makefile'
X# New ports collection makefile for:	mp3blaster
X# Version required:	2.0b16
X# Date created:		5 January 2000
X# Whom:			Michael Vasilenko <acid@stu.cn.ua>
X#
X# $FreeBSD$
X#
X
XDISTNAME=	mp3blaster-2.0b16
XCATEGORIES=	audio
XMASTER_SITES=	ftp://mud.stack.nl/pub/mp3blaster/ \
X		${MASTER_SITE_SUNSITE}
XMASTER_SITE_SUBDIR=	apps/sound/players
X
XMAINTAINER=	ports@FreeBSD.org
X
XLIB_DEPENDS=   ncurses.4:${PORTSDIR}/devel/ncurses
X
XGNU_CONFIGURE=	yes
XCONFIGURE_ENV=	"CPPFLAGS=-DPTHREADED_MPEG=1 -D_REENTERANT=1" \
X		"LDFLAGS=-pthread"
XUSE_GMAKE=	yes
XMAN1=		mp3blaster.1 nmixer.1
X
Xdo-install:
X	@ ${INSTALL_PROGRAM} ${WRKSRC}/src/mp3blaster ${PREFIX}/bin
X	@ ${INSTALL_PROGRAM} ${WRKSRC}/src/mp3tag ${PREFIX}/bin
X	@ ${INSTALL_PROGRAM} ${WRKSRC}/nmixer/nmixer ${PREFIX}/bin
X	@ ${INSTALL_MAN} ${WRKSRC}/mp3blaster.1 ${PREFIX}/man/man1
X	@ ${INSTALL_MAN} ${WRKSRC}/nmixer.1 ${PREFIX}/man/man1
X
X.include <bsd.port.mk>
END-of-audio/mp3blaster/Makefile
echo c - audio/mp3blaster/files
mkdir -p audio/mp3blaster/files > /dev/null 2>&1
echo x - audio/mp3blaster/files/md5
sed 's/^X//' >audio/mp3blaster/files/md5 << 'END-of-audio/mp3blaster/files/md5'
XMD5 (mp3blaster-2.0b16.tar.gz) = 0943fbfa0789b4c1e48075da8b4b3d86
END-of-audio/mp3blaster/files/md5
echo c - audio/mp3blaster/pkg
mkdir -p audio/mp3blaster/pkg > /dev/null 2>&1
echo x - audio/mp3blaster/pkg/COMMENT
sed 's/^X//' >audio/mp3blaster/pkg/COMMENT << 'END-of-audio/mp3blaster/pkg/COMMENT'
XMP3 console ncurses-based player
END-of-audio/mp3blaster/pkg/COMMENT
echo x - audio/mp3blaster/pkg/DESCR
sed 's/^X//' >audio/mp3blaster/pkg/DESCR << 'END-of-audio/mp3blaster/pkg/DESCR'
Xmp3blaster is an interactive text-based mp3player. One of
Xthe unique features of this player is the ability to divide
Xa playlist into groups (albums). Therefore, the play order
Xcan be adjusted with great flexibility.
X						
XWWW: http://www.stack.nl/~brama/mp3blaster.html
X
X- Michael Vasilenko
Xacid@stu.cn.ua
END-of-audio/mp3blaster/pkg/DESCR
echo x - audio/mp3blaster/pkg/PLIST
sed 's/^X//' >audio/mp3blaster/pkg/PLIST << 'END-of-audio/mp3blaster/pkg/PLIST'
Xbin/mp3blaster
Xbin/nmixer
Xbin/mp3tag
END-of-audio/mp3blaster/pkg/PLIST
echo c - audio/mp3blaster/patches
mkdir -p audio/mp3blaster/patches > /dev/null 2>&1
echo x - audio/mp3blaster/patches/patch-aa
sed 's/^X//' >audio/mp3blaster/patches/patch-aa << 'END-of-audio/mp3blaster/patches/patch-aa'
X--- nmixer/nmixer.cc.orig	Tue Dec 14 13:41:42 1999
X+++ nmixer/nmixer.cc	Wed Jan  5 08:16:39 2000
X@@ -118,11 +118,11 @@
X 	
X 	//clear 2x58 positions on window
X 	mvwprintw(mixwin, my_y - 1, my_x, (char*)empty_scrollbar);
X-	mvwprintw(mixwin, my_y, my_x, empty_scrollbar);
X-	mvwprintw(mixwin, my_y + 1, my_x, empty_scrollbar);
X+	mvwprintw(mixwin, my_y, my_x, (char*)empty_scrollbar);
X+	mvwprintw(mixwin, my_y + 1, my_x, (char*)empty_scrollbar);
X 
X 	//draw new bar
X-	mvwprintw(mixwin, my_y - 1, my_x, source);
X+	mvwprintw(mixwin, my_y - 1, my_x, (char*)source);
X 	if (i == currentbar)
X 	{
X 		mvwchgat(mixwin, my_y - 1, my_x, strlen(source), A_REVERSE, 
END-of-audio/mp3blaster/patches/patch-aa
exit


>Release-Note:
>Audit-Trail:
>Unformatted:


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200001050937.LAA63368>