aboutsummaryrefslogtreecommitdiffstats
path: root/x11
diff options
context:
space:
mode:
authorrene <rene@FreeBSD.org>2014-03-03 17:39:57 +0800
committerrene <rene@FreeBSD.org>2014-03-03 17:39:57 +0800
commit20514d1477ff77e9675b2c137caf5f73f932f2ed (patch)
tree37c3e4573cd0c5ded94aa9b9299d648c97d8fd59 /x11
parentf8692d6568d8c53b75d3145bd9bca72267ea734f (diff)
downloadfreebsd-ports-gnome-20514d1477ff77e9675b2c137caf5f73f932f2ed.tar.gz
freebsd-ports-gnome-20514d1477ff77e9675b2c137caf5f73f932f2ed.tar.zst
freebsd-ports-gnome-20514d1477ff77e9675b2c137caf5f73f932f2ed.zip
Remove expired port:
2014-03-03 x11/mgapdesk: Needs an old (pre 7.2) XFree86/X.org header file to build
Diffstat (limited to 'x11')
-rw-r--r--x11/Makefile1
-rw-r--r--x11/mgapdesk/Makefile41
-rw-r--r--x11/mgapdesk/distinfo2
-rw-r--r--x11/mgapdesk/files/patch-aa19
-rw-r--r--x11/mgapdesk/files/patch-ab46
-rw-r--r--x11/mgapdesk/files/patch-makefile.in17
-rw-r--r--x11/mgapdesk/files/patch-src-makefile.in17
-rw-r--r--x11/mgapdesk/pkg-descr4
-rw-r--r--x11/mgapdesk/pkg-plist25
9 files changed, 0 insertions, 172 deletions
diff --git a/x11/Makefile b/x11/Makefile
index 83e32f1a08bf..b9281db00b05 100644
--- a/x11/Makefile
+++ b/x11/Makefile
@@ -209,7 +209,6 @@
SUBDIR += menu-cache
SUBDIR += metalock
SUBDIR += metisse
- SUBDIR += mgapdesk
SUBDIR += mkcomposecache
SUBDIR += mlterm
SUBDIR += mrxvt
diff --git a/x11/mgapdesk/Makefile b/x11/mgapdesk/Makefile
deleted file mode 100644
index a5c7d8c4bbb3..000000000000
--- a/x11/mgapdesk/Makefile
+++ /dev/null
@@ -1,41 +0,0 @@
-# Created by: Nick Sayer
-# $FreeBSD$
-
-PORTNAME= mgapdesk
-PORTVERSION= 1.0.7
-PORTREVISION= 5
-CATEGORIES= x11
-MASTER_SITES= ftp://ftp.matrox.com/pub/mga/archive/linux/2001/powerdesk_1_00_7/
-DISTNAME= ${PORTNAME}-1_00-7beta_src
-EXTRACT_SUFX= .tgz
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Matrox Powerdesk for *nix
-
-DEPRECATED= Needs an old (pre 7.2) XFree86/X.org header file to build
-EXPIRATION_DATE= 2014-03-03
-
-IGNORE= needs an old XFree86/X.org header file to build
-
-USE_GNOME= gtk12
-USES= gmake
-USE_AUTOTOOLS= autoconf213
-
-WRKSRC= ${WRKDIR}/${PORTNAME}
-
-NO_STAGE= yes
-.include <bsd.port.pre.mk>
-
-.if (${ARCH} == "alpha")
-LDFLAGS+= -lio
-.endif
-
-.if ${ARCH} == "sparc64" || ${ARCH} == "ia64"
-BROKEN= Does not compile on sparc64 or ia64
-.endif
-
-post-extract:
- @${RM} -f ${WRKSRC}/config.cache
- @${CHMOD} 750 ${WRKSRC}/missing
-
-.include <bsd.port.post.mk>
diff --git a/x11/mgapdesk/distinfo b/x11/mgapdesk/distinfo
deleted file mode 100644
index d0d45bc34e33..000000000000
--- a/x11/mgapdesk/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (mgapdesk-1_00-7beta_src.tgz) = ad723586f368e37e2a00d7e1efeae8f92ef08342a8783a9ca9d4a2f930ac5a23
-SIZE (mgapdesk-1_00-7beta_src.tgz) = 1856115
diff --git a/x11/mgapdesk/files/patch-aa b/x11/mgapdesk/files/patch-aa
deleted file mode 100644
index 0ce011d9a4b1..000000000000
--- a/x11/mgapdesk/files/patch-aa
+++ /dev/null
@@ -1,19 +0,0 @@
---- src/io.h.orig Sat Jun 2 12:57:44 2001
-+++ src/io.h Sat Jun 2 12:59:56 2001
-@@ -10,11 +10,16 @@
- * Last modified : March 2001.
- *********************************************************/
-
-+#include <sys/param.h> /* for BSD */
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <errno.h>
-+#ifdef BSD
-+#include <machine/cpufunc.h>
-+#else
- #include <sys/io.h>
-+#endif
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <fcntl.h>
diff --git a/x11/mgapdesk/files/patch-ab b/x11/mgapdesk/files/patch-ab
deleted file mode 100644
index 60e5ad5e3e5c..000000000000
--- a/x11/mgapdesk/files/patch-ab
+++ /dev/null
@@ -1,46 +0,0 @@
---- src/io.c.orig Thu May 31 04:10:39 2001
-+++ src/io.c Sat Jun 2 13:21:25 2001
-@@ -14,18 +14,40 @@
-
- #include "global.h"
- #include "io.h"
-+#ifdef BSD
-+/*
-+ * Make a phony iopl call. Opening /dev/io in BSD permits all I/O access.
-+ * There is no granularity.
-+ */
-+#include <stdio.h>
-+int iopl(int on) {
-+ static FILE *f=NULL;
-+
-+ if (on) {
-+ if (f!=NULL)
-+ return 0; /* already on */
-+ f=fopen("/dev/io","r+");
-+ return (f==NULL);
-+ } else {
-+ fclose(f);
-+ f=NULL;
-+ return 0;
-+ }
-+}
-+
-+#endif
-
- static int int_pci_conf1_read_config_dword(unsigned char bus, unsigned char device_fn, unsigned char where, unsigned int *value)
- {
-- outl(CONFIG_CMD(bus,device_fn,where), 0xCF8 );
-+ outl(0xCF8, CONFIG_CMD(bus,device_fn,where));
- *value = inl(0xCFC);
- return 1;
- }
-
- static int int_pci_conf1_write_config_dword(unsigned char bus, unsigned char device_fn, unsigned char where, unsigned int value)
- {
-- outl(CONFIG_CMD(bus,device_fn,where), 0xCF8 );
-- outl(value, ((0xCFC + (where & 3))));
-+ outl(0xCF8, CONFIG_CMD(bus,device_fn,where));
-+ outl(((0xCFC + (where & 3))), value);
- return 1;
- }
-
diff --git a/x11/mgapdesk/files/patch-makefile.in b/x11/mgapdesk/files/patch-makefile.in
deleted file mode 100644
index 54bd81fd65b1..000000000000
--- a/x11/mgapdesk/files/patch-makefile.in
+++ /dev/null
@@ -1,17 +0,0 @@
---- Makefile.in.orig Thu Feb 21 00:00:45 2002
-+++ Makefile.in Thu Feb 21 00:01:10 2002
-@@ -40,10 +40,10 @@
-
- top_builddir = .
-
--ACLOCAL = @ACLOCAL@
--AUTOCONF = @AUTOCONF@
--AUTOMAKE = @AUTOMAKE@
--AUTOHEADER = @AUTOHEADER@
-+#ACLOCAL = @ACLOCAL@
-+#AUTOCONF = @AUTOCONF@
-+#AUTOMAKE = @AUTOMAKE@
-+#AUTOHEADER = @AUTOHEADER@
-
- INSTALL = @INSTALL@
- INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
diff --git a/x11/mgapdesk/files/patch-src-makefile.in b/x11/mgapdesk/files/patch-src-makefile.in
deleted file mode 100644
index 2466253d5622..000000000000
--- a/x11/mgapdesk/files/patch-src-makefile.in
+++ /dev/null
@@ -1,17 +0,0 @@
---- src/Makefile.in.orig Thu Feb 21 00:00:45 2002
-+++ src/Makefile.in Thu Feb 21 00:01:10 2002
-@@ -40,10 +40,10 @@
-
- top_builddir = ..
-
--ACLOCAL = @ACLOCAL@
--AUTOCONF = @AUTOCONF@
--AUTOMAKE = @AUTOMAKE@
--AUTOHEADER = @AUTOHEADER@
-+#ACLOCAL = @ACLOCAL@
-+#AUTOCONF = @AUTOCONF@
-+#AUTOMAKE = @AUTOMAKE@
-+#AUTOHEADER = @AUTOHEADER@
-
- INSTALL = @INSTALL@
- INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
diff --git a/x11/mgapdesk/pkg-descr b/x11/mgapdesk/pkg-descr
deleted file mode 100644
index 2386338704ac..000000000000
--- a/x11/mgapdesk/pkg-descr
+++ /dev/null
@@ -1,4 +0,0 @@
-Matrox powerdesk allows you to configure Matrox video cards running under
-XFree86-4 for dual head, TV out and other refinements.
-
-WWW: http://www.matrox.com/mga/
diff --git a/x11/mgapdesk/pkg-plist b/x11/mgapdesk/pkg-plist
deleted file mode 100644
index 8379330bd946..000000000000
--- a/x11/mgapdesk/pkg-plist
+++ /dev/null
@@ -1,25 +0,0 @@
-bin/mgapdesk
-share/mgapdesk/pixmaps/ArrowDown.xpm
-share/mgapdesk/pixmaps/ArrowExpandH.xpm
-share/mgapdesk/pixmaps/ArrowExpandV.xpm
-share/mgapdesk/pixmaps/ArrowLeft.xpm
-share/mgapdesk/pixmaps/ArrowRight.xpm
-share/mgapdesk/pixmaps/ArrowShrinkH.xpm
-share/mgapdesk/pixmaps/ArrowShrinkV.xpm
-share/mgapdesk/pixmaps/ArrowUp.xpm
-share/mgapdesk/pixmaps/BoardWGear.xpm
-share/mgapdesk/pixmaps/DHClone.xpm
-share/mgapdesk/pixmaps/DHMergedDisplay.xpm
-share/mgapdesk/pixmaps/DHMultiDisplay.xpm
-share/mgapdesk/pixmaps/icon.xpm
-share/mgapdesk/pixmaps/invert.xpm
-share/mgapdesk/pixmaps/matrox.xpm
-share/mgapdesk/pixmaps/monitor1small.xpm
-share/mgapdesk/pixmaps/monitor2small.xpm
-share/mgapdesk/pixmaps/pdbkgnd.xpm
-share/mgapdesk/pixmaps/planet.xpm
-share/mgapdesk/pixmaps/s1.xpm
-share/mgapdesk/pixmaps/s2.xpm
-share/mgapdesk/pixmaps/screen.xpm
-@dirrm share/mgapdesk/pixmaps
-@dirrm share/mgapdesk