Commit graph

145 commits

Author SHA1 Message Date
Hiroki Sato
27470e1676 - Split ghostscript into X11-independent and -dependent parts:
* print/ghostscript{7,8,9,9-agpl}-base

   Installs Ghostscript binary, libgs, and related files.
   These ports do not depend on X11 libraries (i.e. x11* devices
   are not available).  USES=ghostscript will set dependency on
   one of them depending on GHOSTSCRIPT_DEFAULT.

   The default device is set to "display" or "bbox".

 * print/ghostscript{7,8,9,9-agpl}-x11

   Installs a shared library which provides X11 support to
   the installed Ghostscript binaries.  x11* devices will be
   enabled when the library is available.

   This depends on *-base (RUN_DEPENDS).  USES=ghostscript:x11
   will set dependency on one of them.

- Fix integer overflow reported as CVE-2015-3228.

- Update Uses/ghostscript.mk:

 * Add x11 keyword.  nox11 keyword is now obsolete.

 * Use packagename in *_DEPENDS line to prevent relationship between
   -base and -x11 packages from being broken.

- Fix x11/nox11 keyword and bump PORTREVISION in ports using
  USES=ghostscript to update dependency of pre-compiled packages.
2015-08-22 17:48:35 +00:00
Koop Mast
68f883edfc Convert code in bsd.port.mk for USE_GHOSTSCRIPT* to USES=ghostscript.
Add GHOSTSCRIPT_DEFAULT to bsd.default-versions.mk for easy version selection.
Arguments supported: <empty>, build, run, nox11 and agpl

PR:		201201 (exp-run)
Approved by:	portmgr (mat@)
Exp run by:	antione@ (previous patch)
Differential Revision:	https://reviews.freebsd.org/D2938
2015-07-16 20:53:28 +00:00
Dmitry Marakasov
dafa7bf89f - Strip binaries 2015-06-18 21:24:56 +00:00
Baptiste Daroussin
a5da770e67 Make fonts repecting XDG
Xorg is now looking in ${LOCALBASE}/share/fonts by default
Xorg now accepts symlinks in etc/X11/fontpath.d (as decribed in Xserver(1))
Large cleanup on lots of font ports
All fonts are now properly dynamically generating fonts.dir and fonts.scale
instead of sometime overwriting existing ones)
All fonts are generating fontconfig's cache
Improve consistency in fonts ports
2015-03-21 23:05:19 +00:00
Pietro Cerutti
c020107379 - Reset maintainership of my ports 2014-12-10 22:29:14 +00:00
Antoine Brodin
115aba45f3 Cleanup plist 2014-11-13 07:41:17 +00:00
Marcus von Appen
d45fbf3040 - Convert ports of news/ and print/ to new USES=python
Approved by: portmgr (implicit)
2014-10-24 16:42:59 +00:00
Tijl Coosemans
aafc6248a1 lang/guile:
- Add USES=libtool and bump dependent ports
- Replace Makefile.* patches with USES=pathfix
- Replace config.h.in patch with USE_AUTOTOOLS=autoheader
- Avoid automake by touching Makefile.in

Approved by:	portmgr (implicit, bump unstaged port)
2014-08-31 15:17:49 +00:00
Baptiste Daroussin
34593862e8 Fix typo 2014-07-21 21:19:03 +00:00
Baptiste Daroussin
e7b283ddd5 Fix build on head 2014-07-21 21:14:38 +00:00
Adam Weinberger
1c7521fb62 Correct all instances where OPTIONS_DEFINE was being overwritten
by multiple definitions.
2014-07-15 17:37:38 +00:00
Baptiste Daroussin
a33191366c Convert GMAKE to MAKE_CMD
Please note that lots of invocation of MAKE_CMD here are wrong as they do not
properly respect MAKE_ENV and friends

With hat:	portmgr
2014-06-25 05:35:31 +00:00
Niclas Zeising
39fc32e828 The FreeBSD x11@ and graphics team proudly presents
a zeising, kwm production, with help from dumbbell, bdrewery:

NEW XORG ON FREEBSD 9-STABLE AND 10-STABLE

This update switches over to use the new xorg stack by default on FreeBSD 9
and 10 stable, on osversions where vt(9) is available.
It is still possible to use the old stack by specifying WITHOUT_NEW_XORG in
/etc/make.conf .
FreeBSD 8-STABLE and released versions of FreeBSD still use
the old version.
A package repository with binary packages for new xorg will
be available soon.

This patch also contains updates of libxcb and related ports, pixman, as well
as some drivers and utilities.

Bump portrevisions for xf86-* ports, as well as virtualbox-ose-additions due
to xserver version change.

Apart from these updates, the way shared libraries are handled has been
changed for all xorg ports, as well as libxml2 and freetype, which means
ltverhack is gone and as a consequence shared libraries have been bumped.
The plan is that this change will make library bumps less likely in the
future.
All affected ports have had their portrevisions bumped as a consequence of
this.

Fix some issues where WITH_NEW_XORG weren't detected properly on CURRENT.

Update instructions, hardware support, and more notes can be found on
https://wiki.freebsd.org/Graphics

Thanks to:	all testers, bdrewery and the FreeBSD x11@ team
exp-run by:	bdrewery [1]
PR:		ports/187602 [1]
Approved by:	portmgr (bdrewery), core (jhb)
2014-04-16 18:28:47 +00:00
Pietro Cerutti
e8dcc0574f - Update to 2.18.2 2014-03-18 10:17:34 +00:00
Emanuel Haupt
e2ea13c6ff Remove trailing whitespaces from category print 2014-02-21 13:39:12 +00:00
Pietro Cerutti
68c161eb43 - Update to 2.18.1
We have released updated manuals for LilyPond’s stable version, 2.18. The
  manuals are now for 2.18.1 and have a number of updates and improvements over
  2.18.0. There will be a further release of 2.18 in the future (2.18.2), and
  this will include the updates to the manuals as well as some minor
  enhancements to the LilyPond core functionality.

  To summarise the current situation: stable LilyPond application: 2.18.0;
  stable LilyPond manuals: 2.18.1; development for both: 2.19.2.

- Provide a NLS option
2014-02-18 11:18:11 +00:00
Emanuel Haupt
5005b67362 According to the Porter's Handbook (5.12.2.3.) default options must be added to
OPTIONS_DEFINE. This policy has been implemented only recently that's why we
have many ports violating this policy.

This patch adds the default options specified in the Porter's Handbook to
OPTIONS_DEFINE where they are being used. Ports maintained by
gnome@FreeBSD.org, kde@FreeBSD.org and x11@FreeBSD.org have been excluded.

Approved by:    portmgr (bapt)
2014-02-10 13:54:26 +00:00
Pietro Cerutti
f057d8a4fc - Update to 2.18.0
Changes: http://lilypond.org/doc/v2.18/Documentation/changes/
2014-01-07 15:32:24 +00:00
Koop Mast
b1bf1620a6 Update freetype to 2.5.2.
Remove patch to add -I/usr/local/include in freetype-config --cflags. If
ports need extra headers they should look for them, and not get them via
a side-effect.

Freetype had a header resuffle in 2.5.1, patch ports to use the new header
style.

Thanks go to bdrewery for the two exp-runs and rakuco for helping me with
some troublesome cmake ports.

PR:		ports/184587
2013-12-24 21:22:21 +00:00
Baptiste Daroussin
6c6152ff82 Add NO_STAGE all over the place in preparation for the staging support (cat: print) 2013-09-20 22:43:59 +00:00
Andrej Zverev
d6908e9cb1 - convert to the new perl5 framework
- convert USE_GMAKE to Uses

Approved by:	portmgr (bapt@, blanket)
2013-09-15 08:15:41 +00:00
Baptiste Daroussin
c7d6ee97c1 Add an explicit dependency on pkgconf 2013-09-03 10:23:55 +00:00
Hiroki Sato
4e09def2d4 Rectify USE_TEX to support both of teTeX and TeXLive.
TEX_DEFAULT:
	A knob to choose teTeX or TeXLive.  One can specify in /etc/make.conf.

USE_TEX:
	A knob for port developers.  Valid keywords are listed in
	bsd.tex.mk.
2013-05-11 17:58:55 +00:00
Hiroki Sato
7dadfc8a88 Remove *_DEPENDS from ports which depend on teTeX and add USE_TEX=tetex
instead to make migration to TeXLive easier.
2013-05-06 02:00:40 +00:00
Alex Kozlov
83f02b963c - Convert USE_GETTEXT to USES (part 4)
Approved by:	portmgr (bapt)
2013-04-26 10:44:28 +00:00
Pietro Cerutti
4872eadcdd - Fix texinfo arguments that cause problem during the build
- Bison is build-dependency only
2013-03-11 12:37:09 +00:00
Pietro Cerutti
37511bb87c - Convert to OPTIONSng 2013-03-11 08:28:30 +00:00
Baptiste Daroussin
9250d94365 Convert USE_BISON to USES= bison
It brings bison as a build dependency in case it is set the following way:
USES= bison or USES= bison:build

it brings bison as a run dependency in case it is set the following way:
USES= bison:run

it brings bison both as a run and build dependency in case it the set the following way:
USES= bison:both

While here trim some headers
Convert some USE_GNOME= gnomehack to USES= pathfix
2013-03-08 11:32:11 +00:00
Pietro Cerutti
d385f69669 - Update to 2.16.1
http://lists.gnu.org/archive/html/info-lilypond/2012-11/msg00002.html
- Trim Makefile header

Feature safe:	yes
2012-11-27 08:36:00 +00:00
Pietro Cerutti
dbf905182a - Update to 2.16.0
Release notes: http://lilypond.org/doc/v2.16/Documentation/changes/index.html
2012-08-28 13:36:39 +00:00
Pietro Cerutti
b4b8b1f759 - fix non-privileged install
PR:		169870
Submitted by:	Jan Beich <jbeich@tormail.org>
2012-08-06 09:40:09 +00:00
Dirk Meyer
2b74a89bc8 - update png to 1.5.10 2012-06-01 05:26:28 +00:00
Steve Wills
8fa28a783e - Mark MAKE_JOBS_UNSAFE since this failed with MAKE_JOBS for me
PR:		ports/165307
Submitted by:	swills (myself)
Approved by:	maintainer (gahr)
2012-02-20 16:05:27 +00:00
Pietro Cerutti
26adf215d6 - Fix PLIST when building WITHOUT_NLS
- Bump PORTREVISION

Reported by:   Jim Long <james@umpquanet.com>
2011-12-20 12:50:52 +00:00
Pietro Cerutti
501fe2f568 - Update to 2.14.2
We are happy to announce the release of LilyPond 2.14.2. This fixes a few
  minor bugs in the stable version, and should cause no problems. We recommend
  that everybody upgrade to this version.
2011-08-03 13:42:45 +00:00
Julien Laffaye
011dce24ce - Chase guile shared lib bump
- Add an entry to UPDATING
2011-07-31 15:07:08 +00:00
Pietro Cerutti
40a5ba80c7 - Update to 2.14.1
This is a new stable release. From now on, I won't be tracking the development
  release any more.
  Release notes: http://lilypond.org/doc/v2.14/Documentation/changes/index.html
2011-06-14 10:20:37 +00:00
Pietro Cerutti
7a93bb44a9 - Update to 2.13.63
This is the seventh release candidate of the upcoming 2.14 stable release.
  All users are invited to experiment with this version. New features since
  2.12.3 are listed in the Changes manual on the website section about
  Development: http://lilypond.org/development.html.
2011-05-31 15:30:14 +00:00
Pietro Cerutti
5f22a48b5d - Update to 2.13.62
- Correct typo in NO_CCACHE variable name
2011-05-30 12:13:13 +00:00
Max Brazhnikov
630ca2285f Bump PORTREVISION after open-mofit update 2011-05-02 12:44:53 +00:00
Pietro Cerutti
a10130b10c - Update to 2.13.61 2011-05-02 08:24:00 +00:00
Pietro Cerutti
847a31b6a0 - Explicitely use base flex and yacc: the port breaks when bison
from ports is used in emutaled yacc mode.

PR:		156488
Submitted by:	Christoph Moench-Tegeder <cmt@burggraben.net>
2011-04-20 07:08:25 +00:00
Pietro Cerutti
bb4e15198a - Update to 2.13.60 2011-04-18 14:38:52 +00:00
Pietro Cerutti
78c5ed8b0b - Update to 2.13.58
This is the sixthrelease candidate of the upcoming 2.14 stable release.
  All users are invited to experiment with this version. New features since
  2.12.3 are listed in the "Changes" manual on the website section about
  Development.
2011-04-07 10:14:04 +00:00
Pietro Cerutti
c606567871 - Update to 2.13.57
This is the fourth release candidate of the upcoming 2.14 stable release.
  All users are invited to experiment with this version. New features since
  2.12.3 are listed in the "Changes" manual on the website section about
  Development.
2011-04-05 10:27:58 +00:00
Pietro Cerutti
db1c3dceb5 - Update to 2.13.56
this is the fourth release candidate of the upcoming 2.14 stable release.
  All users are invited to experiment with this version. New features since
  2.12.3 are listed in the "Changes" manual on the website section about
  Development.
- Restore USE_AUTOTOOLS
2011-04-01 07:17:20 +00:00
Pietro Cerutti
fa13f8a06d - Update to 2.13.55
- Partly refactor the port
2011-03-29 07:33:42 +00:00
Pietro Cerutti
ddaa5296ef - Update to 2.13.54
This is this is the third release candidate of the upcoming 2.14 stable
  release. All users are invited to experiment with this version.
  New features since 2.12.3 are listed in the Changes manual on the website
  section about Development (http://lilypond.org/development.html).
2011-03-15 08:18:11 +00:00
Pietro Cerutti
166ce3d3ee - Update to 2.13.53 2011-03-08 11:32:52 +00:00
Pietro Cerutti
7589410dd1 - Update to 2.13.51 2011-02-22 20:02:23 +00:00