diff options
author | Rene Ladan <rene@FreeBSD.org> | 2020-03-20 02:38:47 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2020-03-20 02:38:47 +0000 |
commit | a0f154acf40905bcdc48d4cbf9f400052693a281 (patch) | |
tree | 56535ab543b2bd7abaadf254e819c7689d83db71 /x11-wm | |
parent | Remove expired ports: (diff) |
Remove expired ports:
2020-03-16 x11/rxvt: Abandonware: stable release 2.6.4 / November 1, 2001 and no maintainer
x11-wm/clementine-wm: Unmaintained and depends on expired x11/rxvt
Notes
Notes:
svn path=/head/; revision=528758
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/Makefile | 1 | ||||
-rw-r--r-- | x11-wm/clementine-wm/Makefile | 61 | ||||
-rw-r--r-- | x11-wm/clementine-wm/distinfo | 2 | ||||
-rw-r--r-- | x11-wm/clementine-wm/files/patch-painter.cpp | 40 | ||||
-rw-r--r-- | x11-wm/clementine-wm/files/patch-windowmanager.cpp | 15 | ||||
-rw-r--r-- | x11-wm/clementine-wm/pkg-descr | 4 | ||||
-rw-r--r-- | x11-wm/clementine-wm/pkg-message | 8 |
7 files changed, 0 insertions, 131 deletions
diff --git a/x11-wm/Makefile b/x11-wm/Makefile index 098ba8647d80..a8da34ccc9d2 100644 --- a/x11-wm/Makefile +++ b/x11-wm/Makefile @@ -17,7 +17,6 @@ SUBDIR += bspwm SUBDIR += cage SUBDIR += chamfer - SUBDIR += clementine-wm SUBDIR += compiz SUBDIR += compiz-plugins-extra SUBDIR += compiz-plugins-main diff --git a/x11-wm/clementine-wm/Makefile b/x11-wm/clementine-wm/Makefile deleted file mode 100644 index 786549cbfb80..000000000000 --- a/x11-wm/clementine-wm/Makefile +++ /dev/null @@ -1,61 +0,0 @@ -# Created by: trevor -# $FreeBSD$ - -PORTNAME= clementine -PORTVERSION= 0.0.7 -PORTREVISION= 7 -CATEGORIES= x11-wm -MASTER_SITES= SF/${PORTNAME}/Source/${PORTNAME}-${PORTVERSION} -PKGNAMESUFFIX= -wm - -MAINTAINER= ports@FreeBSD.org -COMMENT= Window manager based on aewm with title bars, iconization, and styles - -LICENSE= GPLv2 MIT -LICENSE_COMB= multi - -RUN_DEPENDS= xv:graphics/xv \ - rxvt:x11/rxvt - -USES= gmake xorg -USE_XORG= x11 - -PORTDOCS= HISTORY LICENSE -PLIST_FILES= bin/clementine \ - %%DATADIR%%/look-black \ - %%DATADIR%%/look-black2 \ - %%DATADIR%%/look-blue \ - %%DATADIR%%/look-celadon \ - %%DATADIR%%/look-grey \ - %%DATADIR%%/look-taupe \ - %%DATADIR%%/look-turq \ - %%DATADIR%%/look-xemacs \ - %%DATADIR%%/keys - -OPTIONS_DEFINE= DOCS - -post-patch: - @${REINPLACE_CMD} -e \ - 's|/usr/X11R6|${LOCALBASE}| ; \ - s|$$(CC)|$$(CXX)| ; \ - s|$$(CFLAGS)|$$(CXXFLAGS)| ; \ - s|$$(DEFINES)||' \ - ${WRKSRC}/Makefile - @${REINPLACE_CMD} -e \ - 's|./clementine|${PREFIX}/bin/clementine|' \ - ${WRKSRC}/windowmanager.cpp - -do-install: - (cd ${WRKSRC} && ${INSTALL_PROGRAM} clementine ${STAGEDIR}${PREFIX}/bin) - @${MKDIR} ${STAGEDIR}${DATADIR} -.for i in look-* keys - (cd ${WRKSRC} && ${INSTALL_DATA} ${i} ${STAGEDIR}${DATADIR}) -.endfor - -do-install-DOCS-on: - @${MKDIR} ${STAGEDIR}${DOCSDIR} -.for i in ${PORTDOCS} - (cd ${WRKSRC} && ${INSTALL_DATA} ${i} ${STAGEDIR}${DOCSDIR}) -.endfor - -.include <bsd.port.mk> diff --git a/x11-wm/clementine-wm/distinfo b/x11-wm/clementine-wm/distinfo deleted file mode 100644 index 248eee7cd2cb..000000000000 --- a/x11-wm/clementine-wm/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (clementine-0.0.7.tar.gz) = bbd17765825f79955c97f7e45485ee422c8ba13810efb0ed4679380044c54e44 -SIZE (clementine-0.0.7.tar.gz) = 34187 diff --git a/x11-wm/clementine-wm/files/patch-painter.cpp b/x11-wm/clementine-wm/files/patch-painter.cpp deleted file mode 100644 index 4bf2a6c0f603..000000000000 --- a/x11-wm/clementine-wm/files/patch-painter.cpp +++ /dev/null @@ -1,40 +0,0 @@ ---- painter.cpp.orig Sat Mar 23 03:23:17 2002 -+++ painter.cpp Tue May 27 19:25:40 2003 -@@ -9,6 +9,7 @@ - #include <cassert> - #include <algorithm> - #include <cmath> -+#include <iostream> - - #define DEF_FONT "fixed" - #define DEF_ACTIVE_FG "white" -@@ -420,7 +421,7 @@ - cs = look->activeButtonFacet()->color(); - else - cs = look->inactiveButtonFacet()->color(); -- if ( std::fmod(width,2) == 0 ) -+ if ( std::fmod((float)width,2) == 0 ) - width--; - height = width; - int half = height/2; -@@ -428,13 +429,13 @@ - y += half - int(.2*height); // move down a bit - height = half; // reduce height - setForeground( cs.color.pixel() ); -- drawLine( d, x, y, x + std::ceil(width/2) + 1, y + height + 1 ); -- drawLine( d, x + 1, y, x + std::ceil(width/2) + 1, y + height ); -- drawLine( d, x, y + 1, x + std::ceil(width/2), y + height + 1 ); -- drawLine( d, x + std::ceil(width/2), y + height, x + width, y -1 ); -- drawLine( d, x + std::ceil(width/2), y + height-1, x +width-1, y-1 ); -- drawLine( d, x + std::ceil(width/2)+1, y + height, x +width, y ); -- drawPoint( d, x + std::ceil(width/2), y + height + 1 ); -+ drawLine( d, x, y, x + (int) std::ceil((float)width/2) + 1, y + height + 1 ); -+ drawLine( d, x + 1, y, x + (int) std::ceil((float)width/2) + 1, y + height ); -+ drawLine( d, x, y + 1, x + (int) std::ceil((float)width/2), y + height + 1 ); -+ drawLine( d, x + (int) std::ceil((float)width/2), y + height, x + width, y -1 ); -+ drawLine( d, x + (int) std::ceil((float)width/2), y + height-1, x +width-1, y-1 ); -+ drawLine( d, x + (int) std::ceil((float)width/2)+1, y + height, x +width, y ); -+ drawPoint( d, x + (int) std::ceil((float)width/2), y + height + 1 ); - } - - void Painter::setButtonBackground( Drawable d, Painter::Button b, bool active, diff --git a/x11-wm/clementine-wm/files/patch-windowmanager.cpp b/x11-wm/clementine-wm/files/patch-windowmanager.cpp deleted file mode 100644 index 5668b0cce48e..000000000000 --- a/x11-wm/clementine-wm/files/patch-windowmanager.cpp +++ /dev/null @@ -1,15 +0,0 @@ -windowmanager.cpp: In method `void WindowManager::takeButtonPress(long unsigned int, unsigned int, bool, int, int)': -windowmanager.cpp:309: implicit declaration of function `int dumpClients(...)' - ---- windowmanager.cpp.orig Sun May 26 01:54:11 2002 -+++ windowmanager.cpp Sun May 26 03:34:46 2002 -@@ -306,7 +306,9 @@ void WindowManager::takeButtonPress( Win - c->redraw( true ); - clients.push_back( c ); - icons.erase( std::find( icons.begin(), icons.end(), c ) ); -+#ifdef DEBUG - dumpClients(); -+#endif - } else { - if ( menu ) { - delete menu; diff --git a/x11-wm/clementine-wm/pkg-descr b/x11-wm/clementine-wm/pkg-descr deleted file mode 100644 index 2c025a6b71a9..000000000000 --- a/x11-wm/clementine-wm/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -Clementine is based on aewm. It has title bars, iconizing, and -styles. It is still in an early stage of development. - -WWW: http://clementine.sourceforge.net/ diff --git a/x11-wm/clementine-wm/pkg-message b/x11-wm/clementine-wm/pkg-message deleted file mode 100644 index 85fcb3c4a901..000000000000 --- a/x11-wm/clementine-wm/pkg-message +++ /dev/null @@ -1,8 +0,0 @@ -[ -{ type: install - message: <<EOM - To customize clementine, copy the keys file to ~/keys and - copy one of the look- files to ~/look; edit them as needed. -EOM -} -] |