summaryrefslogtreecommitdiff
path: root/print
AgeCommit message (Collapse)AuthorFilesLines
2014-01-08Import tex-lipsum-1.2 as print/tex-lipsum.minskim4-0/+25
This package gives you easy access to the Lorem Ipsum dummy text; an option is available to separate the paragraphs of the dummy text into TeX-paragraphs. All the paragraphs are taken with permission from http://lipsum.com/.
2014-01-08Add tex-sauerj{,-doc}minskim1-1/+3
2014-01-08Import tex-sauerj-doc-2013 as print/tex-sauerj-doc.minskim4-0/+26
This is documentation for tex-sauerj.
2014-01-08Import tex-sauerj-2013 as print/tex-sauerj.minskim4-0/+33
The bundle consists of: a tool for collecting text for later re-use, a tool for typesetting the "meta-information" within a text, a tool for use in constructing macros with multiple optional parameters, a package for multiple column parallel texts, a tool for processing key-value structured lists, and macros for typesetting a number as a German-language string.
2014-01-07Add tex-mdframed{,-doc}minskim1-1/+3
2014-01-07Import tex-mdframed-doc-1.9b as print/tex-mdframed-doc.minskim4-0/+30
This is documentation for tex-mdframed.
2014-01-07Import tex-mdframed-1.9b as print/tex-mdframed.minskim4-0/+34
The package develops the facilities of framed in providing breakable framed and coloured boxes. The user may instruct the package to perform its operations using default LaTeX commands, PStricks or TikZ.
2014-01-06Update to 0.24.5. Shlib version stayed the same.wiz2-6/+6
Release 0.24.5 core: * Fix crash due to wrong formatting of error message. KDE Bug #328511
2014-01-05Update to 2.18.0:wiz131-1950/+43
New features in 2.18 since 2.16 ******************************* * There is now a new context type called `NullVoice' which, while not appearing in the printed output, can be used to align lyrics. This can be particularly convenient when used in parallel with a `\partcombine' construct. * Several articulations can be put into a single variable or returned from an event function. * The baseline of score markups is now taken from the reference point (usually the middle of the staff) of the first bottom system rather than the top of the bounding rectangle. * LilyPond no longer automatically infers a `\defaultchild' context in a context definition with `\accepts' clauses. Any context definition without an explicit or inherited `\defaultchild' definition counts as a `Bottom' context and will be eligible for rhythmic events and overrides without causing the implicit creation of other contexts. Be sure to specify a `\defaultchild' for non-`Bottom' contexts when defining them from scratch. * There is now extensive support for both discant and bass accordion register symbols in the `scm accreg' module. * New commands `markLengthOn' and `markLengthOff' control the allowance of horizontal space for tempo and rehearsal marks. * Rehearsal marks at the beginning of a line are now placed to the right of the clef and key signature by default. As in previous versions, the `break-alignable-interface' controls the behavior. * Decimal numbers can now be written directly in music, without a hash sign. Together with the previous change in the way object properties are specified, the code to change the length of stems has changed from this: \override Stem #'length = #5.6 e' f' g' a' to this: \override Stem.length = 5.6 e' f' g' a' One has to write a digit on both sides of the dot - values like `4.' or `-.3' are not allowed. Decimal fractions are also not accepted in `\chordmode'. * A number of shorthands like `(', `)', `|', `[', `]', `~', `\(', `\)' and others can now freely be redefined like normal commands. * The articulation shorthand for `\staccatissimo' has been renamed from `-|' to `-!'. * Tempo change ranges are now written as `\tempo 4 = 60 - 68' rather than `\tempo 4 = 60 ~ 68'. * Grob `OctavateEight' was renamed to `ClefModifier'. Related context properties were renamed from `xxxOctavationyyy' to `xxxTranspositionyyy'. * There is a new `\absolute' command explicitly marking music as being entered in absolute pitch. While this has been the default previously, an explicit `\absolute' also prevents reinterpretation when the passage is placed inside of `\relative'. * When `\relative' is used without an explicit reference pitch, the reference pitch now is the middle of the first octave, making the first entered pitch indistinguishable from absolute pitch. Previously, omitting the reference pitch would have lead to a default of `c''. Since that choice was somewhat arbitrary, recommended usage was to always specify the reference pitch. * A new command `\single' can be used for converting a property override into a tweak to be applied on a single music expression. * Two ways of letting graphical objects not appear in the output are overriding its `transparent' property with `#t' (retaining the original spacing) or overriding its `stencil' property with `#f' (not using any space at all). Those two operations now have the shorthands `\hide' and `\omit', respectively. * A new command `\temporary' can be applied to overrides in order to not have them replace previous property settings. If a `\revert' is applied to the same property subsequently, the previous setting reappears. This is mainly useful for writing music functions that need to have some property changed just for the duration of the function. * `\tag', `\removeWithTag', and `\keepWithTag' can now accept a list of symbols rather than just a single symbol for marking, removing, and keeping music with any of multiple tags. This is particularly important for `\keepWithTag' since one cannot achieve the same effect by using multiple consecutive `\keepWithTag' commands. * The `-d old-relative' option has been removed. Not actually accessible from the command line any more, its remaining use was for interpretating `\relative' in LilyPond files converted automatically from version 1.8 or older. It is unclear how much of this was actually still operative. * The meaning of `instrumentTransposition' has been reversed. After \set instrumentTransposition = #{ b #} a written `c'' now sounds like `b'. Previously, this would have been the other way round. This and the following change should make dealing with transposing instruments more straightforward. * The music generated by `\set' and `\override' commands is no longer affected by `\transpose'. The main consequence is that `\transpose' will transpose audible/concert pitch and printed pitch by the same amount even when the transposed music contains `\transposition'. Previously, \transpose c' f' \transposition bes' was equivalent to `\transposition f''. Now it stays equivalent to `\transposition bes''. * When checking for collisions, LilyPond no longer treats objects as rectangles. Instead, the actual shape of objects is approximated using an integral-like approach. This generally results in more even and snug positioning of objects and systems. Affected objects include `Accidentals', `Beams', `Clefs', `Dynamics', `FiguredBass', `Flags', `Glissandos', `Lyrics', `MetronomeMarks', `OttavaBrackets', `Pedals', `RehearsalMarks', `Rests', `Scripts', `TextScripts', `Ties', `Tuplets' and `VoltaBrackets'. * Tuplets are now created with the `\tuplet' command, which takes a fraction `T/N' to specify that T notes are played in the time usually allowed for N. One `\tuplet' command can create several tuplet groups if their duration is typed after the fraction. The `\times' command with its inverted fraction order `N/T' is still available. * Introducing two new markup-commands; `\draw-dashed-line' and `\draw-dotted-line'. The dashed-line extends to the whole length given by DEST, if `full-length' is set to `#t' (this is the default) without any space at the beginning or end. `off' will then be altered to fit. To insist on the given (or default) values of `on', `off' use `\override #'(full-length . #f)'. Manual settings for `on', `off' and `phase' are possible. The dotted-line always extends to the whole length given by DEST, without any space at the beginning or end. Manual settings for `off' are possible to get larger or smaller space between the dots. The given (or default) value of `off' will be altered to fit the line-length. * Starting with version 2.17.10, error messages or the `textedit' URI used for point-and-click functionality specify column numbers starting with 1 rather than 0. The byte offset (also part of `textedit' URIs) still starts at 0. * The `\clef' command supports optional transposition. * The LilyPond syntax of dot-separated words `Voice.Accidental' has been made interchangeable with `#'(Voice Accidental)', a Scheme list of symbols. * Grob and grob property path no longer need to be specified as two separate arguments to commands like `\override' and `\revert', allowing for the syntax \override Voice.TextSpanner.bound-details.left.text = "rit." Since complementary music functions like `\overrideProperty' cannot support forms with and without separating space at the same time, using a single dotted path is now the preferred form. Specifying grob path and grob property path separately, currently still supported with `\override' and `\revert' for compatibility reasons, is deprecated. * Due to words now being accepted as symbol function arguments, the interfaces of `\accidentalStyle', `\alterBroken', `\footnote' and `\tweak' had to be redesigned where optional symbol arguments were involved. Please check the respective music function documentation for details. * Several commands now accept symbol lists (conveniently entered as dot-separated words) for various kinds of arguments. These include `\accidentalStyle', `\alterBroken', `\footnote', `\hide', `\omit', `\overrideProperty', `\shape', and `\tweak'. * The bar line user interface has changed. Bar glyphs now resemble the appearance of the bar line, so a left repeat sign has to be coded as `.|:'. The command `\defineBarLine' provides an easy way to define additional bar line styles. * Accidentals in the key signature may be printed in octaves other than their traditional positions, or in multiple octaves.
2014-01-02Revert previousryoon1-3/+3
* Enable DEPENDS lines, and create ghostscript-{gpl,agpl} as dependency
2014-01-01check the proper options variablechristos1-3/+3
2014-01-01Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump.wiz9-18/+18
2013-12-31Remove packages that were either BROKEN for more than a year orwiz6-3996/+1
BROKEN and explicitly scheduled to be removed after 2013Q4.
2013-12-29Remove obsolete MirBSD workaround, fix build.bsiegert2-4/+4
2013-12-28fonts/ghostscript-cidfonts/Makefile now DEPENDS+= print/ghostscript onlymef1-2/+1
and NOT including this file, thanks dholland@.
2013-12-27Drop nonfunctional cups option, following upstream.gdt3-30/+5
Upstream removed cups support and created a new "cups-filter" package instead. Since then, building ghostscript-agpl with the cups option has failed. This commit removes the cups option, and should result in zero changes to packages built without the cups option, and hence does not PKGREVISION++. There is still some cups configure code, which is forced off (as it was without the option). It's not clear if this configure code should also be removed (by upstream), or if it's a separate bit of cups functionality. Addressing this issue and adding a cups-filter package is left for future work, after the branch.
2013-12-25Adjust PLIST only when following option is active.mef1-1/+6
PKG_OPTIONS.ghostscript+=disable-compile-inits No PKGREVISON++ (not packaged or binaries'd be the same before patch and after). Discussed at thread starting http://mail-index.netbsd.org/pkgsrc-users/2013/12/23/msg019089.html
2013-12-18Resolve conflicts between teTeX-bin and tex-contextminskim4-12/+12
2013-12-17Update tex-context{,-doc} to 2013minskim6-579/+1145
Support the recent version of LuaTeX.
2013-12-16Install a configuration file for tex-luatexminskim1-1/+7
2013-12-15Disable optimisations for Clang for the Scribus 1.3.4 import filter.joerg3-2/+21
2013-12-15Set DIST_SUBDIR with a different substitution that works withdholland1-2/+2
netbsd-5's make as well as more recent versions. As suggested by obache; closes PR 48423.
2013-12-12Sync tex-pdftools{,-doc} with xpdfopen-0.83minskim4-18/+17
No functional change.
2013-12-12Update xpdfopen to 0.83minskim3-11/+11
Changes: - fix (kludgily?) reset_focus() so that it actually works. - add -r and -reset_focus options. - update documentation.
2013-12-12Fix build wth freetype 2.5.xmarkd4-1/+52
2013-12-09Fix/Update DEPENDS paterns for perl CORE modules, with some trivial fixes.obache1-3/+3
Bump PKGREVISION for runtime dependency pattern changed packages.
2013-12-09Replace DEPENDS on texlive-tetex, which has been removed, with DEPENDSdholland1-3/+9
on the packages the texlive-tetex removal commit cited as replacements. They probably aren't all needed, but at the moment my concern is to make pbulk scan work again.
2013-12-07More PKGREVISION++ for poppler-0.24.4.wiz4-6/+8
2013-12-06Recursive PKGREVISION bump for poppler-0.24.4.wiz15-28/+30
2013-12-06poppler updated to 0.24.4. changes shlib major again, PKGREVISION bumpwiz3-8/+7
follows next. Changes: Release 0.24.4 core: * Fix regression in broken endstream detection. Bug #70854 * Catalog: sort entries of NameTrees to make sure lookup works. Bug #26049 * Don't infinite loop if reading from GooFile::read fails. Bug #71835 utils: * pdftotext: Do not close stdout. Bug #71639 * pdftotext: Silence warning for may be used uninitialized variable. Bug #71640 * pdftotext: Escape the text of the xml headers * Warn the user if he provides a wrong range qt4: * Fix typo in xml API. Bug #71643 qt5: * Fix typo in xml API. Bug #71643
2013-12-06Allow to depend on Pillow as well as py-imaging.obache1-3/+3
Bump PKGREVISION.
2013-12-06Sync dviljk with TeX Live 2013minskim2-8/+8
Changes: - Code cleanup
2013-12-05sortjnemeth1-2/+2
2013-12-04Remove texlive-tetexminskim6-166/+1
Scripts installed by texlive-tetex have been moved to tex-fontinst, tex-pstools, and tex-cyrillic-bin in TeX Live 2013.
2013-12-04Add tex-cyrillic-bin{,-doc}minskim1-1/+3
2013-12-04Import tex-cyrillic-bin-doc-2013 as print/tex-cyrillic-bin-doc.minskim4-0/+20
This is documentation for tex-cyrillic-bin.
2013-12-04Import tex-cyrillic-bin-2013 as print/tex-cyrillic-bin.minskim4-0/+35
bibtex and makeindex for Cyrillic.
2013-12-04Update tex-musixtex{,-doc} to 1.15pl29752minskim7-273/+38
Changes: - Depend on newly-added tex-musixtex-fonts. - Reorganize directory structure to be consistent with other TeX Live 2013 packages.
2013-12-03Update xetex to 0.9999.3minskim3-48/+16
Changes: * Fix bug with extensible accents resulting in invalid glyph id some times. * Fix alternate index in multiple alternates features to be start from zero like pre-0.9999 XeTeX. * Document multiple alternates syntax in the reference documentation. * Fix regression in \XeTeXOT* primitives with fonts where the number of languages in a given script is not the same in both GSUB and GPOS tables. * Add a workaround for a bug in clang headers to allow building with it on Mac. * Fix regression in loading PNG files on Mac. * Fix multiple regression with vertical text layout. * Update to HarfBuzz 0.9.15 fixing a couple of regressions with Arabic non spacing marks and Hangul jamo. * Various build fixes for third party libraries. * XeTeX reference is now included in the release tarball. * Fix loading font files on PPC Mac OS 10.5 (and potentially other versions of Mac). * Fix handling of ‘script’ and ‘language’ font options to be treated again as OpenType not ISO tags, so that passing version 2 Indic script tags works (though this is generally not needed as HarfBuzz will always use version 2 shaping if the font has it, regardless of the tag used). * Fix loading JPEG images that do not specify a resolution. * When printing multi-byte characters to log or terminal avoid inserting new lines in the middle of the characters, and count the characters not the bytes when calculating line length. * Update to HarfBuzz 0.9.14, a couple of Indic and Hangul shaping bugs. * Port OpenType layout from ICU LayoutEngine to HarfBuzz. * Port Graphite layout to from SilGraphite to HarfBuzz and Graphite2. * Port AAT font layout and font searching on Mac from the deprecated ATS/ATSUI to Core Text, and image support on Mac from QuickTime to ImageIO framework. XeTeX can be finally built on 64-bit Mac! Work contributed by Jiang Jiang.
2013-12-03Update xdvipdfmx to 0.7.9minskim2-19/+10
Changes: - Apply speed up patch for dvipdfmx. - Don't crash when temporary file creation fail. - Fix loading font files without an extension (e.g. Mac suitcase fonts). - Fix loading *.dfont files on non-Mac platforms.
2013-12-02Sync tex-collection-genericrecommended{,-doc} with TeX Live 2013minskim2-15/+15
2013-12-02Update tex-ulem{,-doc} to 2013minskim4-14/+14
Changes: - Removed \let\par garbage.
2013-12-02Update tex-path{,-doc} to 3.05minskim4-14/+14
Changes: - Use \path instead of \ATcode to save the catcode of @. Expand \pathafterhook after \path's work is done.
2013-12-02Remove tex-collection-documentation-base-doc, which has been removedminskim3-22/+1
from TeX Live.
2013-11-30Update tex-genmisc to 2013.minskim3-12/+8
Changes: - Removed hexdump.sty.
2013-11-30Sync tex-collection-basic{,-doc} with TeX Live 2013minskim2-41/+39
2013-11-30Regenminskim1-4/+4
2013-11-30Sync tex-tex with TeX Live 2013minskim1-2/+2
No functional change.
2013-11-29Update tex-enctex{,-doc} to 2013minskim5-15/+19
- plain-*-dc.tex removed (obsolete) - ecfonts.tex, dcfonts.tex removed (name conflict) - plain-utf8-ec.tex corrected (contents of ecfonts.tex included)
2013-11-28Update search location for tex hyphenation files. PKGREVISION -> 4dholland3-7/+11
as it only failed if you had PKG_DEVELOPER set.