From rzinkov@gmail.com  Wed Jul 27 01:30:33 2005
Return-Path: <rzinkov@gmail.com>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 90AE816A41F
	for <FreeBSD-gnats-submit@freebsd.org>; Wed, 27 Jul 2005 01:30:33 +0000 (GMT)
	(envelope-from rzinkov@gmail.com)
Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.203])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 0ECBB43D46
	for <FreeBSD-gnats-submit@freebsd.org>; Wed, 27 Jul 2005 01:30:32 +0000 (GMT)
	(envelope-from rzinkov@gmail.com)
Received: by wproxy.gmail.com with SMTP id i21so65760wra
        for <FreeBSD-gnats-submit@freebsd.org>; Tue, 26 Jul 2005 18:30:32 -0700 (PDT)
Received: by 10.54.31.37 with SMTP id e37mr129309wre;
        Tue, 26 Jul 2005 18:30:32 -0700 (PDT)
Received: by 10.54.13.52 with HTTP; Tue, 26 Jul 2005 18:30:32 -0700 (PDT)
Message-Id: <b4df4eb60507261830743f86be@mail.gmail.com>
Date: Tue, 26 Jul 2005 21:30:32 -0400
From: Integral <rzinkov@gmail.com>
Reply-To: Integral <rzinkov@gmail.com>
To: FreeBSD-gnats-submit@freebsd.org
Subject: New port: audio/moc - A featureful console music player

>Number:         84153
>Category:       ports
>Synopsis:       New port: audio/moc - A featureful console music player
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    jylefort
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Wed Jul 27 01:40:14 GMT 2005
>Closed-Date:    Thu Jul 28 23:48:26 GMT 2005
>Last-Modified:  Thu Jul 28 23:48:26 GMT 2005
>Originator:     Captain Fourier &
>Release:        FreeBSD 5.4-RELEASE i386
>Organization:
>Environment:
System: FreeBSD sewage.loco 5.4-RELEASE FreeBSD 5.4-RELEASE #0: Sat
Jun 18 00:36:44 EDT 2005
fourier@sewage.loco:/usr/src/sys/i386/compile/SEWAGE_KERNEL i386



>Description:
        MOC (music on console) is a console audio player for
LINUX/UNIX designed to be
        powerful and easy to use.

        You just need to select a file from some directory using the
menu similar to
        Midnight Commander, and MOC will start playing all files in
this directory
        beginning from the chosen file. There is no need to create
playlists like in
        other players.
>How-To-Repeat:
>Fix:

--- moc2 begins here ---
# 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:
#
#       moc
#       moc/Makefile
#       moc/distinfo
#       moc/pkg-plist
#       moc/pkg-descr
#
echo c - moc
mkdir -p moc > /dev/null 2>&1
echo x - moc/Makefile
sed 's/^X//' >moc/Makefile << 'END-of-moc/Makefile'
X# New ports collection makefile for:   moc
X# Date created:                24 July 2005
X# Whom:                        Revis Zinkov <rzinkov@gmail.com>
X#
X# $FreeBSD$
X#
X
XPORTNAME=3D      moc
XPORTVERSION=3D   2.3.0
XCATEGORIES=3D    audio
XMASTER_SITES=3D  ftp://ftp.daper.net/pub/soft/moc/stable/
X
XMAINTAINER=3D    rzinkov@gmail.com
XCOMMENT=3D       Is a console audio player designed to be powerful and
easy to use
X
XUSE_GETOPT_LONG=3D       yes
XUSE_GMAKE=3D     yes
XUSE_BZIP2=3D     yes
XGNU_CONFIGURE=3D yes
XCONFIGURE_ENV=3D CPPFLAGS=3D"${CPPFLAGS}" LDFLAGS=3D"${LDFLAGS}"
XCONFIGURE_ARGS=3D        --with-cxxflags=3D"${CXXFLAGS}"
X
XMAN8=3D          mocp.8
X
XCPPFLAGS=3D      -I${LOCALBASE}/include
XLDFLAGS=3D       -L${LOCALBASE}/lib
X
XOPTIONS=3D       MP3 "MP3 support" on \
X               SNDFILE "libsndfile support" off \
X               VORBIS "ogg Vorbis support" on \
X               FLAC "flac support" off \
X               CURL "libcurl support" on \
X               MUSE "musepack support" off
X
X.include <bsd.port.pre.mk>
X
X.if ${OSVERSION} < 400010
XLIB_DEPENDS+=3D  ncurses.5:${PORTSDIR}/devel/ncurses
X.endif
X
X.if !defined(WITHOUT_MP3)
XLIB_DEPENDS+=3D  mad.2:${PORTSDIR}/audio/mad
X.else
XCONFIGURE_ARGS+=3D       --without-mp3
X.endif
X
X.if !defined(WITHOUT_SNDFILE)
XLIB_DEPENDS+=3D   sndfile.1:${PORTSDIR}/audio/libsndfile
X.else
XCONFIGURE_ARGS+=3D        --without-sndfile
X.endif
X
X.if defined(WITHOUT_VORBIS)
XCONFIGURE_ARGS+=3D       --without-ogg
X.else
XLIB_DEPENDS+=3D  vorbis.3:${PORTSDIR}/audio/libvorbis
X.endif
X
X.if defined(WITH_FLAC)
XLIB_DEPENDS+=3D   FLAC:${PORTSDIR}/audio/flac
X.else
XCONFIGURE_ARGS+=3D        --without-flac
X.endif
X
X.if !defined(WITHOUT_CURL)
XLIB_DEPENDS+=3D   curl.3:${PORTSDIR}/ftp/curl
X.else
XCONFIGURE_ARGS+=3D        --without-curl
X.endif
X
X.if defined(WITH_MUSE)
XLIB_DEPENDS+=3D   musepack:${PORTSDIR}/audio/musepack
X.else
XCONFIGURE_ARGS+=3D        --without-musepack
X.endif
X
Xpost-extract:
X       @${FIND} ${WRKSRC} -name "getopt*" -delete
X
X.include <bsd.port.post.mk>
END-of-moc/Makefile
echo x - moc/distinfo
sed 's/^X//' >moc/distinfo << 'END-of-moc/distinfo'
XMD5 (moc-2.3.0.tar.bz2) =3D 3d5d152c28f6e40162058fc1566c8109
XSIZE (moc-2.3.0.tar.bz2) =3D 402954
END-of-moc/distinfo
echo x - moc/pkg-plist
sed 's/^X//' >moc/pkg-plist << 'END-of-moc/pkg-plist'
Xbin/mocp
Xlib/moc/decoder_plugins/libmp3_decoder.la
Xlib/moc/decoder_plugins/libmp3_decoder.so
Xlib/moc/decoder_plugins/libogg_decoder.la
Xlib/moc/decoder_plugins/libogg_decoder.so
Xlib/moc/decoder_plugins/libsndfile_formats_decoder.la
Xlib/moc/decoder_plugins/libsndfile_formats_decoder.so
Xshare/doc/moc/README
Xshare/doc/moc/THANKS
Xshare/doc/moc/config.example
Xshare/doc/moc/keymap.example
Xshare/moc/themes/black_theme
Xshare/moc/themes/example_theme
Xshare/moc/themes/green_theme
Xshare/moc/themes/nightly_theme
Xshare/moc/themes/transparent-background
Xshare/moc/themes/yellow_red_theme
X@dirrm share/nls/en_US.US-ASCII
X@dirrm share/nls/POSIX
X@dirrm share/moc/themes
X@dirrm share/moc
X@dirrm share/doc/moc
X@dirrm lib/moc/decoder_plugins
X@dirrm lib/moc
END-of-moc/pkg-plist
echo x - moc/pkg-descr
sed 's/^X//' >moc/pkg-descr << 'END-of-moc/pkg-descr'
XMOC (music on console) is a console audio player for LINUX/UNIX designed t=
o be
Xpowerful and easy to use.
X
XMOC plays smoothly, regardless of system or I/O load because it uses the o=
utput
Xbuffer in a separate thread. It doesn't cause gaps between files, because =
the
Xnext file to be played is precached while playing the current file.
X
XSupported file formats are: mp3, Ogg Vorbis, FLAC, Musepack (mpc), Speex, =
WAVE,
XAIFF, AU, SVX, Sphere Nist WAV, IRCAM SF, Creative VOC.
X
XWWW: http://moc.daper.net/
END-of-moc/pkg-descr
exit
--- moc2 ends here ---
>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->jylefort 
Responsible-Changed-By: jylefort 
Responsible-Changed-When: Wed Jul 27 06:26:57 GMT 2005 
Responsible-Changed-Why:  
Take. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=84153 
State-Changed-From-To: open->feedback 
State-Changed-By: jylefort 
State-Changed-When: Wed Jul 27 06:28:57 GMT 2005 
State-Changed-Why:  
Your shar is mangled. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=84153 

From: Integral <rzinkov@gmail.com>
To: bug-followup@FreeBSD.org, rzinkov@gmail.com
Cc:  
Subject: Re: ports/84153: New port: audio/moc - A featureful console music player
Date: Wed, 27 Jul 2005 19:49:35 -0400

 ------=_Part_13455_6217415.1122508175191
 Content-Type: text/plain; charset=ISO-8859-1
 Content-Transfer-Encoding: quoted-printable
 Content-Disposition: inline
 
 sorry i used a bad web client
 
 >Correction:
 # 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:
 #
 # moc
 # moc/Makefile
 # moc/distinfo
 # moc/pkg-plist
 # moc/pkg-descr
 #
 echo c - moc
 mkdir -p moc > /dev/null 2>&1
 echo x - moc/Makefile
 sed 's/^X//' >moc/Makefile << 'END-of-moc/Makefile'
 X# New ports collection makefile for: moc
 X# Date created: 24 July 2005
 X# Whom: Revis Zinkov <rzinkov@gmail.com>
 X#
 X# $FreeBSD$
 X#
 X
 XPORTNAME=3D moc
 XPORTVERSION=3D 2.3.0
 XCATEGORIES=3D audio
 XMASTER_SITES=3D ftp://ftp.daper.net/pub/soft/moc/stable/
 X
 XMAINTAINER=3D rzinkov@gmail.com
 XCOMMENT=3D Is a console audio player designed to be powerful and easy to u=
 se
 X
 XUSE_GETOPT_LONG=3D yes
 XUSE_GMAKE=3D yes
 XUSE_BZIP2=3D yes
 XGNU_CONFIGURE=3D yes
 XCONFIGURE_ENV=3D CPPFLAGS=3D"${CPPFLAGS}" LDFLAGS=3D"${LDFLAGS}"
 XCONFIGURE_ARGS=3D --with-cxxflags=3D"${CXXFLAGS}"
 X
 XMAN8=3D mocp.8
 X
 XCPPFLAGS=3D -I${LOCALBASE}/include
 XLDFLAGS=3D -L${LOCALBASE}/lib
 X
 XOPTIONS=3D MP3 "MP3 support" on \
 X SNDFILE "libsndfile support" off \
 X VORBIS "ogg Vorbis support" on \
 X FLAC "flac support" off \
 X CURL "libcurl support" on \
 X MUSE "musepack support" off
 X
 X.include <bsd.port.pre.mk <http://bsd.port.pre.mk>>
 X
 X.if ${OSVERSION} < 400010
 XLIB_DEPENDS+=3D ncurses.5:${PORTSDIR}/devel/ncurses
 X.endif
 X
 X.if !defined(WITHOUT_MP3)
 XLIB_DEPENDS+=3D mad.2:${PORTSDIR}/audio/mad
 X.else
 XCONFIGURE_ARGS+=3D --without-mp3
 X.endif
 X
 X.if !defined(WITHOUT_SNDFILE)
 XLIB_DEPENDS+=3D sndfile.1:${PORTSDIR}/audio/libsndfile
 X.else
 XCONFIGURE_ARGS+=3D --without-sndfile
 X.endif
 X
 X.if defined(WITHOUT_VORBIS)
 XCONFIGURE_ARGS+=3D --without-ogg
 X.else
 XLIB_DEPENDS+=3D vorbis.3:${PORTSDIR}/audio/libvorbis
 X.endif
 X
 X.if defined(WITH_FLAC)
 XLIB_DEPENDS+=3D FLAC:${PORTSDIR}/audio/flac
 X.else
 XCONFIGURE_ARGS+=3D --without-flac
 X.endif
 X
 X.if !defined(WITHOUT_CURL)
 XLIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl
 X.else
 XCONFIGURE_ARGS+=3D --without-curl
 X.endif
 X
 X.if defined(WITH_MUSE)
 XLIB_DEPENDS+=3D musepack:${PORTSDIR}/audio/musepack
 X.else
 XCONFIGURE_ARGS+=3D --without-musepack
 X.endif
 X
 Xpost-extract:
 X @${FIND} ${WRKSRC} -name "getopt*" -delete
 X
 X.include <bsd.port.post.mk <http://bsd.port.post.mk>>
 END-of-moc/Makefile
 echo x - moc/distinfo
 sed 's/^X//' >moc/distinfo << 'END-of-moc/distinfo'
 XMD5 (moc-2.3.0.tar.bz2) =3D 3d5d152c28f6e40162058fc1566c8109
 XSIZE (moc-2.3.0.tar.bz2) =3D 402954
 END-of-moc/distinfo
 echo x - moc/pkg-plist
 sed 's/^X//' >moc/pkg-plist << 'END-of-moc/pkg-plist'
 Xbin/mocp
 Xlib/moc/decoder_plugins/libmp3_decoder.la
 Xlib/moc/decoder_plugins/libmp3_decoder.so
 Xlib/moc/decoder_plugins/libogg_decoder.la
 Xlib/moc/decoder_plugins/libogg_decoder.so
 Xlib/moc/decoder_plugins/libsndfile_formats_decoder.la
 Xlib/moc/decoder_plugins/libsndfile_formats_decoder.so
 Xshare/doc/moc/README
 Xshare/doc/moc/THANKS
 Xshare/doc/moc/config.example
 Xshare/doc/moc/keymap.example
 Xshare/moc/themes/black_theme
 Xshare/moc/themes/example_theme
 Xshare/moc/themes/green_theme
 Xshare/moc/themes/nightly_theme
 Xshare/moc/themes/transparent-background
 Xshare/moc/themes/yellow_red_theme
 X@dirrm share/nls/en_US.US-ASCII
 X@dirrm share/nls/POSIX
 X@dirrm share/moc/themes
 X@dirrm share/moc
 X@dirrm share/doc/moc
 X@dirrm lib/moc/decoder_plugins
 X@dirrm lib/moc
 END-of-moc/pkg-plist
 echo x - moc/pkg-descr
 sed 's/^X//' >moc/pkg-descr << 'END-of-moc/pkg-descr'
 XMOC (music on console) is a console audio player for LINUX/UNIX designed t=
 o=20
 be
 Xpowerful and easy to use.
 X
 XMOC plays smoothly, regardless of system or I/O load because it uses the=
 =20
 output
 Xbuffer in a separate thread. It doesn't cause gaps between files, because=
 =20
 the
 Xnext file to be played is precached while playing the current file.
 X
 XSupported file formats are: mp3, Ogg Vorbis, FLAC, Musepack (mpc), Speex,=
 =20
 WAVE,
 XAIFF, AU, SVX, Sphere Nist WAV, IRCAM SF, Creative VOC.
 X
 XWWW: http://moc.daper.net/
 END-of-moc/pkg-descr
 exit
 
 ------=_Part_13455_6217415.1122508175191
 Content-Type: text/html; charset=ISO-8859-1
 Content-Transfer-Encoding: quoted-printable
 Content-Disposition: inline
 
 sorry i used a bad web client<br>
 <br>&gt;Correction:<br># This is a shell archive.&nbsp;&nbsp;Save it in a f=
 ile, remove anything before<br># this line, and then unpack it by entering =
 &quot;sh file&quot;.&nbsp;&nbsp;Note, it may<br># create directories; files=
  and directories will be owned by you and
 <br># have default permissions.<br>#<br># This archive contains:<br>#<br>#&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; moc<br>#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp; moc/Makefile<br>#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; moc/distinfo<br=
 >#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; moc/pkg-plist<br>#&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; moc/pkg-descr<br>#<br>echo c - moc<br>mkdir -p moc &gt; =
 /dev/null 2&gt;&amp;1
 <br>echo x - moc/Makefile<br>sed 's/^X//' &gt;moc/Makefile &lt;&lt; 'END-of=
 -moc/Makefile'<br>X# New ports collection makefile for:&nbsp;&nbsp; moc<br>=
 X# Date created:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;24 July 2005<br>X#
 Whom:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;R=
 evis
 Zinkov &lt;<a href=3D"mailto:rzinkov@gmail.com">rzinkov@gmail.com</a>&gt;<b=
 r>X#<br>X# $FreeBSD$<br>X#<br>X<br>XPORTNAME=3D&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;moc<br>XPORTVERSION=3D&nbsp;&nbsp; 2.3.0<br>XCATEGORIES=3D&nbsp;&nb=
 sp;&nbsp;&nbsp;audio<br>XMASTER_SITES=3D&nbsp;&nbsp;<a href=3D"ftp://ftp.da=
 per.net/pub/soft/moc/stable/">
 ftp://ftp.daper.net/pub/soft/moc/stable/</a><br>X<br>XMAINTAINER=3D&nbsp;&n=
 bsp;&nbsp;&nbsp;<a href=3D"mailto:rzinkov@gmail.com">rzinkov@gmail.com</a><=
 br>XCOMMENT=3D&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Is a console audio playe=
 r designed to be powerful and easy to use<br>X<br>XUSE_GETOPT_LONG=3D&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; yes
 <br>XUSE_GMAKE=3D&nbsp;&nbsp;&nbsp;&nbsp; yes<br>XUSE_BZIP2=3D&nbsp;&nbsp;&=
 nbsp;&nbsp; yes<br>XGNU_CONFIGURE=3D yes<br>XCONFIGURE_ENV=3D CPPFLAGS=3D&q=
 uot;${CPPFLAGS}&quot; LDFLAGS=3D&quot;${LDFLAGS}&quot;<br>XCONFIGURE_ARGS=
 =3D&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--with-cxxflags=3D&quot;=
 ${CXXFLAGS}&quot;<br>
 X<br>XMAN8=3D&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;mo=
 cp.8<br>X<br>XCPPFLAGS=3D&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-I${LOCALBASE}=
 /include<br>XLDFLAGS=3D&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -L${LOCALBASE}/=
 lib<br>X<br>XOPTIONS=3D&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MP3 &quot;MP3 s=
 upport&quot; on \<br>X&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SNDFILE &quot;libsndfile support&quot; off =
 \
 <br>X&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp; VORBIS &quot;ogg Vorbis support&quot; on \<br>X&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; FLA=
 C &quot;flac support&quot; off \<br>X&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CURL &quot;libcurl support&q=
 uot; on \<br>X&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp; MUSE &quot;musepack support&quot; off
 <br>X<br>X.include &lt;<a href=3D"http://bsd.port.pre.mk">bsd.port.pre.mk</=
 a>&gt;<br>X<br>X.if ${OSVERSION} &lt; 400010<br>XLIB_DEPENDS+=3D&nbsp;&nbsp=
 ;ncurses.5:${PORTSDIR}/devel/ncurses<br>X.endif<br>X<br>X.if !defined(WITHO=
 UT_MP3)<br>
 XLIB_DEPENDS+=3D&nbsp;&nbsp;mad.2:${PORTSDIR}/audio/mad<br>X.else<br>XCONFI=
 GURE_ARGS+=3D&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; --without-mp3<br>X.endif<=
 br>X<br>X.if !defined(WITHOUT_SNDFILE)<br>XLIB_DEPENDS+=3D&nbsp;&nbsp; sndf=
 ile.1:${PORTSDIR}/audio/libsndfile<br>X.else<br>XCONFIGURE_ARGS+=3D&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--without-sndfile
 <br>X.endif<br>X<br>X.if defined(WITHOUT_VORBIS)<br>XCONFIGURE_ARGS+=3D&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; --without-ogg<br>X.else<br>XLIB_DEPENDS+=
 =3D&nbsp;&nbsp;vorbis.3:${PORTSDIR}/audio/libvorbis<br>X.endif<br>X<br>X.if=
  defined(WITH_FLAC)<br>XLIB_DEPENDS+=3D&nbsp;&nbsp; FLAC:${PORTSDIR}/audio/=
 flac
 <br>X.else<br>XCONFIGURE_ARGS+=3D&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;--without-flac<br>X.endif<br>X<br>X.if !defined(WITHOUT_CURL)<br>XLIB=
 _DEPENDS+=3D&nbsp;&nbsp; curl.3:${PORTSDIR}/ftp/curl<br>X.else<br>XCONFIGUR=
 E_ARGS+=3D&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--without-curl<br=
 >X.endif<br>X<br>
 X.if defined(WITH_MUSE)<br>XLIB_DEPENDS+=3D&nbsp;&nbsp; musepack:${PORTSDIR=
 }/audio/musepack<br>X.else<br>XCONFIGURE_ARGS+=3D&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;--without-musepack<br>X.endif<br>X<br>Xpost-extract:<=
 br>X&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; @${FIND} ${WRKSRC} -name &quot;get=
 opt*&quot; -delete
 <br>X<br>X.include &lt;<a href=3D"http://bsd.port.post.mk">bsd.port.post.mk=
 </a>&gt;<br>END-of-moc/Makefile<br>echo x - moc/distinfo<br>sed 's/^X//' &g=
 t;moc/distinfo &lt;&lt; 'END-of-moc/distinfo'<br>XMD5 (moc-2.3.0.tar.bz2) =
 =3D 3d5d152c28f6e40162058fc1566c8109
 <br>XSIZE (moc-2.3.0.tar.bz2) =3D 402954<br>END-of-moc/distinfo<br>echo x -=
  moc/pkg-plist<br>sed 's/^X//' &gt;moc/pkg-plist &lt;&lt; 'END-of-moc/pkg-p=
 list'<br>Xbin/mocp<br>Xlib/moc/decoder_plugins/libmp3_decoder.la<br>Xlib/mo=
 c/decoder_plugins/libmp3_decoder.so
 <br>Xlib/moc/decoder_plugins/libogg_decoder.la<br>Xlib/moc/decoder_plugins/=
 libogg_decoder.so<br>Xlib/moc/decoder_plugins/libsndfile_formats_decoder.la=
 <br>Xlib/moc/decoder_plugins/libsndfile_formats_decoder.so<br>Xshare/doc/mo=
 c/README
 <br>Xshare/doc/moc/THANKS<br>Xshare/doc/moc/config.example<br>Xshare/doc/mo=
 c/keymap.example<br>Xshare/moc/themes/black_theme<br>Xshare/moc/themes/exam=
 ple_theme<br>Xshare/moc/themes/green_theme<br>Xshare/moc/themes/nightly_the=
 me
 <br>Xshare/moc/themes/transparent-background<br>Xshare/moc/themes/yellow_re=
 d_theme<br>X@dirrm share/nls/en_US.US-ASCII<br>X@dirrm share/nls/POSIX<br>X=
 @dirrm share/moc/themes<br>X@dirrm share/moc<br>X@dirrm share/doc/moc<br>
 X@dirrm lib/moc/decoder_plugins<br>X@dirrm lib/moc<br>END-of-moc/pkg-plist<=
 br>echo x - moc/pkg-descr<br>sed 's/^X//' &gt;moc/pkg-descr &lt;&lt; 'END-o=
 f-moc/pkg-descr'<br>XMOC (music on console) is a console audio player for L=
 INUX/UNIX designed to be
 <br>Xpowerful and easy to use.<br>X<br>XMOC plays smoothly, regardless of s=
 ystem or I/O load because it uses the output<br>Xbuffer in a separate threa=
 d. It doesn't cause gaps between files, because the<br>Xnext file to be pla=
 yed is precached while playing the current file.
 <br>X<br>XSupported file formats are: mp3, Ogg Vorbis, FLAC, Musepack (mpc)=
 , Speex, WAVE,<br>XAIFF, AU, SVX, Sphere Nist WAV, IRCAM SF, Creative VOC.<=
 br>X<br>XWWW: <a href=3D"http://moc.daper.net/">http://moc.daper.net/</a>
 <br>END-of-moc/pkg-descr<br>exit<br><br>
 
 ------=_Part_13455_6217415.1122508175191--

From: rzinkov@ruslug.rutgers.edu
To: bug-followup@freebsd.org
Cc: rzinkov@gmail.com
Subject: Re: ports/84153: New port: audio/moc - A featureful console music player
Date: Wed, 27 Jul 2005 20:12:13 -0400

 Ok this is one last attempt from mutt
 >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:
 #
 #	moc
 #	moc/Makefile
 #	moc/distinfo
 #	moc/pkg-plist
 #	moc/pkg-descr
 #
 echo c - moc
 mkdir -p moc > /dev/null 2>&1
 echo x - moc/Makefile
 sed 's/^X//' >moc/Makefile << 'END-of-moc/Makefile'
 X# New ports collection makefile for:	moc
 X# Date created:		24 July 2005
 X# Whom:			Revis Zinkov <rzinkov@gmail.com>
 X#
 X# $FreeBSD$
 X#
 X
 XPORTNAME=	moc
 XPORTVERSION=	2.3.0
 XCATEGORIES=	audio
 XMASTER_SITES=	ftp://ftp.daper.net/pub/soft/moc/stable/
 X
 XMAINTAINER=	rzinkov@gmail.com
 XCOMMENT=	Is a console audio player designed to be powerful and easy to use
 X
 XUSE_GETOPT_LONG=	yes
 XUSE_GMAKE=	yes
 XUSE_BZIP2=	yes
 XGNU_CONFIGURE=	yes
 XCONFIGURE_ENV=	CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
 XCONFIGURE_ARGS=	--with-cxxflags="${CXXFLAGS}"
 X
 XMAN8=		mocp.8
 X
 XCPPFLAGS=	-I${LOCALBASE}/include
 XLDFLAGS=	-L${LOCALBASE}/lib
 X
 XOPTIONS=	MP3 "MP3 support" on \
 X		SNDFILE "libsndfile support" off \
 X		VORBIS "ogg Vorbis support" on \
 X		FLAC "flac support" off \
 X		CURL "libcurl support" on \
 X		MUSE "musepack support" off
 X
 X.include <bsd.port.pre.mk>
 X
 X.if ${OSVERSION} < 400010
 XLIB_DEPENDS+=	ncurses.5:${PORTSDIR}/devel/ncurses
 X.endif
 X
 X.if !defined(WITHOUT_MP3)
 XLIB_DEPENDS+=	mad.2:${PORTSDIR}/audio/mad
 X.else
 XCONFIGURE_ARGS+=	--without-mp3
 X.endif
 X
 X.if !defined(WITHOUT_SNDFILE)
 XLIB_DEPENDS+=   sndfile.1:${PORTSDIR}/audio/libsndfile
 X.else
 XCONFIGURE_ARGS+=        --without-sndfile
 X.endif
 X
 X.if defined(WITHOUT_VORBIS)
 XCONFIGURE_ARGS+=	--without-ogg
 X.else
 XLIB_DEPENDS+=	vorbis.3:${PORTSDIR}/audio/libvorbis
 X.endif
 X
 X.if defined(WITH_FLAC)
 XLIB_DEPENDS+=   FLAC:${PORTSDIR}/audio/flac
 X.else
 XCONFIGURE_ARGS+=        --without-flac
 X.endif
 X
 X.if !defined(WITHOUT_CURL)
 XLIB_DEPENDS+=   curl.3:${PORTSDIR}/ftp/curl
 X.else
 XCONFIGURE_ARGS+=        --without-curl
 X.endif
 X
 X.if defined(WITH_MUSE)
 XLIB_DEPENDS+=   musepack:${PORTSDIR}/audio/musepack
 X.else
 XCONFIGURE_ARGS+=        --without-musepack
 X.endif
 X
 Xpost-extract:
 X	@${FIND} ${WRKSRC} -name "getopt*" -delete
 X
 X.include <bsd.port.post.mk>
 END-of-moc/Makefile
 echo x - moc/distinfo
 sed 's/^X//' >moc/distinfo << 'END-of-moc/distinfo'
 XMD5 (moc-2.3.0.tar.bz2) = 3d5d152c28f6e40162058fc1566c8109
 XSIZE (moc-2.3.0.tar.bz2) = 402954
 END-of-moc/distinfo
 echo x - moc/pkg-plist
 sed 's/^X//' >moc/pkg-plist << 'END-of-moc/pkg-plist'
 Xbin/mocp
 Xlib/moc/decoder_plugins/libmp3_decoder.la
 Xlib/moc/decoder_plugins/libmp3_decoder.so
 Xlib/moc/decoder_plugins/libogg_decoder.la
 Xlib/moc/decoder_plugins/libogg_decoder.so
 Xlib/moc/decoder_plugins/libsndfile_formats_decoder.la
 Xlib/moc/decoder_plugins/libsndfile_formats_decoder.so
 Xshare/doc/moc/README
 Xshare/doc/moc/THANKS
 Xshare/doc/moc/config.example
 Xshare/doc/moc/keymap.example
 Xshare/moc/themes/black_theme
 Xshare/moc/themes/example_theme
 Xshare/moc/themes/green_theme
 Xshare/moc/themes/nightly_theme
 Xshare/moc/themes/transparent-background
 Xshare/moc/themes/yellow_red_theme
 X@dirrm share/nls/en_US.US-ASCII
 X@dirrm share/nls/POSIX
 X@dirrm share/moc/themes
 X@dirrm share/moc
 X@dirrm share/doc/moc
 X@dirrm lib/moc/decoder_plugins
 X@dirrm lib/moc
 END-of-moc/pkg-plist
 echo x - moc/pkg-descr
 sed 's/^X//' >moc/pkg-descr << 'END-of-moc/pkg-descr'
 XMOC (music on console) is a console audio player for LINUX/UNIX designed to be
 Xpowerful and easy to use. 
 X
 XMOC plays smoothly, regardless of system or I/O load because it uses the output
 Xbuffer in a separate thread. It doesn't cause gaps between files, because the
 Xnext file to be played is precached while playing the current file.
 X
 XSupported file formats are: mp3, Ogg Vorbis, FLAC, Musepack (mpc), Speex, WAVE,
 XAIFF, AU, SVX, Sphere Nist WAV, IRCAM SF, Creative VOC.
 X
 XWWW: http://moc.daper.net/
 END-of-moc/pkg-descr
 exit
 
State-Changed-From-To: feedback->closed 
State-Changed-By: jylefort 
State-Changed-When: Thu Jul 28 23:48:19 GMT 2005 
State-Changed-Why:  
Committed with a few modifications, thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=84153 
>Unformatted:
