diff options
author | rene <rene@FreeBSD.org> | 2018-09-30 18:39:44 +0800 |
---|---|---|
committer | rene <rene@FreeBSD.org> | 2018-09-30 18:39:44 +0800 |
commit | 0217a8deca6108e61595783eb4e6d38485b6725b (patch) | |
tree | b7baeadda128f31d3a2a9969563990868e8403c2 /graphics | |
parent | ade2640f03493d1c24cc44d0f120e102ffd32f52 (diff) | |
download | freebsd-ports-gnome-0217a8deca6108e61595783eb4e6d38485b6725b.tar.gz freebsd-ports-gnome-0217a8deca6108e61595783eb4e6d38485b6725b.tar.zst freebsd-ports-gnome-0217a8deca6108e61595783eb4e6d38485b6725b.zip |
Remove expired ports:
2018-09-29 net/ntp-devel: Use net/ntp instead
2018-09-29 net/xrdp-devel: Use net/xrdp instead
2018-09-29 net/tigervnc-devel: Use net/tigervnc instead
2018-09-29 net/unison-devel: Use net/unison instead
2018-09-30 textproc/p5-IDNA-Punycode: Deprecated by upstream
2018-08-15 graphics/gnustep-slideshowkit: unknown license
2018-08-15 graphics/gnustep-slideshow: depends on expiring graphics/gnustep-slideshowkit
2018-09-30 security/lockdown: Renders system unbootable
2018-09-30 devel/p5-Search-Binary: Deprecated by upstream, use List::BinarySearch instead
2018-09-30 devel/p5-ExtUtils-Command: ExtUtils::Command has been re-incorporated to ExtUtils-MakeMaker since 7.06, use devel/ExtUtils-MakeMaker instead
2018-09-30 editors/yui: Unmaintained upstream
2018-09-29 x11/tint-devel: Use x11/tint instead
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/Makefile | 2 | ||||
-rw-r--r-- | graphics/gnustep-slideshow/Makefile | 25 | ||||
-rw-r--r-- | graphics/gnustep-slideshow/distinfo | 2 | ||||
-rw-r--r-- | graphics/gnustep-slideshow/files/patch-Controller.m | 41 | ||||
-rw-r--r-- | graphics/gnustep-slideshow/files/patch-PreferencesController.m | 12 | ||||
-rw-r--r-- | graphics/gnustep-slideshow/pkg-descr | 5 | ||||
-rw-r--r-- | graphics/gnustep-slideshow/pkg-plist | 17 | ||||
-rw-r--r-- | graphics/gnustep-slideshowkit/Makefile | 26 | ||||
-rw-r--r-- | graphics/gnustep-slideshowkit/distinfo | 2 | ||||
-rw-r--r-- | graphics/gnustep-slideshowkit/pkg-descr | 3 | ||||
-rw-r--r-- | graphics/gnustep-slideshowkit/pkg-plist | 5 |
11 files changed, 0 insertions, 140 deletions
diff --git a/graphics/Makefile b/graphics/Makefile index f356db2ba16f..575217955d4f 100644 --- a/graphics/Makefile +++ b/graphics/Makefile @@ -294,8 +294,6 @@ SUBDIR += gnofract4d SUBDIR += gnome-color-manager SUBDIR += gnome-video-effects - SUBDIR += gnustep-slideshow - SUBDIR += gnustep-slideshowkit SUBDIR += gocr SUBDIR += goocanvas SUBDIR += goocanvas2 diff --git a/graphics/gnustep-slideshow/Makefile b/graphics/gnustep-slideshow/Makefile deleted file mode 100644 index b467941775de..000000000000 --- a/graphics/gnustep-slideshow/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -# $FreeBSD$ - -PORTNAME= slideshow -PORTVERSION= 0.3.5 -PORTREVISION= 8 -CATEGORIES= graphics gnustep -MASTER_SITES= http://download.gna.org/gsimageapps/ -PKGNAMEPREFIX= gnustep- -DISTNAME= SlideShow-${PORTVERSION} - -MAINTAINER= theraven@FreeBSD.org -COMMENT= SlideShow Viewer - -LICENSE= GPLv2 - -DEPRECATED= depends on expiring graphics/gnustep-slideshowkit -EXPIRATION_DATE= 2018-08-15 - -USES= tar:bzip2 gnustep -USE_GNUSTEP= back build -LIB_DEPENDS= libSlideShow.so:graphics/gnustep-slideshowkit - -OBJCFLAGS+= -Dsel_eq=sel_isEqual - -.include <bsd.port.mk> diff --git a/graphics/gnustep-slideshow/distinfo b/graphics/gnustep-slideshow/distinfo deleted file mode 100644 index 030cc135f0b0..000000000000 --- a/graphics/gnustep-slideshow/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (SlideShow-0.3.5.tar.bz2) = 3973dbe421441d64b1546a410317777a67a23f16b41569707e5dc057a95af61a -SIZE (SlideShow-0.3.5.tar.bz2) = 39478 diff --git a/graphics/gnustep-slideshow/files/patch-Controller.m b/graphics/gnustep-slideshow/files/patch-Controller.m deleted file mode 100644 index 5bb9d7359b90..000000000000 --- a/graphics/gnustep-slideshow/files/patch-Controller.m +++ /dev/null @@ -1,41 +0,0 @@ ---- Controller.m.orig 2013-08-20 15:46:28.000000000 +0000 -+++ Controller.m 2013-08-20 15:46:48.000000000 +0000 -@@ -1021,32 +1021,32 @@ - { - SEL action = [menuItem action]; - -- if ( sel_eq(action,@selector(removeImages:)) ) -+ if ( sel_isEqual(action,@selector(removeImages:)) ) - { - if (( [_backend count] == 0 ) || ( ! [browser selectedCells] ) ) - return NO; - } -- if ( sel_eq(action,@selector(showNextImage:)) ) -+ if ( sel_isEqual(action,@selector(showNextImage:)) ) - { - if ( ( ( _current + 1 ) == [_backend count] ) || ( [_backend count] == 0 ) ) - return NO; - } -- else if ( sel_eq(action,@selector(showPreviousImage:)) ) -+ else if ( sel_isEqual(action,@selector(showPreviousImage:)) ) - { - if ( [_backend count] == 0 ) - return NO; - } -- else if ( sel_eq(action,@selector(fullscreenAction:)) ) -+ else if ( sel_isEqual(action,@selector(fullscreenAction:)) ) - { - if ( [_backend count] == 0 ) - return NO; - } -- else if ( sel_eq(action,@selector(addMarkAction:)) ) -+ else if ( sel_isEqual(action,@selector(addMarkAction:)) ) - { - if ( ( [self showState] == ShowOnlyMarked ) || ([_backend count] == 0 ) ) - return NO; - } -- else if ( sel_eq(action,@selector(showMarkAction:)) ) -+ else if ( sel_isEqual(action,@selector(showMarkAction:)) ) - { - if ( [_backend count] == 0 ) - return NO; diff --git a/graphics/gnustep-slideshow/files/patch-PreferencesController.m b/graphics/gnustep-slideshow/files/patch-PreferencesController.m deleted file mode 100644 index cec49d8a43f7..000000000000 --- a/graphics/gnustep-slideshow/files/patch-PreferencesController.m +++ /dev/null @@ -1,12 +0,0 @@ ---- PreferencesController.m.orig 2004-12-17 10:10:22.000000000 +0100 -+++ PreferencesController.m 2010-05-23 05:22:03.000000000 +0200 -@@ -32,7 +32,9 @@ - - #include "InputView.h" - -+#include <Foundation/NSArchiver.h> - #include <Foundation/NSNotification.h> -+#include <Foundation/NSUserDefaults.h> - - #include <AppKit/NSBrowser.h> - #include <AppKit/NSBrowserCell.h> diff --git a/graphics/gnustep-slideshow/pkg-descr b/graphics/gnustep-slideshow/pkg-descr deleted file mode 100644 index f977442abc27..000000000000 --- a/graphics/gnustep-slideshow/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -SlideShow Viewer - -LICENSE: GPL2 or later - -WWW: http://home.gna.org/gsimageapps/ diff --git a/graphics/gnustep-slideshow/pkg-plist b/graphics/gnustep-slideshow/pkg-plist deleted file mode 100644 index 6c82651710cd..000000000000 --- a/graphics/gnustep-slideshow/pkg-plist +++ /dev/null @@ -1,17 +0,0 @@ -GNUstep/System/Applications/SlideShow.app/Resources/DefaultSlideShowKeyBindings.dict -GNUstep/System/Applications/SlideShow.app/Resources/English.lproj/Main.gorm/data.classes -GNUstep/System/Applications/SlideShow.app/Resources/English.lproj/Main.gorm/data.info -GNUstep/System/Applications/SlideShow.app/Resources/English.lproj/Main.gorm/objects.gorm -GNUstep/System/Applications/SlideShow.app/Resources/English.lproj/Preferences.gorm/data.classes -GNUstep/System/Applications/SlideShow.app/Resources/English.lproj/Preferences.gorm/data.info -GNUstep/System/Applications/SlideShow.app/Resources/English.lproj/Preferences.gorm/objects.gorm -GNUstep/System/Applications/SlideShow.app/Resources/Info-gnustep.plist -GNUstep/System/Applications/SlideShow.app/Resources/SlideShow.desktop -GNUstep/System/Applications/SlideShow.app/Resources/arrowLeft.tiff -GNUstep/System/Applications/SlideShow.app/Resources/arrowRight.tiff -GNUstep/System/Applications/SlideShow.app/Resources/quit.tiff -GNUstep/System/Applications/SlideShow.app/Resources/rotateLeft.tiff -GNUstep/System/Applications/SlideShow.app/Resources/rotateRight.tiff -GNUstep/System/Applications/SlideShow.app/SlideShow -GNUstep/System/Applications/SlideShow.app/stamp.make -GNUstep/System/Tools/SlideShow diff --git a/graphics/gnustep-slideshowkit/Makefile b/graphics/gnustep-slideshowkit/Makefile deleted file mode 100644 index 774569c58949..000000000000 --- a/graphics/gnustep-slideshowkit/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -# $FreeBSD$ - -PORTNAME= slideshowkit -PORTVERSION= 0.0.1 -PORTREVISION= 20050215 -CATEGORIES= graphics gnustep -MASTER_SITES= http://download.gna.org/gsimageapps/ -PKGNAMEPREFIX= gnustep- -DISTNAME= SlideShowKit-${PORTVERSION} - -MAINTAINER= ports@FreeBSD.org -COMMENT= SlideShow Framework - -LICENSE= NONE - -DEPRECATED= unknown license -EXPIRATION_DATE= 2018-08-15 - -USES= gnustep -USE_GNUSTEP= back build -USE_LDCONFIG= ${GNUSTEP_LOCAL_LIBRARIES} - -post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Libraries/libSlideShow.so - -.include <bsd.port.mk> diff --git a/graphics/gnustep-slideshowkit/distinfo b/graphics/gnustep-slideshowkit/distinfo deleted file mode 100644 index 68d0c1e5d630..000000000000 --- a/graphics/gnustep-slideshowkit/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (SlideShowKit-0.0.1.tar.gz) = 4d1ff64f5af939ffbaa2a55da5758974125b4c2f3c3a8b21a55db07e89cc291c -SIZE (SlideShowKit-0.0.1.tar.gz) = 2540 diff --git a/graphics/gnustep-slideshowkit/pkg-descr b/graphics/gnustep-slideshowkit/pkg-descr deleted file mode 100644 index 5482623d3066..000000000000 --- a/graphics/gnustep-slideshowkit/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -SlideShow Framework - -WWW: http://home.gna.org/gsimageapps/ diff --git a/graphics/gnustep-slideshowkit/pkg-plist b/graphics/gnustep-slideshowkit/pkg-plist deleted file mode 100644 index 4a01181e5484..000000000000 --- a/graphics/gnustep-slideshowkit/pkg-plist +++ /dev/null @@ -1,5 +0,0 @@ -GNUstep/System/Library/Libraries/libSlideShow.so -GNUstep/System/Library/Libraries/libSlideShow.so.%%MAJORVERSION%% -GNUstep/System/Library/Libraries/libSlideShow.so.%%VERSION%% -GNUstep/System/Library/Headers/SlideShow/SlideShow.h -GNUstep/System/Library/Headers/SlideShow/SlideShowWindow.h |