Commit graph

83 commits

Author SHA1 Message Date
wiz
8f7c75985d Bump PKGREVISION for netpbm update.
Add some build fixes where necessary.
2014-09-08 21:24:44 +00:00
wiz
c26f5ca940 libungif is not relevant any longer since the GIF relevant patents
expired (about 10 years ago).

Unconditionally switch to libgif.

As discussed on tech-pkg without dissent.

Bump PKGREVISION.
2014-05-31 15:56:26 +00:00
wiz
7eeb51b534 Bump for perl-5.20.0.
Do it for all packages that
* mention perl, or
* have a directory name starting with p5-*, or
* depend on a package starting with p5-
like last time, for 5.18, where this didn't lead to complaints.
Let me know if you have any this time.
2014-05-29 23:35:13 +00:00
obache
1aa592e498 Fixes error handling bug introduced in patch for glflib-5.0.4. 2014-05-25 09:18:06 +00:00
obache
c38e6438de Revbump after updating graphics/giflib 2014-05-25 08:51:05 +00:00
wiz
b0d8d29913 Fix build with giflib-5.1. 2014-05-16 09:57:55 +00:00
ryoon
60806aa001 Recursive revbump from x11/pixman
Fix PR pkg/48777
2014-05-05 00:47:34 +00:00
ryoon
3fba1a52dd Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
adam
d2cb6dec32 Revbump after cairo update 2013-09-02 19:50:38 +00:00
ryoon
18b0cede66 Fix build with giflib-5.0.4.
Noticed by wiz@, thank you.
2013-07-06 08:00:47 +00:00
wiz
e0b49a2fed Bump PKGREVISION for libXft changes for NetBSD native X support on
NetBSD 6, requested by tron.
2013-06-06 12:53:40 +00:00
tron
a36fb86593 Try to fix the fallout caused by the fix for PR pkg/47882. Part 3:
Recursively bump package revisions again after the "freetype2" and
"fontconfig" handling was fixed.
2013-06-04 22:15:37 +00:00
wiz
53745b22ea Bump freetype2 and fontconfig dependencies to current pkgsrc versions,
to address issues with NetBSD-6(and earlier)'s fontconfig not being
new enough for pango.

While doing that, also bump freetype2 dependency to current pkgsrc
version.

Suggested by tron in PR 47882
2013-06-03 10:05:17 +00:00
wiz
d2ca14a3f1 Bump all packages for perl-5.18, that
a) refer 'perl' in their Makefile, or
b) have a directory name of p5-*, or
c) have any dependency on any p5-* package

Like last time, where this caused no complaints.
2013-05-31 12:39:57 +00:00
wiz
d1b820f37b Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
adam
f4c3b89da7 Revbump after graphics/jpeg and textproc/icu 2013-01-26 21:36:13 +00:00
asau
8aba7e3fbf Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
adam
3f2cc57b2b Revbump after updating graphics/pango 2012-10-08 23:00:34 +00:00
wiz
8b5d49eb78 Bump all packages that use perl, or depend on a p5-* package, or
are called p5-*.

I hope that's all of them.
2012-10-03 21:53:53 +00:00
tron
a2593dffce Mass recursive bump after the dependence fix of the "cairo" package
requested by Thomas Klausner.
2012-10-02 17:12:21 +00:00
obache
c38c120ee5 recursive bump from libffi shlib major bump
(additionaly, reset PKGREVISION of qt4-* sub packages from base qt4 update)
2012-09-15 10:03:29 +00:00
adam
b15c922bcc Revbump after updating graphics/cairo 2012-09-07 19:16:05 +00:00
wiz
e0808f0de0 More pcre PKGREVISION bumps. 2012-03-03 12:54:15 +00:00
wiz
5a64b91a3d Needs pkg-config for ft2/cairo. Add it to TOOLS. 2012-02-22 12:28:06 +00:00
wiz
fb1a8e5414 Revbump for
a) tiff update to 4.0 (shlib major change)
b) glib2 update 2.30.2 (adds libffi dependency to buildlink3.mk)

Enjoy.
2012-02-06 12:41:29 +00:00
sbd
04daa2f1b8 Recursive bump for graphics/freetype2 buildlink addition. 2011-11-01 06:00:33 +00:00
obache
9ea3b36c23 recursive bump from gettext-lib shlib bump. 2011-04-22 14:40:40 +00:00
adam
2f4532bfc6 Changes 1.2.2:
No release info available.
2011-04-04 11:41:28 +00:00
drochner
459d63feeb libungif/buildlink3.mk -> mk/giflib.buildlink3.mk
(uses giflib now per default)
bump PKGREV
2011-03-09 16:29:23 +00:00
wiz
6ee48fb77a Add upstream bug report URL. 2011-02-14 19:37:26 +00:00
tron
f253e4c0fd Fix build with png-1.5. 2011-01-19 10:23:54 +00:00
wiz
af3596f984 png shlib name changed for png>=1.5.0, so bump PKGREVISIONs. 2011-01-13 13:36:05 +00:00
dsainty
1f40f3a084 Mechanically replace references to graphics/jpeg with the suitable
alternative from mk/jpeg.buildlink3.mk

This allows selection of an alternative jpeg library (namely the x86 MMX,
SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and
follows the current standard model for alternatives (fam, motif, fuse etc).

The mechanical edits were applied via the following script:

#!/bin/sh
for d in */*; do
  [ -d "$d" ] || continue
  for i in "$d/"Makefile* "$d/"*.mk; do
    case "$i" in *.orig|*"*"*) continue;; esac
    out="$d/x"
    sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \
        -e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \
        < "$i" > "$out"
    if cmp -s "$i" "$out"; then
      rm -f "$out"
    else
      echo "Edited $i"
      mv -f "$i" "$i.orig" && mv "$out" "$i"
    fi
  done
done
2010-12-23 11:44:24 +00:00
wiz
4d24b9b8ad More PKGREVISION bumps for pixman update. 2010-09-14 11:13:10 +00:00
wiz
e8d8834f6a Bump PKGREVISION for libpng shlib name change.
Also add some patches to remove use of deprecated symbols and fix other
problems when looking for or compiling against libpng-1.4.x.
2010-06-13 22:43:46 +00:00
wiz
a4eec2f4cc Reset maintainer, developer lost his commit bit. 2010-03-21 16:29:38 +00:00
wiz
91871f449e Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
sno
6f7368d4db bump revision because of graphics/jpeg update 2009-08-26 19:56:37 +00:00
wiz
c0673a7c94 Update to 1.2.1. Set LICENSE. Split off options into options.mk.
Version 1.2.1 (released 18 Apr 2009)

	* Remove signbit() from ProjectionIcosagnomonic.cpp

	* Add shadows from satellites on Saturn's rings, let brightness of
	rings go to zero as Saturn approaches equinox.

	* Add trail_output option to satellite files to print out
	satellite positions.

	* Calculate eclipse shadows a little past the terminator so they
	don't get cut off sharply.

	* Reload satellite files in case TLE files are updated between
	renderings.  Suggested by Lutz M

	* Added Lambert Equal Area projection

	* Check that -origin above or below is not specified for the Sun.

	* Added a definition for signbit() in ProjectionIcosagnomonic.cpp

	* Add patch from Doug Hawkins to support marker_* keywords in
	config file.

	* Added the -label_body option.  This is useful in conjunction
	with -separation to specify which body the label should apply to.

	* Added the -separation option.  This places the observer at a
	point in space where two bodies have the specified separation.

	* Allow -glare 0 to remove sun glare.

	* Fixed a bug where arcs were sometimes not drawn if they were
	vertical or horizontal lines.

	* A thickness value may now be specified for arcs.

	* Added max_radius and min_radius keywords to marker files.  This
	disables drawing of the marker if the planet radius is larger than
	or smaller than the specified value, respectively.

	* Fixed a bug where the arc color was not reset to the default
	color for subsequent arcs in the file.
2009-07-22 13:37:05 +00:00
joerg
b02a0f888e Remove @dirrm entries from PLISTs 2009-06-14 18:24:43 +00:00
heinz
f8e6d19c15 The package supports installation to DESTDIR. 2007-10-23 20:17:58 +00:00
tron
8bc631f561 Add missing directory "share/xplanet/ephemeris", bump package revision. 2007-08-01 20:15:05 +00:00
joerg
e66a62bc01 Fix PLIST. Needs pkg-config. Both change the package, so bump revision. 2007-06-30 03:57:10 +00:00
wiz
601583c320 Whitespace cleanup, courtesy of pkglint.
Patch provided by Sergey Svishchev in private mail.
2007-02-22 19:26:05 +00:00
joerg
8cbadc42b5 Reorder includes so that the absence of the X11 option results in
the absence of the dependencies.
2007-01-26 18:22:48 +00:00
rillig
be03fb8999 Replaced the commands for creating the missing directories with some
magic variable assignments. No functional changes.
2007-01-23 01:27:00 +00:00
joerg
d26cf36e57 - fine grained X11 dependencies for packages which have either USE_IMAKE
or USE_X11BASE set, but don't include mk/x11.buildlink3.mk directly or
  via buildlink3.mks
- introduce BUILDLINK_PREFIX.libXpm as alias for BUILDLINK_PREFIX.xpm
  in the !modular case
- fix some cases where the check for libX11 couldn't work at all by using
  C++ for compilation without including the proper headers

Verified using a full X11_TYPE=xorg bulk build without additional
breakage. Discussed with salo@, wiz@ and send to packages@ for feedback.
2006-12-27 13:37:35 +00:00
seb
bc5f56ba5f Let this package pass work-directory references check: use
"/usr/bin/env perl" as interpreter for $PREFIX/share/xplanet/scripts/*.perl
scripts.
2006-10-28 14:20:20 +00:00
xtraeme
30d3f99adc typo 2006-09-20 18:23:48 +00:00
xtraeme
6664c4e41d Make X11 dependency an option... and enabled by default as before.
Requested by gdamore@.
2006-09-20 18:20:39 +00:00