diff options
author | gahr <gahr@FreeBSD.org> | 2013-04-18 14:52:01 +0800 |
---|---|---|
committer | gahr <gahr@FreeBSD.org> | 2013-04-18 14:52:01 +0800 |
commit | e890c9ffa645e36a1ed9b48693c8b81d77d8c0dd (patch) | |
tree | d38aed8ed089b0619b534e2a2b10e80acd8bfd20 /print | |
parent | 934bb2fa4a08aa459a97982a4997807bc4375cdb (diff) | |
download | freebsd-ports-gnome-e890c9ffa645e36a1ed9b48693c8b81d77d8c0dd.tar.gz freebsd-ports-gnome-e890c9ffa645e36a1ed9b48693c8b81d77d8c0dd.tar.zst freebsd-ports-gnome-e890c9ffa645e36a1ed9b48693c8b81d77d8c0dd.zip |
- Resurrect and update to the latest development version 2.17.16
Thanks to Kim Shrier <kim@westryn.net>, who has committed himself to helping
me in maintaining it up to date.
Feature safe: yes
Diffstat (limited to 'print')
-rw-r--r-- | print/Makefile | 1 | ||||
-rw-r--r-- | print/lilypond-devel/Makefile | 88 | ||||
-rw-r--r-- | print/lilypond-devel/distinfo | 2 | ||||
-rw-r--r-- | print/lilypond-devel/files/patch-Documentation_GNUmakefile | 14 | ||||
-rw-r--r-- | print/lilypond-devel/files/patch-config.make.in | 11 | ||||
-rw-r--r-- | print/lilypond-devel/files/patch-stepmake_stepmake_texinfo-vars.make | 11 | ||||
-rw-r--r-- | print/lilypond-devel/pkg-descr | 12 | ||||
-rw-r--r-- | print/lilypond-devel/pkg-plist | 370 |
8 files changed, 509 insertions, 0 deletions
diff --git a/print/Makefile b/print/Makefile index 8905a37baa57..3306df37fe5a 100644 --- a/print/Makefile +++ b/print/Makefile @@ -169,6 +169,7 @@ SUBDIR += libppd SUBDIR += libspectre SUBDIR += lilypond + SUBDIR += lilypond-devel SUBDIR += linux-f10-cups-libs SUBDIR += lout SUBDIR += lpr-wrapper diff --git a/print/lilypond-devel/Makefile b/print/lilypond-devel/Makefile new file mode 100644 index 000000000000..08a218f7507e --- /dev/null +++ b/print/lilypond-devel/Makefile @@ -0,0 +1,88 @@ +# Created by: patrick, trevor +# $FreeBSD$ + +PORTNAME= lilypond +PORTVERSION= 2.17.16 +CATEGORIES= print audio +MASTER_SITES= http://download.linuxaudio.org/lilypond/sources/v${PORTVERSION:R}/ + +MAINTAINER= gahr@FreeBSD.org +COMMENT= The GNU music typesetter + +BUILD_DEPENDS= latex:${PORTSDIR}/print/teTeX-base \ + pdftexi2dvi:${PORTSDIR}/print/texinfo \ + t1ascii:${PORTSDIR}/print/t1utils \ + bash:${PORTSDIR}/shells/bash \ + fontforge:${PORTSDIR}/print/fontforge \ + ${LOCALBASE}/share/ghostscript/fonts/c059033l.pfb:${PORTSDIR}/print/gsfonts + +LIB_DEPENDS= guile:${PORTSDIR}/lang/guile \ + gmp:${PORTSDIR}/math/gmp \ + freetype:${PORTSDIR}/print/freetype2 + +RUN_DEPENDS= latex:${PORTSDIR}/print/teTeX-base \ + dblatex:${PORTSDIR}/textproc/dblatex \ + mftrace:${PORTSDIR}/print/mftrace \ + pngtopnm:${PORTSDIR}/graphics/netpbm \ + convert:${PORTSDIR}/graphics/ImageMagick \ + ${LOCALBASE}/lib/X11/fonts/dejavu/DejaVuSans-Bold.ttf:${PORTSDIR}/x11-fonts/dejavu + +MAN1= lilymidi.1 lilypond-book.1 lilypond-invoke-editor.1 \ + lilypond.1 lilysong.1 convert-ly.1 abc2ly.1 etf2ly.1 \ + midi2ly.1 musicxml2ly.1 + +INFO= lilypond-notation \ + lilypond-usage \ + lilypond-internals \ + lilypond-learning \ + lilypond-changes \ + lilypond-contributor \ + lilypond-essay \ + lilypond-extending \ + lilypond-snippets \ + lilypond-web \ + music-glossary \ + internals + +USE_BISON= build +USE_GETTEXT= yes +USE_GMAKE= yes +USE_GHOSTSCRIPT=9 +USE_PYTHON= yes +USE_PERL5_BUILD=yes +USE_GNOME= pango + +MAKEFILE= GNUmakefile +GNU_MAKEFILE= yes +MAKE_JOBS_UNSAFE= yes + +GNU_CONFIGURE= yes +CONFIGURE_ARGS+=--with-ncsb-dir=${LOCALBASE}/share/ghostscript/fonts +CONFIGURE_ENV+= ac_cv_prog_MAKEINFO="${LOCALBASE}/bin/makeinfo" \ + FLEX=${FLEX} YACC=${YACC} + +ALL_TARGET= all + +NOCCACHE= yes + +PLIST_SUB= PORTVERSION=${PORTVERSION} + +.include <bsd.port.options.mk> + +.if ${PORT_OPTIONS:MNLS} +PLIST_SUB+= NLS="" +.else +PLIST_SUB+= NLS="@comment " +.endif + +post-patch: + ${REINPLACE_CMD} -e 's|<FlexLexer.h>|"/usr/include/FlexLexer.h"|' \ + ${WRKSRC}/lily/include/includable-lexer.hh +.if !${PORT_OPTIONS:MNLS} + ${REINPLACE_CMD} -e '/po \\$$/d' ${WRKSRC}/${MAKEFILE}.in +.endif + +post-install: + @${LN} -fs ${DATADIR}/${PORTVERSION} ${DATADIR}/current + +.include <bsd.port.mk> diff --git a/print/lilypond-devel/distinfo b/print/lilypond-devel/distinfo new file mode 100644 index 000000000000..c3888d6acb2d --- /dev/null +++ b/print/lilypond-devel/distinfo @@ -0,0 +1,2 @@ +SHA256 (lilypond-2.17.16.tar.gz) = 593bcdf80753f3b60eb53ae011f8f931ec5f9b0356cc39f8cc0fee883bb1ca18 +SIZE (lilypond-2.17.16.tar.gz) = 16262898 diff --git a/print/lilypond-devel/files/patch-Documentation_GNUmakefile b/print/lilypond-devel/files/patch-Documentation_GNUmakefile new file mode 100644 index 000000000000..87759fd94f9d --- /dev/null +++ b/print/lilypond-devel/files/patch-Documentation_GNUmakefile @@ -0,0 +1,14 @@ +--- Documentation/GNUmakefile.orig 2012-08-28 14:06:34.000000000 +0200 ++++ Documentation/GNUmakefile 2012-08-28 14:06:18.000000000 +0200 +@@ -77,9 +77,9 @@ + MAIN_INFO_DOC = lilypond-web + INFO_DOCS = lilypond-usage lilypond-changes lilypond-contributor lilypond-internals \ + lilypond-essay lilypond-learning lilypond-notation music-glossary \ +- lilypond-web lilypond-extending ++ lilypond-web lilypond-extending lilypond-snippets internals + ifeq ($(out),www) +-INFO_DOCS += lilypond-snippets ++INFO_DOCS += + endif + INFO_FILES = $(INFO_DOCS:%=$(outdir)/%.info) + diff --git a/print/lilypond-devel/files/patch-config.make.in b/print/lilypond-devel/files/patch-config.make.in new file mode 100644 index 000000000000..b9e8342e16e9 --- /dev/null +++ b/print/lilypond-devel/files/patch-config.make.in @@ -0,0 +1,11 @@ +--- config.make.in.orig Sun Apr 11 10:26:32 2004 ++++ config.make.in Sun Apr 11 10:26:46 2004 +@@ -41,7 +41,7 @@ + + # move out of config.make.in? + package_datadir = $(datadir)/$(package) +-package_infodir = $(infodir)/$(package) ++package_infodir = $(infodir) + package_libdir = $(libdir)/$(package) + package_docdir = $(docdir)/$(package) + package_omfdir = $(omfdir)/$(package) diff --git a/print/lilypond-devel/files/patch-stepmake_stepmake_texinfo-vars.make b/print/lilypond-devel/files/patch-stepmake_stepmake_texinfo-vars.make new file mode 100644 index 000000000000..ccc047aa64ba --- /dev/null +++ b/print/lilypond-devel/files/patch-stepmake_stepmake_texinfo-vars.make @@ -0,0 +1,11 @@ +--- stepmake/stepmake/texinfo-vars.make.orig 2013-02-23 09:14:13.000000000 -0700 ++++ stepmake/stepmake/texinfo-vars.make 2013-03-08 12:16:51.000000000 -0700 +@@ -33,7 +33,7 @@ + + DOCUMENTATION_INCLUDES += -I $(top-src-dir)/Documentation + +-MAKEINFO_FLAGS += --enable-encoding --error-limit=0 $(DOCUMENTATION_INCLUDES) ++MAKEINFO_FLAGS += --enable-encoding --force $(DOCUMENTATION_INCLUDES) + MAKEINFO = LANG= $(MAKEINFO_PROGRAM) $(MAKEINFO_FLAGS) + + # texi2html xref map files diff --git a/print/lilypond-devel/pkg-descr b/print/lilypond-devel/pkg-descr new file mode 100644 index 000000000000..cbe4b263e035 --- /dev/null +++ b/print/lilypond-devel/pkg-descr @@ -0,0 +1,12 @@ +LilyPond is a music typesetter. It produces sheet music using a +high-level description file, which is plain text, as input. You +can use your favorite text editor to enter the description files. +The font and the layout were inspired by engraved music, but can +be modified. The program also has limited MIDI functionality: you +can write MIDI files, and there is a MIDI to lilypond conversion +tool, midi2ly. Conversion tools for PMX, MUP, ABC, Finale and +Musedata are also included. + +WWW: http://lilypond.org/web/ + +Patrick Atamaniuk diff --git a/print/lilypond-devel/pkg-plist b/print/lilypond-devel/pkg-plist new file mode 100644 index 000000000000..23f1998c74f2 --- /dev/null +++ b/print/lilypond-devel/pkg-plist @@ -0,0 +1,370 @@ +bin/lilypond-book +bin/lilypond-invoke-editor +bin/lilypond +bin/lilysong +bin/lilymidi +bin/musicxml2ly +bin/abc2ly +bin/convert-ly +bin/etf2ly +bin/midi2ly +lib/lilypond/%%PORTVERSION%%/python/midi.so +%%DATADIR%%/%%PORTVERSION%%/fonts/otf/CenturySchL-Bold.otf +%%DATADIR%%/%%PORTVERSION%%/fonts/otf/CenturySchL-BoldItal.otf +%%DATADIR%%/%%PORTVERSION%%/fonts/otf/CenturySchL-Ital.otf +%%DATADIR%%/%%PORTVERSION%%/fonts/otf/CenturySchL-Roma.otf +%%DATADIR%%/%%PORTVERSION%%/fonts/otf/emmentaler-11.otf +%%DATADIR%%/%%PORTVERSION%%/fonts/otf/emmentaler-13.otf +%%DATADIR%%/%%PORTVERSION%%/fonts/otf/emmentaler-14.otf +%%DATADIR%%/%%PORTVERSION%%/fonts/otf/emmentaler-16.otf +%%DATADIR%%/%%PORTVERSION%%/fonts/otf/emmentaler-18.otf +%%DATADIR%%/%%PORTVERSION%%/fonts/otf/emmentaler-20.otf +%%DATADIR%%/%%PORTVERSION%%/fonts/otf/emmentaler-23.otf +%%DATADIR%%/%%PORTVERSION%%/fonts/otf/emmentaler-26.otf +%%DATADIR%%/%%PORTVERSION%%/fonts/otf/emmentaler-brace.otf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-accidentals.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-accordion.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-alphabet.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-alphabet11.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-alphabet13.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-alphabet14.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-alphabet16.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-alphabet18.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-alphabet20.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-alphabet23.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-alphabet26.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-arrowheads.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-autometric.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-braces-a.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-braces-b.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-braces-c.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-braces-d.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-braces-e.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-braces-f.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-braces-g.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-braces-h.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-braces-i.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-braces.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-brackettips.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-clefs.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-dots.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-dynamics.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-flags-generic.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-flags.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-flags11.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-flags13.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-flags14.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-flags16.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-flags18.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-flags20.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-flags23.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-flags26.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-generic.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-macros.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-noteheads-generic.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-noteheads.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-noteheads11.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-noteheads13.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-noteheads14.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-noteheads16.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-noteheads18.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-noteheads20.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-noteheads23.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-noteheads26.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-numbers.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-params.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-pedals.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-rests.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-scripts.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-test-generic.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-test11.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-test13.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-test16.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-test20.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-test23.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-test26.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-ties.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-timesignatures.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta-trills.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta11.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta13.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta14.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta16.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta18.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta20.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta23.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/feta26.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/parmesan-accidentals.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/parmesan-clefs.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/parmesan-custodes.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/parmesan-dots.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/parmesan-flags.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/parmesan-generic.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/parmesan-macros.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/parmesan-noteheads-generic.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/parmesan-noteheads.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/parmesan-noteheads11.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/parmesan-noteheads13.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/parmesan-noteheads14.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/parmesan-noteheads16.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/parmesan-noteheads18.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/parmesan-noteheads20.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/parmesan-noteheads23.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/parmesan-noteheads26.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/parmesan-rests.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/parmesan-scripts.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/parmesan-timesignatures.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/parmesan11.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/parmesan13.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/parmesan14.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/parmesan16.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/parmesan18.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/parmesan20.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/parmesan23.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/source/parmesan26.mf +%%DATADIR%%/%%PORTVERSION%%/fonts/svg/emmentaler-11.svg +%%DATADIR%%/%%PORTVERSION%%/fonts/svg/emmentaler-11.woff +%%DATADIR%%/%%PORTVERSION%%/fonts/svg/emmentaler-13.svg +%%DATADIR%%/%%PORTVERSION%%/fonts/svg/emmentaler-13.woff +%%DATADIR%%/%%PORTVERSION%%/fonts/svg/emmentaler-14.svg +%%DATADIR%%/%%PORTVERSION%%/fonts/svg/emmentaler-14.woff +%%DATADIR%%/%%PORTVERSION%%/fonts/svg/emmentaler-16.svg +%%DATADIR%%/%%PORTVERSION%%/fonts/svg/emmentaler-16.woff +%%DATADIR%%/%%PORTVERSION%%/fonts/svg/emmentaler-18.svg +%%DATADIR%%/%%PORTVERSION%%/fonts/svg/emmentaler-18.woff +%%DATADIR%%/%%PORTVERSION%%/fonts/svg/emmentaler-20.svg +%%DATADIR%%/%%PORTVERSION%%/fonts/svg/emmentaler-20.woff +%%DATADIR%%/%%PORTVERSION%%/fonts/svg/emmentaler-23.svg +%%DATADIR%%/%%PORTVERSION%%/fonts/svg/emmentaler-23.woff +%%DATADIR%%/%%PORTVERSION%%/fonts/svg/emmentaler-26.svg +%%DATADIR%%/%%PORTVERSION%%/fonts/svg/emmentaler-26.woff +%%DATADIR%%/%%PORTVERSION%%/fonts/svg/emmentaler-brace.svg +%%DATADIR%%/%%PORTVERSION%%/fonts/svg/emmentaler-brace.woff +%%DATADIR%%/%%PORTVERSION%%/ly/Welcome-to-LilyPond-MacOS.ly +%%DATADIR%%/%%PORTVERSION%%/ly/Welcome_to_LilyPond.ly +%%DATADIR%%/%%PORTVERSION%%/ly/arabic.ly +%%DATADIR%%/%%PORTVERSION%%/ly/articulate.ly +%%DATADIR%%/%%PORTVERSION%%/ly/bagpipe.ly +%%DATADIR%%/%%PORTVERSION%%/ly/catalan.ly +%%DATADIR%%/%%PORTVERSION%%/ly/chord-modifiers-init.ly +%%DATADIR%%/%%PORTVERSION%%/ly/chord-repetition-init.ly +%%DATADIR%%/%%PORTVERSION%%/ly/context-mods-init.ly +%%DATADIR%%/%%PORTVERSION%%/ly/declarations-init.ly +%%DATADIR%%/%%PORTVERSION%%/ly/deutsch.ly +%%DATADIR%%/%%PORTVERSION%%/ly/drumpitch-init.ly +%%DATADIR%%/%%PORTVERSION%%/ly/dynamic-scripts-init.ly +%%DATADIR%%/%%PORTVERSION%%/ly/english.ly +%%DATADIR%%/%%PORTVERSION%%/ly/engraver-init.ly +%%DATADIR%%/%%PORTVERSION%%/ly/espanol.ly +%%DATADIR%%/%%PORTVERSION%%/ly/event-listener.ly +%%DATADIR%%/%%PORTVERSION%%/ly/festival.ly +%%DATADIR%%/%%PORTVERSION%%/ly/generate-documentation.ly +%%DATADIR%%/%%PORTVERSION%%/ly/generate-interface-doc-init.ly +%%DATADIR%%/%%PORTVERSION%%/ly/grace-init.ly +%%DATADIR%%/%%PORTVERSION%%/ly/graphviz-init.ly +%%DATADIR%%/%%PORTVERSION%%/ly/gregorian.ly +%%DATADIR%%/%%PORTVERSION%%/ly/guile-debugger.ly +%%DATADIR%%/%%PORTVERSION%%/ly/init.ly +%%DATADIR%%/%%PORTVERSION%%/ly/italiano.ly +%%DATADIR%%/%%PORTVERSION%%/ly/lilypond-book-preamble.ly +%%DATADIR%%/%%PORTVERSION%%/ly/makam.ly +%%DATADIR%%/%%PORTVERSION%%/ly/midi-init.ly +%%DATADIR%%/%%PORTVERSION%%/ly/music-functions-init.ly +%%DATADIR%%/%%PORTVERSION%%/ly/nederlands.ly +%%DATADIR%%/%%PORTVERSION%%/ly/norsk.ly +%%DATADIR%%/%%PORTVERSION%%/ly/paper-defaults-init.ly +%%DATADIR%%/%%PORTVERSION%%/ly/performer-init.ly +%%DATADIR%%/%%PORTVERSION%%/ly/portugues.ly +%%DATADIR%%/%%PORTVERSION%%/ly/predefined-fretboards-init.ly +%%DATADIR%%/%%PORTVERSION%%/ly/predefined-guitar-fretboards.ly +%%DATADIR%%/%%PORTVERSION%%/ly/predefined-guitar-ninth-fretboards.ly +%%DATADIR%%/%%PORTVERSION%%/ly/predefined-mandolin-fretboards.ly +%%DATADIR%%/%%PORTVERSION%%/ly/predefined-ukulele-fretboards.ly +%%DATADIR%%/%%PORTVERSION%%/ly/property-init.ly +%%DATADIR%%/%%PORTVERSION%%/ly/scale-definitions-init.ly +%%DATADIR%%/%%PORTVERSION%%/ly/scheme-sandbox.ly +%%DATADIR%%/%%PORTVERSION%%/ly/script-init.ly +%%DATADIR%%/%%PORTVERSION%%/ly/spanners-init.ly +%%DATADIR%%/%%PORTVERSION%%/ly/string-tunings-init.ly +%%DATADIR%%/%%PORTVERSION%%/ly/suomi.ly +%%DATADIR%%/%%PORTVERSION%%/ly/svenska.ly +%%DATADIR%%/%%PORTVERSION%%/ly/text-replacements.ly +%%DATADIR%%/%%PORTVERSION%%/ly/titling-init.ly +%%DATADIR%%/%%PORTVERSION%%/ly/toc-init.ly +%%DATADIR%%/%%PORTVERSION%%/ly/vlaams.ly +%%DATADIR%%/%%PORTVERSION%%/ps/lilyponddefs.ps +%%DATADIR%%/%%PORTVERSION%%/ps/music-drawing-routines.ps +%%DATADIR%%/%%PORTVERSION%%/python/book_base.py +%%DATADIR%%/%%PORTVERSION%%/python/book_base.pyc +%%DATADIR%%/%%PORTVERSION%%/python/book_docbook.py +%%DATADIR%%/%%PORTVERSION%%/python/book_docbook.pyc +%%DATADIR%%/%%PORTVERSION%%/python/book_html.py +%%DATADIR%%/%%PORTVERSION%%/python/book_html.pyc +%%DATADIR%%/%%PORTVERSION%%/python/book_latex.py +%%DATADIR%%/%%PORTVERSION%%/python/book_latex.pyc +%%DATADIR%%/%%PORTVERSION%%/python/book_snippets.py +%%DATADIR%%/%%PORTVERSION%%/python/book_snippets.pyc +%%DATADIR%%/%%PORTVERSION%%/python/book_texinfo.py +%%DATADIR%%/%%PORTVERSION%%/python/book_texinfo.pyc +%%DATADIR%%/%%PORTVERSION%%/python/convertrules.py +%%DATADIR%%/%%PORTVERSION%%/python/convertrules.pyc +%%DATADIR%%/%%PORTVERSION%%/python/fontextract.py +%%DATADIR%%/%%PORTVERSION%%/python/fontextract.pyc +%%DATADIR%%/%%PORTVERSION%%/python/langdefs.py +%%DATADIR%%/%%PORTVERSION%%/python/langdefs.pyc +%%DATADIR%%/%%PORTVERSION%%/python/lilylib.py +%%DATADIR%%/%%PORTVERSION%%/python/lilylib.pyc +%%DATADIR%%/%%PORTVERSION%%/python/musicexp.py +%%DATADIR%%/%%PORTVERSION%%/python/musicexp.pyc +%%DATADIR%%/%%PORTVERSION%%/python/musicxml.py +%%DATADIR%%/%%PORTVERSION%%/python/musicxml.pyc +%%DATADIR%%/%%PORTVERSION%%/python/rational.py +%%DATADIR%%/%%PORTVERSION%%/python/rational.pyc +%%DATADIR%%/%%PORTVERSION%%/python/safeeval.py +%%DATADIR%%/%%PORTVERSION%%/python/safeeval.pyc +%%DATADIR%%/%%PORTVERSION%%/scm/auto-beam.scm +%%DATADIR%%/%%PORTVERSION%%/scm/autochange.scm +%%DATADIR%%/%%PORTVERSION%%/scm/backend-library.scm +%%DATADIR%%/%%PORTVERSION%%/scm/bar-line.scm +%%DATADIR%%/%%PORTVERSION%%/scm/bezier-tools.scm +%%DATADIR%%/%%PORTVERSION%%/scm/c++.scm +%%DATADIR%%/%%PORTVERSION%%/scm/chord-entry.scm +%%DATADIR%%/%%PORTVERSION%%/scm/chord-generic-names.scm +%%DATADIR%%/%%PORTVERSION%%/scm/chord-ignatzek-names.scm +%%DATADIR%%/%%PORTVERSION%%/scm/chord-name.scm +%%DATADIR%%/%%PORTVERSION%%/scm/clip-region.scm +%%DATADIR%%/%%PORTVERSION%%/scm/coverage.scm +%%DATADIR%%/%%PORTVERSION%%/scm/define-context-properties.scm +%%DATADIR%%/%%PORTVERSION%%/scm/define-event-classes.scm +%%DATADIR%%/%%PORTVERSION%%/scm/define-grob-interfaces.scm +%%DATADIR%%/%%PORTVERSION%%/scm/define-grob-properties.scm +%%DATADIR%%/%%PORTVERSION%%/scm/define-grobs.scm +%%DATADIR%%/%%PORTVERSION%%/scm/define-markup-commands.scm +%%DATADIR%%/%%PORTVERSION%%/scm/define-music-callbacks.scm +%%DATADIR%%/%%PORTVERSION%%/scm/define-music-display-methods.scm +%%DATADIR%%/%%PORTVERSION%%/scm/define-music-properties.scm +%%DATADIR%%/%%PORTVERSION%%/scm/define-music-types.scm +%%DATADIR%%/%%PORTVERSION%%/scm/define-note-names.scm +%%DATADIR%%/%%PORTVERSION%%/scm/define-stencil-commands.scm +%%DATADIR%%/%%PORTVERSION%%/scm/define-woodwind-diagrams.scm +%%DATADIR%%/%%PORTVERSION%%/scm/display-lily.scm +%%DATADIR%%/%%PORTVERSION%%/scm/display-woodwind-diagrams.scm +%%DATADIR%%/%%PORTVERSION%%/scm/document-backend.scm +%%DATADIR%%/%%PORTVERSION%%/scm/document-context-mods.scm +%%DATADIR%%/%%PORTVERSION%%/scm/document-functions.scm +%%DATADIR%%/%%PORTVERSION%%/scm/document-identifiers.scm +%%DATADIR%%/%%PORTVERSION%%/scm/document-markup.scm +%%DATADIR%%/%%PORTVERSION%%/scm/document-music.scm +%%DATADIR%%/%%PORTVERSION%%/scm/document-translation.scm +%%DATADIR%%/%%PORTVERSION%%/scm/document-type-predicates.scm +%%DATADIR%%/%%PORTVERSION%%/scm/documentation-generate.scm +%%DATADIR%%/%%PORTVERSION%%/scm/documentation-lib.scm +%%DATADIR%%/%%PORTVERSION%%/scm/editor.scm +%%DATADIR%%/%%PORTVERSION%%/scm/encoding.scm +%%DATADIR%%/%%PORTVERSION%%/scm/file-cache.scm +%%DATADIR%%/%%PORTVERSION%%/scm/flag-styles.scm +%%DATADIR%%/%%PORTVERSION%%/scm/font.scm +%%DATADIR%%/%%PORTVERSION%%/scm/framework-eps.scm +%%DATADIR%%/%%PORTVERSION%%/scm/framework-null.scm +%%DATADIR%%/%%PORTVERSION%%/scm/framework-ps.scm +%%DATADIR%%/%%PORTVERSION%%/scm/framework-scm.scm +%%DATADIR%%/%%PORTVERSION%%/scm/framework-socket.scm +%%DATADIR%%/%%PORTVERSION%%/scm/framework-svg.scm +%%DATADIR%%/%%PORTVERSION%%/scm/fret-diagrams.scm +%%DATADIR%%/%%PORTVERSION%%/scm/graphviz.scm +%%DATADIR%%/%%PORTVERSION%%/scm/guile-debugger.scm +%%DATADIR%%/%%PORTVERSION%%/scm/harp-pedals.scm +%%DATADIR%%/%%PORTVERSION%%/scm/layout-beam.scm +%%DATADIR%%/%%PORTVERSION%%/scm/layout-slur.scm +%%DATADIR%%/%%PORTVERSION%%/scm/lily-library.scm +%%DATADIR%%/%%PORTVERSION%%/scm/lily-sort.scm +%%DATADIR%%/%%PORTVERSION%%/scm/lily.scm +%%DATADIR%%/%%PORTVERSION%%/scm/ly-syntax-constructors.scm +%%DATADIR%%/%%PORTVERSION%%/scm/markup-macros.scm +%%DATADIR%%/%%PORTVERSION%%/scm/markup.scm +%%DATADIR%%/%%PORTVERSION%%/scm/memory-trace.scm +%%DATADIR%%/%%PORTVERSION%%/scm/midi.scm +%%DATADIR%%/%%PORTVERSION%%/scm/modal-transforms.scm +%%DATADIR%%/%%PORTVERSION%%/scm/music-functions.scm +%%DATADIR%%/%%PORTVERSION%%/scm/output-lib.scm +%%DATADIR%%/%%PORTVERSION%%/scm/output-ps.scm +%%DATADIR%%/%%PORTVERSION%%/scm/output-socket.scm +%%DATADIR%%/%%PORTVERSION%%/scm/output-svg.scm +%%DATADIR%%/%%PORTVERSION%%/scm/page.scm +%%DATADIR%%/%%PORTVERSION%%/scm/paper-system.scm +%%DATADIR%%/%%PORTVERSION%%/scm/paper.scm +%%DATADIR%%/%%PORTVERSION%%/scm/parser-clef.scm +%%DATADIR%%/%%PORTVERSION%%/scm/parser-ly-from-scheme.scm +%%DATADIR%%/%%PORTVERSION%%/scm/part-combiner.scm +%%DATADIR%%/%%PORTVERSION%%/scm/predefined-fretboards.scm +%%DATADIR%%/%%PORTVERSION%%/scm/ps-to-png.scm +%%DATADIR%%/%%PORTVERSION%%/scm/safe-lily.scm +%%DATADIR%%/%%PORTVERSION%%/scm/safe-utility-defs.scm +%%DATADIR%%/%%PORTVERSION%%/scm/scheme-engravers.scm +%%DATADIR%%/%%PORTVERSION%%/scm/script.scm +%%DATADIR%%/%%PORTVERSION%%/scm/skyline.scm +%%DATADIR%%/%%PORTVERSION%%/scm/song-util.scm +%%DATADIR%%/%%PORTVERSION%%/scm/song.scm +%%DATADIR%%/%%PORTVERSION%%/scm/standalone.scm +%%DATADIR%%/%%PORTVERSION%%/scm/stencil.scm +%%DATADIR%%/%%PORTVERSION%%/scm/tablature.scm +%%DATADIR%%/%%PORTVERSION%%/scm/text.scm +%%DATADIR%%/%%PORTVERSION%%/scm/time-signature-settings.scm +%%DATADIR%%/%%PORTVERSION%%/scm/titling.scm +%%DATADIR%%/%%PORTVERSION%%/scm/to-xml.scm +%%DATADIR%%/%%PORTVERSION%%/scm/translation-functions.scm +%%DATADIR%%/%%PORTVERSION%%/scm/x11-color.scm +%%DATADIR%%/%%PORTVERSION%%/tex/lilypond-tex-metrics.tex +%%DATADIR%%/%%PORTVERSION%%/vim/compiler/lilypond.vim +%%DATADIR%%/%%PORTVERSION%%/vim/ftdetect/lilypond.vim +%%DATADIR%%/%%PORTVERSION%%/vim/ftplugin/lilypond.vim +%%DATADIR%%/%%PORTVERSION%%/vim/indent/lilypond.vim +%%DATADIR%%/%%PORTVERSION%%/vim/syntax/lilypond-words +%%DATADIR%%/%%PORTVERSION%%/vim/syntax/lilypond-words.vim +%%DATADIR%%/%%PORTVERSION%%/vim/syntax/lilypond.vim +%%DATADIR%%/current +share/emacs/site-lisp/lilypond-font-lock.el +share/emacs/site-lisp/lilypond-indent.el +share/emacs/site-lisp/lilypond-init.el +share/emacs/site-lisp/lilypond-mode.el +share/emacs/site-lisp/lilypond-song.el +share/emacs/site-lisp/lilypond-what-beat.el +share/emacs/site-lisp/lilypond-words.el +%%NLS%%share/locale/ca/LC_MESSAGES/lilypond.mo +%%NLS%%share/locale/cs/LC_MESSAGES/lilypond.mo +%%NLS%%share/locale/da/LC_MESSAGES/lilypond.mo +%%NLS%%share/locale/de/LC_MESSAGES/lilypond.mo +%%NLS%%share/locale/el/LC_MESSAGES/lilypond.mo +%%NLS%%share/locale/eo/LC_MESSAGES/lilypond.mo +%%NLS%%share/locale/es/LC_MESSAGES/lilypond.mo +%%NLS%%share/locale/fi/LC_MESSAGES/lilypond.mo +%%NLS%%share/locale/fr/LC_MESSAGES/lilypond.mo +%%NLS%%share/locale/it/LC_MESSAGES/lilypond.mo +%%NLS%%share/locale/ja/LC_MESSAGES/lilypond.mo +%%NLS%%share/locale/nl/LC_MESSAGES/lilypond.mo +%%NLS%%share/locale/ru/LC_MESSAGES/lilypond.mo +%%NLS%%share/locale/sv/LC_MESSAGES/lilypond.mo +%%NLS%%share/locale/tr/LC_MESSAGES/lilypond.mo +%%NLS%%share/locale/uk/LC_MESSAGES/lilypond.mo +%%NLS%%share/locale/vi/LC_MESSAGES/lilypond.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/lilypond.mo +@dirrm lib/lilypond/%%PORTVERSION%%/python +@dirrm lib/lilypond/%%PORTVERSION%% +@dirrm lib/lilypond +@dirrm %%DATADIR%%/%%PORTVERSION%%/vim/syntax +@dirrm %%DATADIR%%/%%PORTVERSION%%/vim/indent +@dirrm %%DATADIR%%/%%PORTVERSION%%/vim/ftplugin +@dirrm %%DATADIR%%/%%PORTVERSION%%/vim/ftdetect +@dirrm %%DATADIR%%/%%PORTVERSION%%/vim/compiler +@dirrm %%DATADIR%%/%%PORTVERSION%%/vim +@dirrm %%DATADIR%%/%%PORTVERSION%%/tex +@dirrm %%DATADIR%%/%%PORTVERSION%%/scm +@dirrm %%DATADIR%%/%%PORTVERSION%%/python +@dirrm %%DATADIR%%/%%PORTVERSION%%/ps +@dirrm %%DATADIR%%/%%PORTVERSION%%/ly +@dirrm %%DATADIR%%/%%PORTVERSION%%/fonts/svg +@dirrm %%DATADIR%%/%%PORTVERSION%%/fonts/source +@dirrm %%DATADIR%%/%%PORTVERSION%%/fonts/otf +@dirrm %%DATADIR%%/%%PORTVERSION%%/fonts +@dirrm %%DATADIR%%/%%PORTVERSION%% +@dirrm %%DATADIR%% |