diff options
author | will <will@FreeBSD.org> | 2002-04-19 02:30:02 +0000 |
---|---|---|
committer | will <will@FreeBSD.org> | 2002-04-19 02:30:02 +0000 |
commit | 4c52c9067b06ff76694d44e2bd5819fc06e974fe (patch) | |
tree | 8ea2fec29854e5717863bf5e5bf1d1b05d97cefe /astro | |
parent | 9d74629523b0c2fe5f02ba4bc3f37c73af058448 (diff) | |
download | FreeBSD-ports-4c52c9067b06ff76694d44e2bd5819fc06e974fe.zip FreeBSD-ports-4c52c9067b06ff76694d44e2bd5819fc06e974fe.tar.gz |
Say goodbye to Qt 1.x and all of its dependents. The one port I found
which probably isn't supposed to be removed is misc/instant-workstation,
which had a dependency on audio/xamp (being removed), so I removed that
dependency and bumped PORTREVISION. All other ports are real dependents
upon Qt 1.x, including KDE 1.x stuff.
Code in bsd.kde.mk supporting these ports is also removed or adjusted.
Also, some adjustments made to accomodate Qt3/KDE3 ports, which will be
committed Real Soon Now (TM), pending repo-copies.
This commit made in impending view of Qt3/KDE3 entering ports tree.
Diffstat (limited to 'astro')
-rw-r--r-- | astro/Makefile | 1 | ||||
-rw-r--r-- | astro/xglobe/Makefile | 25 | ||||
-rw-r--r-- | astro/xglobe/distinfo | 1 | ||||
-rw-r--r-- | astro/xglobe/files/patch-aa | 42 | ||||
-rw-r--r-- | astro/xglobe/files/patch-random | 47 | ||||
-rw-r--r-- | astro/xglobe/pkg-comment | 1 | ||||
-rw-r--r-- | astro/xglobe/pkg-descr | 5 | ||||
-rw-r--r-- | astro/xglobe/pkg-plist | 4 |
8 files changed, 0 insertions, 126 deletions
diff --git a/astro/Makefile b/astro/Makefile index 0ed5b69..0f7ecf7 100644 --- a/astro/Makefile +++ b/astro/Makefile @@ -45,7 +45,6 @@ SUBDIR += x3arth SUBDIR += xearth SUBDIR += xephem - SUBDIR += xglobe SUBDIR += xphoon SUBDIR += xplanet SUBDIR += xtide diff --git a/astro/xglobe/Makefile b/astro/xglobe/Makefile deleted file mode 100644 index f29b49a..0000000 --- a/astro/xglobe/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -# New ports collection makefile for: xglobe -# Date created: 20 January 1998 -# Whom: Kris Kennaway <kris@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= xglobe -PORTVERSION= 0.5 -CATEGORIES= astro -MASTER_SITES= http://www.uni-karlsruhe.de/~uddn/xglobe/ - -MAINTAINER= kris@FreeBSD.org - -USE_QT_VER= 1 -USE_X_PREFIX= yes -USE_GMAKE= yes - -do-install: - @${MKDIR} ${PREFIX}/share/xglobe/ - @${INSTALL_PROGRAM} ${WRKSRC}/xglobe ${PREFIX}/bin/ - @${INSTALL_DATA} ${WRKSRC}/map.bmp ${PREFIX}/share/xglobe/ - @${INSTALL_DATA} ${WRKSRC}/xglobe-markers ${PREFIX}/share/xglobe/ - -.include <bsd.port.mk> diff --git a/astro/xglobe/distinfo b/astro/xglobe/distinfo deleted file mode 100644 index fdb8623..0000000 --- a/astro/xglobe/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (xglobe-0.5.tar.gz) = 87caf7803f1d71a0b024188e3a2c759c diff --git a/astro/xglobe/files/patch-aa b/astro/xglobe/files/patch-aa deleted file mode 100644 index 6ed7ce4..0000000 --- a/astro/xglobe/files/patch-aa +++ /dev/null @@ -1,42 +0,0 @@ ---- Makefile.orig Mon Jul 19 05:56:27 1999 -+++ Makefile Fri Aug 27 16:06:08 1999 -@@ -4,29 +4,30 @@ - - ####### Installation directory - --XGLOBE_DIR = /usr/local --XGLOBE_LIB_DIR = $(XGLOBE_DIR)/lib/xglobe -+XGLOBE_DIR = $(PREFIX) -+XGLOBE_LIB_DIR = $(XGLOBE_DIR)/share/xglobe - XGLOBE_BIN_DIR = $(XGLOBE_DIR)/bin - - ####### Library directories - you may need to modify these - --X11_INCLUDE_DIR = /usr/X11R6/include --QT_INCLUDE_DIR = $(QTDIR)/include -+X11_INCLUDE_DIR = $(X11BASE)/include -+QT_INCLUDE_DIR = $(X11BASE)/include/X11/qt - --QT_LIB_DIR = $(QTDIR)/lib --X11_LIB_DIR = /usr/X11R6/lib -+QT_LIB_DIR = $(X11BASE)/lib -+X11_LIB_DIR = $(X11BASE)/lib - - - ####### Compiler and tools - --CPP = g++ --LINK = g++ -+CXX ?= c++ -+CPP = ${CXX} -+LINK = ${CXX} - MOC = moc - INSTALL = install - - ####### compile and link options - --CFLAGS = $(INCLUDE_DIRS) -DXGLOBE_LIB_DIR=\"$(XGLOBE_LIB_DIR)\" $(WITH_QIMGIO) -O2 -Wall -+CFLAGS += $(INCLUDE_DIRS) -DXGLOBE_LIB_DIR=\"$(XGLOBE_LIB_DIR)\" $(WITH_QIMGIO) - - LFLAGS = - diff --git a/astro/xglobe/files/patch-random b/astro/xglobe/files/patch-random deleted file mode 100644 index ba9f41c..0000000 --- a/astro/xglobe/files/patch-random +++ /dev/null @@ -1,47 +0,0 @@ ---- earthapp.cpp.orig Sat Feb 24 10:13:10 2001 -+++ earthapp.cpp Sat Feb 24 10:13:29 2001 -@@ -937,8 +937,8 @@ - - void EarthApplication::randomPosition() - { -- view_lat = ((rand()%30001)/30000.)*180. - 90.; -- view_long = ((rand()%30001)/30000.)*360. - 180.; -+ view_lat = ((random()%30001)/30000.)*180. - 90.; -+ view_long = ((random()%30001)/30000.)*360. - 180.; - } - - /* ------------------------------------------------------------------------*/ ---- renderer.cpp.orig Sat Feb 24 10:12:53 2001 -+++ renderer.cpp Sat Feb 24 10:13:04 2001 -@@ -1562,9 +1562,9 @@ - - for(int i=0; i<numstars; i++) - { -- x = rand() % renderedImage->width(); -- y = rand() % renderedImage->height(); -- brightness = 150+ (rand() % 106); -+ x = random() % renderedImage->width(); -+ y = random() % renderedImage->height(); -+ brightness = 150+ (random() % 106); - p = (unsigned int *)renderedImage->scanLine(y); - p += x; - *p = qRgb(brightness, brightness, brightness); ---- main.cpp.orig Tue Jul 13 10:32:55 1999 -+++ main.cpp Sat Feb 24 10:14:56 2001 -@@ -24,6 +24,7 @@ - */ - - #include <stdio.h> -+#include <stdlib.h> - #include <string.h> - #include <qstring.h> - #include "config.h" -@@ -36,6 +37,8 @@ - int main(int argc, char **argv) - { - EarthApplication myApp(argc, argv); -+ -+ srandomdev(); - - #ifdef WITH_QIMAGEIO - qInitImageIO(); diff --git a/astro/xglobe/pkg-comment b/astro/xglobe/pkg-comment deleted file mode 100644 index 9fb7fa1..0000000 --- a/astro/xglobe/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Displays a view of the Earth (like xearth) with a rendered photo map diff --git a/astro/xglobe/pkg-descr b/astro/xglobe/pkg-descr deleted file mode 100644 index b7481b6..0000000 --- a/astro/xglobe/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -Displays a rendered view of the earth in your root window, similar to -xearth, but instead uses a satellite image map of the earth. You can also -substitute surface maps of other planets if you're feeling cosmic. - -WWW: http://www.stud.uni-karlsruhe.de/~uddn/xglobe/ diff --git a/astro/xglobe/pkg-plist b/astro/xglobe/pkg-plist deleted file mode 100644 index e705ced..0000000 --- a/astro/xglobe/pkg-plist +++ /dev/null @@ -1,4 +0,0 @@ -bin/xglobe -share/xglobe/map.bmp -share/xglobe/xglobe-markers -@dirrm share/xglobe |