Commit graph

43 commits

Author SHA1 Message Date
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
joerg
3b8c5d264f Uses C++. 2006-05-15 23:09:05 +00:00
wiz
02f8f7c52d Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
joerg
5911def816 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
wiz
768c589c29 Bump BUILDLINK_RECOMMENDED of textproc/expat to 2.0.0 because
of the shlib major bump.
PKGREVISION++ for the dependencies.
2006-01-24 07:31:52 +00:00
adam
51f5865747 Changes 1.2.0:
* Added the -grs_longitude option, to specify the longitude of
  Jupiter's Great Red Spot, in System II coordinates.  This assumes
  the Jupiter image has the center of the Great Red Spot at pixel 0
  (at the left side of the image) in order to draw it at the right
  position.
* Added the Icosagnomonic projection, contributed by Ian Turner.
* Fixed a bug where output filenames had an extra digit in some cases.
* Added the bump_map and bump_scale options in the configuration file.
* Added the -glare option to set the size of the sun's glare.
* An image map may be specified for the sun in the configuration
  file now.  A shade value is now required for the sun (should be
  100, otherwise the sun will have a night side!)
* Added the -arc_spacing option to set the default angular
  distance between great arc points.  It used to be 0.1 degree, so
  arcs smaller than this wouldn't get drawn.
* Fixed a bug where markers were not aligned properly when using
  align = "above" or "below".
* Added warnings if options are specified in the [default] section
  of the configuration file that probably shouldn't be there.
2005-06-30 15:06:24 +00:00
jlam
95fd1f6ec9 Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.
Several changes are involved since they are all interrelated.  These
changes affect about 1000 files.

The first major change is rewriting bsd.builtin.mk as well as all of
the builtin.mk files to follow the new example in bsd.builtin.mk.
The loop to include all of the builtin.mk files needed by the package
is moved from bsd.builtin.mk and into bsd.buildlink3.mk.  bsd.builtin.mk
is now included by each of the individual builtin.mk files and provides
some common logic for all of the builtin.mk files.  Currently, this
includes the computation for whether the native or pkgsrc version of
the package is preferred.  This causes USE_BUILTIN.* to be correctly
set when one builtin.mk file includes another.

The second major change is teach the builtin.mk files to consider
files under ${LOCALBASE} to be from pkgsrc-controlled packages.  Most
of the builtin.mk files test for the presence of built-in software by
checking for the existence of certain files, e.g. <pthread.h>, and we
now assume that if that file is under ${LOCALBASE}, then it must be
from pkgsrc.  This modification is a nod toward LOCALBASE=/usr.  The
exceptions to this new check are the X11 distribution packages, which
are handled specially as noted below.

The third major change is providing builtin.mk and version.mk files
for each of the X11 distribution packages in pkgsrc.  The builtin.mk
file can detect whether the native X11 distribution is the same as
the one provided by pkgsrc, and the version.mk file computes the
version of the X11 distribution package, whether it's built-in or not.

The fourth major change is that the buildlink3.mk files for X11 packages
that install parts which are part of X11 distribution packages, e.g.
Xpm, Xcursor, etc., now use imake to query the X11 distribution for
whether the software is already provided by the X11 distribution.
This is more accurate than grepping for a symbol name in the imake
config files.  Using imake required sprinkling various builtin-imake.mk
helper files into pkgsrc directories.  These files are used as input
to imake since imake can't use stdin for that purpose.

The fifth major change is in how packages note that they use X11.
Instead of setting USE_X11, package Makefiles should now include
x11.buildlink3.mk instead.  This causes the X11 package buildlink3
and builtin logic to be executed at the correct place for buildlink3.mk
and builtin.mk files that previously set USE_X11, and fixes packages
that relied on buildlink3.mk files to implicitly note that X11 is
needed.  Package buildlink3.mk should also include x11.buildlink3.mk
when linking against the package libraries requires also linking
against the X11 libraries.  Where it was obvious, redundant inclusions
of x11.buildlink3.mk have been removed.
2005-06-01 18:02:37 +00:00
jlam
585534220c Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:
USE_GNU_TOOLS	-> USE_TOOLS
	awk		-> gawk
	m4		-> gm4
	make		-> gmake
	sed		-> gsed
	yacc		-> bison
2005-05-22 20:07:36 +00:00
rillig
71d08c9d1e Added three patches that fix the "undeclared snprintf()" errors.
Approved by wiz.
2005-04-29 22:20:45 +00:00
tv
f816d81489 Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
adam
331609a3b7 Changes 1.1.2:
* Saturn's rings are now drawn properly when using "magnify" in
  the config file.
* Added marker_fontsize as an option in the configuration file.
* Added the Bonne, Gnomonic, Polyconic, and Tangential Spherical
  Cube (TSC) projections.
* Added the -proj_param option.  Note that the -projection option
  cannot be abbreviated to -proj anymore!
* Color cloud maps are now allowed.
* A color may now be specified with -background.
2005-04-01 11:33:36 +00:00
wiz
393af94024 Add RMD160 checksums to the SHA1 ones. 2005-02-23 17:36:09 +00:00
reed
e117eda090 Bump PKGREVISIONs due to libtiff update.
Some BUILDLINK_RECOMMENDED bumps done also.

(If I missed any, please let me know -- and let me know a good
way to automate this.)
2004-12-28 23:18:15 +00:00
tv
c487cb967a Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10
in the process.  (More information on tech-pkg.)

Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and
installing .la files.

Bump PKGREVISION (only) of all packages depending directly on the above
via a buildlink3 include.
2004-10-03 00:12:51 +00:00
adam
749f738317 Changes 1.1.1:
* Added -north path, -target path, and -path_relative_to options
* Added -output_start_index option
* Print a list of compile-time options when using the --version option
* Fixed a bug where orbits were not drawn for bodies using SPICE kernels
* Added ssec_map option to configuration files to use University of
  Wisconsinn cloud maps
2004-08-06 09:55:38 +00:00
adam
56b090ae31 Changes 1.1.0:
* Added the -fork option
* Fixed a bug where stars were not drawn when using the -proj option
2004-07-13 08:19:24 +00:00
adam
02b86525c0 Changes 1.0.8:
* Fixed a bug where eclipse shadows were not drawn properly
* Timer now sleeps until it's time to wake up, instead of sleeping for a set
  time
2004-05-24 13:43:32 +00:00
adam
c3103c05e7 Changes 1.0.7:
* The native Quicktime library can be used when reading/writing image files on Mac OS X.
* The -hibernate and -idlewait options now work on Mac OS X.
* Fixed a segfault when writing image files.
* Minor updates to allow compilation with gcc 3.4.0.
2004-05-21 10:45:41 +00:00
adam
e757f269a6 Changes 1.0.6:
* fixed a bug where markers on the far side of a planet were being drawn
  when they shouldn't have been
* fixed a bug where satellite were not drawn for some locales
* added -projection random; this picks a random projection
2004-04-26 14:56:01 +00:00
minskim
2827f5b2d8 Enable tk84 and replace x11/tk with x11/tk83. Packages compatible
with 8.4 will be updated to depend on x11/tk after Tk update.
2004-03-08 20:27:13 +00:00
grant
9b4feec99c replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make. 2004-01-24 15:30:32 +00:00
reed
6d9af8d68d Bump package revisions for tiff update.
Tiff is backward compatible, but was broken on amd64 platform
so this makes sure new tiff is used.
2004-01-03 18:49:33 +00:00
grant
ca3be631f2 s/netbsd.org/NetBSD.org/ 2003-07-17 22:50:55 +00:00
wulf
36c6c71134 Updated to xplanet-1.0.1, rewrite of older version 2003-07-05 09:07:55 +00:00
grant
712c21283a s/USE_CXX/USE_GCC_SHLIB/ - there are more shared libraries than just
libstdc++ in gcc3.

when defined, USE_GCC_SHLIB ensures that the correct rpath is passed
to the linker, and a full dependency on the compiler package is
registered.

packages which define USE_GCC_SHLIB should not include
mk/gcc.buildlink2.mk (or gcc{,3}/buildlink2.mk) as it is handled
automatically.
2003-05-29 23:14:07 +00:00
jschauma
e7c1762bd0 Bump PKGREVISION due to upgrade of Mesa and friends.
Only include Mesa/buildlink2.mk if the package requires all three of
MesaLib, glu and glut - else only include the necessary buildlink2s.
2003-03-09 19:23:09 +00:00
wiz
d8262452c1 Bump PKGREVISION because of dependency on latest freetype2 or glib2
package and library major bumps therein.
Also match dependency in corresponding buildlink2.mk's for the same reason.
Mmmm, binary packages.
2002-12-24 06:09:44 +00:00
jlam
31854edfde Note that this package uses C++. 2002-11-17 09:11:14 +00:00
jlam
393305a676 buildlink1 -> buildlink2 2002-09-23 23:11:58 +00:00
abs
2b325a79cd prdownloads.sourceforge.net is no longer any use.
Switch to MASTER_SITE_SOURCEFORGE.
2002-05-12 10:16:44 +00:00
agc
1633d88f03 The last commit commented out the x11 buildlink file, because the package
has not yet been strongly buildlinked. However, we need to indicate that
the package needs X11 to build, so fall back to USE_X11=yes.

Fixes a problem in the i386 bulk build.
2002-04-13 07:07:49 +00:00
jlam
2976466a41 Several changes:
* It's CONFIGURE_ARGS, not CONFIGURE_ARG.
* Use Mesa/buildlink.mk to properly handle whether we're using XF3 or XF4
  (the latter contains its own MesaGL libraries).
* Comment out inclusion of x11.buildlink.mk since we're not even weakly
  buildlinked, so jumping ahead to trying to strongly buldlinkify this
  package is overboard.
* Sort the buildlink.mk file (just personal aesthetics).
2002-04-12 13:20:01 +00:00
atatat
97bd97796e Add freetype2 support to xplanet, and add two easy ways (the XPLANET
environment variable and the $HOME/.xplanet directory) for users to
maintain data sets and images for xplanet without having to them in
${LOCALBASE}/share/xplanet.
2002-04-04 16:47:54 +00:00
atatat
6e199eb33b Add xplanet package, currently at 0.93 (the recent 0.94 release is
rather broken).
2002-03-25 16:08:07 +00:00