summaryrefslogtreecommitdiff
path: root/x11/xplanet
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2005-06-30 15:06:24 +0000
committeradam <adam@pkgsrc.org>2005-06-30 15:06:24 +0000
commit51f58657474fbd478972f3d6be45b3d268356a7d (patch)
tree63a237904c739773692a9292d87b24442d2d699a /x11/xplanet
parentcba955f454b6e06e64ef2f2d9323ae17caf21a5c (diff)
downloadpkgsrc-51f58657474fbd478972f3d6be45b3d268356a7d.tar.gz
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.
Diffstat (limited to 'x11/xplanet')
-rw-r--r--x11/xplanet/Makefile4
-rw-r--r--x11/xplanet/PLIST3
-rw-r--r--x11/xplanet/distinfo11
-rw-r--r--x11/xplanet/patches/patch-aa14
-rw-r--r--x11/xplanet/patches/patch-ab14
-rw-r--r--x11/xplanet/patches/patch-ac12
6 files changed, 8 insertions, 50 deletions
diff --git a/x11/xplanet/Makefile b/x11/xplanet/Makefile
index a3a7ffd9374..0bbe60c7fdb 100644
--- a/x11/xplanet/Makefile
+++ b/x11/xplanet/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.26 2005/06/01 18:03:33 jlam Exp $
+# $NetBSD: Makefile,v 1.27 2005/06/30 15:06:24 adam Exp $
-DISTNAME= xplanet-1.1.2
+DISTNAME= xplanet-1.2.0
CATEGORIES= x11
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=xplanet/}
diff --git a/x11/xplanet/PLIST b/x11/xplanet/PLIST
index 9b83d7a1d5a..497058f071b 100644
--- a/x11/xplanet/PLIST
+++ b/x11/xplanet/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.4 2005/04/01 11:33:36 adam Exp $
+@comment $NetBSD: PLIST,v 1.5 2005/06/30 15:06:24 adam Exp $
bin/xplanet
man/man1/xplanet.1
share/xplanet/arcs/README
@@ -21,6 +21,7 @@ share/xplanet/images/shuttle.png
share/xplanet/images/smile.png
share/xplanet/images/sublunar.png
share/xplanet/images/subsolar.png
+share/xplanet/images/sun.jpg
share/xplanet/markers/README
share/xplanet/markers/brightStars
share/xplanet/markers/earth
diff --git a/x11/xplanet/distinfo b/x11/xplanet/distinfo
index 216831bd38c..2a69beec5e2 100644
--- a/x11/xplanet/distinfo
+++ b/x11/xplanet/distinfo
@@ -1,8 +1,5 @@
-$NetBSD: distinfo,v 1.11 2005/04/29 22:20:45 rillig Exp $
+$NetBSD: distinfo,v 1.12 2005/06/30 15:06:24 adam Exp $
-SHA1 (xplanet-1.1.2.tar.gz) = 15e68c7f9ff8d7a1a0e3e64de74d1fafa29179eb
-RMD160 (xplanet-1.1.2.tar.gz) = 089a7b21c0a57b035ea5bf3e0a3f2060378eda67
-Size (xplanet-1.1.2.tar.gz) = 1185949 bytes
-SHA1 (patch-aa) = 0c7774676bfc1b274250c45e1e41cb28e8318bef
-SHA1 (patch-ab) = 2b35aee03aca31989562c8f69175f62c5853eb34
-SHA1 (patch-ac) = a22c46de57db2cd48db68d0b11a0d59446099616
+SHA1 (xplanet-1.2.0.tar.gz) = e002711f90f502565613ab17a273175cc035b52c
+RMD160 (xplanet-1.2.0.tar.gz) = 68079629e82194f483caa0c06d73672544efbcbb
+Size (xplanet-1.2.0.tar.gz) = 1196496 bytes
diff --git a/x11/xplanet/patches/patch-aa b/x11/xplanet/patches/patch-aa
deleted file mode 100644
index 0dc33d9cb11..00000000000
--- a/x11/xplanet/patches/patch-aa
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-aa,v 1.3 2005/04/29 22:20:45 rillig Exp $
-
-Needed for snprintf(3).
-
---- src/libprojection/ProjectionBonne.cpp.orig Tue Nov 16 18:43:43 2004
-+++ src/libprojection/ProjectionBonne.cpp Tue Apr 26 12:35:18 2005
-@@ -8,6 +8,7 @@
- */
-
- #include <cmath>
-+#include <cstdio>
- #include <sstream>
- #include <vector>
- using namespace std;
diff --git a/x11/xplanet/patches/patch-ab b/x11/xplanet/patches/patch-ab
deleted file mode 100644
index 30fa860072d..00000000000
--- a/x11/xplanet/patches/patch-ab
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-ab,v 1.3 2005/04/29 22:20:45 rillig Exp $
-
-Needed for snprintf(3).
-
---- src/libprojection/ProjectionGnomonic.cpp.orig Tue Nov 16 20:06:45 2004
-+++ src/libprojection/ProjectionGnomonic.cpp Tue Apr 26 12:35:09 2005
-@@ -8,6 +8,7 @@
- */
-
- #include <cmath>
-+#include <cstdio>
- #include <sstream>
- using namespace std;
-
diff --git a/x11/xplanet/patches/patch-ac b/x11/xplanet/patches/patch-ac
deleted file mode 100644
index 8a7c19f93e1..00000000000
--- a/x11/xplanet/patches/patch-ac
+++ /dev/null
@@ -1,12 +0,0 @@
-$NetBSD: patch-ac,v 1.3 2005/04/29 22:20:45 rillig Exp $
-
-Needed for snprintf(3).
-
---- src/libprojection/ProjectionMercator.cpp.orig Tue Nov 16 22:56:55 2004
-+++ src/libprojection/ProjectionMercator.cpp Tue Apr 26 12:35:43 2005
-@@ -1,4 +1,5 @@
- #include <cmath>
-+#include <cstdio>
- #include <sstream>
- using namespace std;
-