Bug 126865 - New Port audio/ncmpcpp: clone of ncmpc but containing some new features ncmpc doesn't have
Summary: New Port audio/ncmpcpp: clone of ncmpc but containing some new features ncmpc...
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Martin Wilke
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-08-26 20:30 UTC by Dennis Herrmann
Modified: 2008-08-31 15:30 UTC (History)
0 users

See Also:


Attachments
file.shar (2.92 KB, text/plain)
2008-08-26 20:30 UTC, Dennis Herrmann
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Dennis Herrmann 2008-08-26 20:30:06 UTC
Ncmpcpp is almost exact clone of ncmpc but it contains some new features
ncmpc doesn't have. It's been also rewritten from scratch in C++. Lack of
some function (eg. tag editor, no possibility of going to chosen position
in playing song without fastforwarding/rewinding) eventually pushed me to
rewrite it as ncmpc++ and include these functions in it.

* tag editor
* easy to use search screen
* media library screen
* lyrics screen
* possibility of going to any position in currently playing track without
  rewinding/fastforwarding
* multi colored main window (if you want)
* songs can be added to playlist more than once

Fix: Patch attached with submission follows:
Comment 1 Martin Wilke freebsd_committer freebsd_triage 2008-08-27 08:46:53 UTC
Responsible Changed
From-To: freebsd-ports-bugs->miwi

I'll take it.
Comment 2 Dennis Herrmann 2008-08-30 11:30:32 UTC
>Submitter-Id:	current-users
>Originator:	Dennis Herrmann
>Organization:	
>Confidential:	no
>Synopsis:	Re: ports/126865: New Port audio/ncmpcpp: clone of ncmpc but containing some new features ncmpc doesn't have
>Severity:	non-critical
>Priority:	low
>Category:	ports
>Class:		update
>Release:	FreeBSD 7.0-STABLE i386
>Environment:
System: FreeBSD contempt 7.0-STABLE FreeBSD 7.0-STABLE #1: Sun Aug 24 16:57:50 CEST 2008 root@:/usr/obj/usr/src/sys/CONTEMPT i386

>Description:
	ncmpcpp update 0.2.1

	* support for composer, performer and disc tag
	* customizable keybindings
	* "add" option added
	* example config files are installed automatically now
	* "repeat one song" mode added (works only if ncmpcpp is running)
	* minor fixes, improvements etc.

>Fix:

--- ncmpcpp-0.2.1.diff begins here ---
diff -ruN ncmpcpp.orig/Makefile ncmpcpp/Makefile
--- ncmpcpp.orig/Makefile	2008-08-30 11:09:35.000000000 +0200
+++ ncmpcpp/Makefile	2008-08-30 11:16:30.000000000 +0200
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	ncmpcpp
-PORTVERSION=	0.2
+PORTVERSION=	0.2.1
 CATEGORIES=	audio
 MASTER_SITES=	http://unkart.ovh.org/ncmpcpp/ \
 		http://mirror.mcx2.org/
@@ -27,7 +27,8 @@
 .include <bsd.port.pre.mk>
 
 PLIST_FILES=	bin/ncmpcpp \
-				%%EXAMPLESDIR%%/ncmpcpprc.sample
+				%%EXAMPLESDIR%%/ncmpcpprc.sample \
+				%%EXAMPLESDIR%%/ncmpcpp_keys
 PLIST_DIRS=	%%EXAMPLESDIR%%
 
 .if !defined(WITHOUT_CURL)
@@ -47,7 +48,8 @@
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/src/ncmpcpp ${PREFIX}/bin/
 	${MKDIR} ${EXAMPLESDIR}
-	${INSTALL_DATA} ${WRKSRC}/examples/ncmpcpprc ${EXAMPLESDIR}/ncmpcpprc.sample
+	${INSTALL_DATA} ${WRKSRC}/doc/ncmpcpprc ${EXAMPLESDIR}/ncmpcpprc.sample
+	${INSTALL_DATA} ${WRKSRC}/doc/ncmpcpp_keys ${EXAMPLESDIR}/ncmpcpp_keys
 
 	@${ECHO_MSG} ""
 	@${CAT} ${PKGMESSAGE}
diff -ruN ncmpcpp.orig/distinfo ncmpcpp/distinfo
--- ncmpcpp.orig/distinfo	2008-08-30 11:09:35.000000000 +0200
+++ ncmpcpp/distinfo	2008-08-30 11:00:15.000000000 +0200
@@ -1,3 +1,3 @@
-MD5 (ncmpcpp-0.2.tar.bz2) = d2f67e5c2dccc0fcaac13b67a5011ed9
-SHA256 (ncmpcpp-0.2.tar.bz2) = 77aa8bb89ea72e98d90e010f7c3075fd1b3660dd40706c69597463182990b19c
-SIZE (ncmpcpp-0.2.tar.bz2) = 283557
+MD5 (ncmpcpp-0.2.1.tar.bz2) = 14d4022f9c9cd98cc4871e6335cdf26c
+SHA256 (ncmpcpp-0.2.1.tar.bz2) = 08718dd17341fbc6d9752738bcf631721686ed8c7e43a307eeb468c688f09fd9
+SIZE (ncmpcpp-0.2.1.tar.bz2) = 286624
--- ncmpcpp-0.2.1.diff ends here ---
Comment 3 Dennis Herrmann 2008-08-30 11:49:05 UTC
>Submitter-Id:	current-users
>Originator:	Dennis Herrmann
>Organization:	
>Confidential:	no
>Synopsis:	·Re: ports/126865: New Port audio/ncmpcpp: clone of ncmpc but containing some new feature ncmpc doesn't have
>Severity:	non-critical
>Priority:	low
>Category:	ports
>Class:		update
>Release:	FreeBSD 7.0-STABLE i386
>Environment:
System: FreeBSD contempt 7.0-STABLE FreeBSD 7.0-STABLE #1: Sun Aug 24 16:57:50 CEST 2008 root@:/usr/obj/usr/src/sys/CONTEMPT i386

>Description:
ncmpcpp update 0.2.1
	* support for composer, performer and disc tag
	* customizable keybindings
	* "add" option added
	* example config files are installed automatically now
	* "repeat one song" mode added (works only if ncmpcpp is running)
	* minor fixes, improvements etc.
>Fix:

--- ncmpcpp-0.2.1.diff begins here ---
diff -ruN ncmpcpp.orig/Makefile ncmpcpp/Makefile
--- ncmpcpp.orig/Makefile	2008-08-30 11:09:35.000000000 +0200
+++ ncmpcpp/Makefile	2008-08-30 11:16:30.000000000 +0200
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	ncmpcpp
-PORTVERSION=	0.2
+PORTVERSION=	0.2.1
 CATEGORIES=	audio
 MASTER_SITES=	http://unkart.ovh.org/ncmpcpp/ \
 		http://mirror.mcx2.org/
@@ -27,7 +27,8 @@
 .include <bsd.port.pre.mk>
 
 PLIST_FILES=	bin/ncmpcpp \
-				%%EXAMPLESDIR%%/ncmpcpprc.sample
+				%%EXAMPLESDIR%%/ncmpcpprc.sample \
+				%%EXAMPLESDIR%%/ncmpcpp_keys
 PLIST_DIRS=	%%EXAMPLESDIR%%
 
 .if !defined(WITHOUT_CURL)
@@ -47,7 +48,8 @@
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/src/ncmpcpp ${PREFIX}/bin/
 	${MKDIR} ${EXAMPLESDIR}
-	${INSTALL_DATA} ${WRKSRC}/examples/ncmpcpprc ${EXAMPLESDIR}/ncmpcpprc.sample
+	${INSTALL_DATA} ${WRKSRC}/doc/ncmpcpprc ${EXAMPLESDIR}/ncmpcpprc.sample
+	${INSTALL_DATA} ${WRKSRC}/doc/ncmpcpp_keys ${EXAMPLESDIR}/ncmpcpp_keys
 
 	@${ECHO_MSG} ""
 	@${CAT} ${PKGMESSAGE}
diff -ruN ncmpcpp.orig/distinfo ncmpcpp/distinfo
--- ncmpcpp.orig/distinfo	2008-08-30 11:09:35.000000000 +0200
+++ ncmpcpp/distinfo	2008-08-30 11:00:15.000000000 +0200
@@ -1,3 +1,3 @@
-MD5 (ncmpcpp-0.2.tar.bz2) = d2f67e5c2dccc0fcaac13b67a5011ed9
-SHA256 (ncmpcpp-0.2.tar.bz2) = 77aa8bb89ea72e98d90e010f7c3075fd1b3660dd40706c69597463182990b19c
-SIZE (ncmpcpp-0.2.tar.bz2) = 283557
+MD5 (ncmpcpp-0.2.1.tar.bz2) = 14d4022f9c9cd98cc4871e6335cdf26c
+SHA256 (ncmpcpp-0.2.1.tar.bz2) = 08718dd17341fbc6d9752738bcf631721686ed8c7e43a307eeb468c688f09fd9
+SIZE (ncmpcpp-0.2.1.tar.bz2) = 286624
--- ncmpcpp-0.2.1.diff ends here ---
Comment 4 Martin Wilke freebsd_committer freebsd_triage 2008-08-30 13:09:44 UTC
State Changed
From-To: open->closed

New port added. Thanks!
Comment 5 dfilter service freebsd_committer freebsd_triage 2008-08-30 13:12:22 UTC
miwi        2008-08-30 12:12:07 UTC

  FreeBSD ports repository

  Modified files:
    audio                Makefile 
  Added files:
    audio/ncmpcpp        Makefile distinfo pkg-descr pkg-message 
  Log:
  Ncmpcpp is almost exact clone of ncmpc but it contains some
  new features ncmpc doesn't have. It's been also rewritten
  from scratch in C++.
  
  WWW:    http://unkart.ovh.org/ncmpcpp/
  
  PR:             ports/126865
  Submitted by:   Dennis Herrmann <adox at mcx2.org>
  
  Revision  Changes    Path
  1.982     +1 -0      ports/audio/Makefile
  1.1       +59 -0     ports/audio/ncmpcpp/Makefile (new)
  1.1       +3 -0      ports/audio/ncmpcpp/distinfo (new)
  1.1       +5 -0      ports/audio/ncmpcpp/pkg-descr (new)
  1.1       +9 -0      ports/audio/ncmpcpp/pkg-message (new)
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"