svn commit: r354793 - in head/print/lilypond-devel: . files

Pietro Cerutti gahr at FreeBSD.org
Thu May 22 07:14:40 UTC 2014


Author: gahr
Date: Thu May 22 07:14:39 2014
New Revision: 354793
URL: http://svnweb.freebsd.org/changeset/ports/354793
QAT: https://qat.redports.org/buildarchive/r354793/

Log:
  - Update to 2.19.6

Added:
  head/print/lilypond-devel/files/patch-flower-include_std-string.hh   (contents, props changed)
  head/print/lilypond-devel/files/patch-flower-include_std-vector.hh   (contents, props changed)
Modified:
  head/print/lilypond-devel/Makefile
  head/print/lilypond-devel/distinfo

Modified: head/print/lilypond-devel/Makefile
==============================================================================
--- head/print/lilypond-devel/Makefile	Thu May 22 06:46:58 2014	(r354792)
+++ head/print/lilypond-devel/Makefile	Thu May 22 07:14:39 2014	(r354793)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	lilypond
-PORTVERSION=	2.19.3
-PORTREVISION=	1
+PORTVERSION=	2.19.6
 CATEGORIES=	print audio
 MASTER_SITES=	http://download.linuxaudio.org/lilypond/sources/v${PORTVERSION:R}/
 PKGNAMESUFFIX=	-devel
@@ -45,7 +44,8 @@ INFO=		internals \
 		lilypond-web \
 		music-glossary
 
-USES=		bison:build gettext gmake pkgconfig perl5
+USES=		bison:build gettext gmake pkgconfig perl5 compiler:c++11-lib
+USE_CXXSTD=	c++11
 USE_GHOSTSCRIPT=9
 USE_TEX=	latex
 USE_PYTHON=	-3

Modified: head/print/lilypond-devel/distinfo
==============================================================================
--- head/print/lilypond-devel/distinfo	Thu May 22 06:46:58 2014	(r354792)
+++ head/print/lilypond-devel/distinfo	Thu May 22 07:14:39 2014	(r354793)
@@ -1,2 +1,2 @@
-SHA256 (lilypond-2.19.3.tar.gz) = 08efddcd3b24675870c6891932205361a2f9d839c49760798d48d6df7b36053e
-SIZE (lilypond-2.19.3.tar.gz) = 16035346
+SHA256 (lilypond-2.19.6.tar.gz) = 19e24f19ef79a17c62ec2ce46b2f550209e27c3cd7df6f48789c43b99bb7a01e
+SIZE (lilypond-2.19.6.tar.gz) = 16043555

Added: head/print/lilypond-devel/files/patch-flower-include_std-string.hh
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/print/lilypond-devel/files/patch-flower-include_std-string.hh	Thu May 22 07:14:39 2014	(r354793)
@@ -0,0 +1,18 @@
+--- flower/include/std-string.hh.orig	2014-04-07 10:27:23.000000000 +0200
++++ flower/include/std-string.hh	2014-04-07 10:27:33.000000000 +0200
+@@ -39,6 +39,7 @@
+ typedef size_t ssize;
+ #define NPOS string::npos
+ 
++#if _cplusplus <= 19971L
+ string to_string (const string&);
+ string to_string (char c, int n = 1);
+ string to_string (int i, char const *format = 0);
+@@ -50,6 +51,7 @@
+ string to_string (bool b);
+ string to_string (char const *format, ...)
+ __attribute__ ((format (printf, 1, 2)));
++#endif
+ 
+ string &replace_all (string *str, string const &find, string const &replace);
+ string &replace_all (string *str, char find, char replace);

Added: head/print/lilypond-devel/files/patch-flower-include_std-vector.hh
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/print/lilypond-devel/files/patch-flower-include_std-vector.hh	Thu May 22 07:14:39 2014	(r354793)
@@ -0,0 +1,10 @@
+--- flower/include/std-vector.hh.orig	2014-05-05 10:25:02.000000000 +0200
++++ flower/include/std-vector.hh	2014-05-05 10:28:54.000000000 +0200
+@@ -261,6 +261,6 @@
+ vector<string> string_split (string str, char c);
+ string string_join (vector<string> const &strs, const string &infix);
+ 
+-#define iterof(i,s) typeof((s).begin()) i((s).begin())
++#define iterof(i,s) auto i = ((s).begin())
+ 
+ #endif /* STD_VECTOR_HH */


More information about the svn-ports-all mailing list