diff options
Diffstat (limited to 'x11-wm')
121 files changed, 43 insertions, 3042 deletions
diff --git a/x11-wm/awesome2/Makefile b/x11-wm/awesome2/Makefile deleted file mode 100644 index 2f86be2ccdaf..000000000000 --- a/x11-wm/awesome2/Makefile +++ /dev/null @@ -1,53 +0,0 @@ -# New ports collection makefile for: awesome -# Date created: September 26, 2007 -# Whom: Nikos Ntarmos <ntarmos@ceid.upatras.gr> -# -# $FreeBSD$ -# - -PORTNAME= awesome -PORTVERSION= 1.3 -PORTREVISION= 1 -CATEGORIES= x11-wm -MASTER_SITES= http://awesome.naquadah.org/download/ - -MAINTAINER= ntarmos@ceid.upatras.gr -COMMENT= A tiling window manager initialy based on a dwm code rewriting - -LIB_DEPENDS= config.4:${PORTSDIR}/devel/libconfig - -USE_XLIB= yes - -MAN1= awesome.1 -PLIST_FILES= bin/awesome -PORTDOCS= AUTHORS LICENSE README -PORTEXAMPLES= awesomerc - -OPTIONS= LWRFLT "Support lowering of floating windows" on \ - WARP "Support mouse warping" on - -.include <bsd.port.pre.mk> - -.if defined(WITH_LWRFLT) -EXTRA_PATCHES+= ${FILESDIR}/extrapatch-lowerfloat -.endif - -.if defined(WITH_WARP) -EXTRA_PATCHES+= ${FILESDIR}/extrapatch-warp -.endif - -post-install: -.if !defined(NOPORTDOCS) - @${ECHO_MSG} "installing additional documentation to ${DOCSDIR}" - @${MKDIR} ${DOCSDIR} - @${INSTALL_MAN} ${WRKSRC}/AUTHORS ${DOCSDIR} - @${INSTALL_MAN} ${WRKSRC}/LICENSE ${DOCSDIR} - @${INSTALL_MAN} ${WRKSRC}/README ${DOCSDIR} -.endif -.if !defined(NOPORTEXAMPLES) - @${ECHO_MSG} "installing example config file to ${EXAMPLESDIR}" - @${MKDIR} ${EXAMPLESDIR} - @${INSTALL_MAN} ${WRKSRC}/awesomerc ${EXAMPLESDIR} -.endif - -.include <bsd.port.post.mk> diff --git a/x11-wm/awesome2/distinfo b/x11-wm/awesome2/distinfo deleted file mode 100644 index 7cd015052c27..000000000000 --- a/x11-wm/awesome2/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (awesome-1.3.tar.gz) = c5625853e5f79ed7cde618b872928527 -SHA256 (awesome-1.3.tar.gz) = 72f8b6d9107e8c4d55eead8b13b71f4459b0d415cd67f2958c80ed32878f9635 -SIZE (awesome-1.3.tar.gz) = 40012 diff --git a/x11-wm/awesome2/files/extrapatch-lowerfloat b/x11-wm/awesome2/files/extrapatch-lowerfloat deleted file mode 100644 index cd23c3bce440..000000000000 --- a/x11-wm/awesome2/files/extrapatch-lowerfloat +++ /dev/null @@ -1,29 +0,0 @@ ---- layout.c.orig 2007-09-26 12:08:27.000000000 +0300 -+++ layout.c 2007-09-26 17:41:42.000000000 +0300 -@@ -118,25 +118,7 @@ - drawstatusbar(disp, drawcontext, awesomeconf); - if(!sel) - return; -- if(sel->isfloating || IS_ARRANGE(layout_floating)) -- XRaiseWindow(disp, sel->win); -- if(!IS_ARRANGE(layout_floating)) -- { -- wc.stack_mode = Below; -- wc.sibling = awesomeconf->statusbar.window; -- if(!sel->isfloating) -- { -- XConfigureWindow(disp, sel->win, CWSibling | CWStackMode, &wc); -- wc.sibling = sel->win; -- } -- for(c = clients; c; c = c->next) -- { -- if(!IS_TILED(c, awesomeconf->screen, awesomeconf->tags, awesomeconf->ntags) || c == sel) -- continue; -- XConfigureWindow(disp, c->win, CWSibling | CWStackMode, &wc); -- wc.sibling = c->win; -- } -- } -+ XRaiseWindow(disp, sel->win); - XSync(disp, False); - while(XCheckMaskEvent(disp, EnterWindowMask, &ev)); - } diff --git a/x11-wm/awesome2/files/extrapatch-warp b/x11-wm/awesome2/files/extrapatch-warp deleted file mode 100644 index 76aa663e042e..000000000000 --- a/x11-wm/awesome2/files/extrapatch-warp +++ /dev/null @@ -1,11 +0,0 @@ ---- layout.c.orig 2007-09-26 13:18:33.000000000 +0300 -+++ layout.c 2007-09-26 13:20:48.000000000 +0300 -@@ -114,6 +114,8 @@ - Client *c; - XEvent ev; - XWindowChanges wc; -+ if(sel) -+ XWarpPointer(disp, None, sel->win, 0, 0, 0, 0, sel->w / 2, sel->h / 2); - - drawstatusbar(disp, awesomeconf->screen, drawcontext, awesomeconf); - if(!sel) diff --git a/x11-wm/awesome2/files/patch-config.c b/x11-wm/awesome2/files/patch-config.c deleted file mode 100644 index 4e9fece82e4e..000000000000 --- a/x11-wm/awesome2/files/patch-config.c +++ /dev/null @@ -1,11 +0,0 @@ ---- config.c -+++ config.c -@@ -400,7 +400,7 @@ parse_config(Display * disp, int scr, DC * drawcontext, const char *confpatharg, - awesomeconf->mwfact = f ? f : 0.6; - - /* resize_hints */ -- awesomeconf->resize_hints = config_lookup_float(&awesomelibconf, "awesome.resize_hints"); -+ awesomeconf->resize_hints = config_lookup_bool(&awesomelibconf, "awesome.resize_hints"); - - /* colors */ - tmp = config_lookup_string(&awesomelibconf, "awesome.normal_border_color"); diff --git a/x11-wm/awesome2/files/patch-config.mk b/x11-wm/awesome2/files/patch-config.mk deleted file mode 100644 index 26ccec6d6e7e..000000000000 --- a/x11-wm/awesome2/files/patch-config.mk +++ /dev/null @@ -1,29 +0,0 @@ ---- config.mk.orig 2007-09-26 11:41:29.000000000 +0300 -+++ config.mk 2007-09-26 11:42:35.000000000 +0300 -@@ -7,19 +7,19 @@ - LAYOUTS = layouts/tile.c layouts/floating.c layouts/max.c - - # paths --PREFIX = /usr/local --MANPREFIX = ${PREFIX}/share/man -+PREFIX?= /usr/local -+MANPREFIX = ${PREFIX}/man - --X11INC = /usr/include/X11 --X11LIB = /usr/lib/X11 -+X11INC = ${X11BASE}/include -+X11LIB = ${X11BASE}/lib - - # includes and libs - INCS = -I. -I/usr/include -I${X11INC} `pkg-config --cflags libconfig xft` - LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 `pkg-config --libs libconfig xft` -lXext -lXrandr -lXinerama - - # flags --CFLAGS = -fgnu89-inline -std=gnu99 -ggdb3 -pipe -Wall -Wextra -W -Wchar-subscripts -Wundef -Wshadow -Wcast-align -Wwrite-strings -Wsign-compare -Wunused -Wuninitialized -Winit-self -Wpointer-arith -Wredundant-decls -Wno-format-zero-length -Wmissing-prototypes -Wmissing-format-attribute -Wmissing-noreturn -O3 ${INCS} -DVERSION=\"${VERSION}\" --LDFLAGS = -ggdb3 ${LIBS} -+CFLAGS+= -pipe -Wall -W -Wchar-subscripts -Wshadow -Wcast-align -Wwrite-strings -Wunused -Wuninitialized -Wpointer-arith -Wredundant-decls -Wmissing-prototypes ${INCS} -DVERSION=\"${VERSION}\" -+LDFLAGS+= ${LIBS} - - # compiler and linker --CC = cc -+CC?= cc diff --git a/x11-wm/awesome2/files/patch-statusbar.c b/x11-wm/awesome2/files/patch-statusbar.c deleted file mode 100644 index 055d6d637bfe..000000000000 --- a/x11-wm/awesome2/files/patch-statusbar.c +++ /dev/null @@ -1,11 +0,0 @@ ---- statusbar.c -+++ statusbar.c -@@ -166,7 +166,7 @@ uicb_togglebar(Display *disp, - const char *arg __attribute__ ((unused))) - { - if(awesomeconf->statusbar.position == BarOff) -- awesomeconf->statusbar.position = (awesomeconf->statusbar.position == BarOff) ? BarTop : awesomeconf->statusbar_default_position; -+ awesomeconf->statusbar.position = (awesomeconf->statusbar_default_position == BarOff) ? BarTop : awesomeconf->statusbar_default_position; - else - awesomeconf->statusbar.position = BarOff; - updatebarpos(disp, awesomeconf->statusbar); diff --git a/x11-wm/awesome2/pkg-descr b/x11-wm/awesome2/pkg-descr deleted file mode 100644 index cb4a1fad6823..000000000000 --- a/x11-wm/awesome2/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -awesome is a tiling window manager initialy based on a dwm code -rewriting. It's extremely fast, small, dynamic and awesome. - -Windows can be managed in several layouts: tiled and floating. Each -layout can be applied on the fly, optimizing the environment for the -application in use and the task performed. - -Managing windows in tiled mode assures that no space will be waste on -your screen. No gaps, no overlap. - - -WWW: http://awesome.naquadah.org/ diff --git a/x11-wm/compiz-plugins-extra/Makefile b/x11-wm/compiz-plugins-extra/Makefile deleted file mode 100644 index 83ab1ab997ef..000000000000 --- a/x11-wm/compiz-plugins-extra/Makefile +++ /dev/null @@ -1,60 +0,0 @@ -# New ports collection makefile for: compiz-fusion-plugins-extra -# Date created: 2007-08-17 -# Whom: Robert Noland <rnoland@2hip.net> -# -# $FreeBSD$ -# - -PORTNAME= compiz-fusion-plugins-extra -PORTVERSION= 0.6.0 -#PORTREVISION= 1 -CATEGORIES= x11-wm -MASTER_SITES= http://releases.compiz-fusion.org/${PORTVERSION}/ - -MAINTAINER= rnoland@2hip.net -COMMENT= Plugins for Compiz Composite Window Manager - -LIB_DEPENDS= cairo.2:${PORTSDIR}/graphics/cairo -BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/compiz.pc:${PORTSDIR}/x11-wm/compiz \ - ${LOCALBASE}/libdata/pkgconfig/bcop.pc:${PORTSDIR}/devel/compiz-bcop \ - ${LOCALBASE}/libdata/pkgconfig/compiz-text.pc:${PORTSDIR}/x11-wm/compiz-fusion-plugins-main -RUN_DEPENDS= ${BUILD_DEPENDS} - -GNU_CONFIGURE= yes -USE_GL= yes -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnomehack intltool -USE_XORG= glproto -USE_GETTEXT= yes -USE_LDCONFIG= yes -USE_AUTOTOOLS= libtool:15 - -GCONF_SCHEMAS= compiz-addhelper.schemas \ - compiz-bench.schemas \ - compiz-crashhandler.schemas \ - compiz-cubecaps.schemas \ - compiz-cubereflex.schemas \ - compiz-extrawm.schemas \ - compiz-fadedesktop.schemas \ - compiz-firepaint.schemas \ - compiz-gears.schemas \ - compiz-group.schemas \ - compiz-mblur.schemas \ - compiz-reflex.schemas \ - compiz-scalefilter.schemas \ - compiz-showdesktop.schemas \ - compiz-splash.schemas \ - compiz-trailfocus.schemas \ - compiz-widget.schemas - -CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL} -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" -CONFIGURE_ARGS= --enable-schemas - -post-patch: - @${REINPLACE_CMD} -e 's|malloc.h|stdlib.h|' \ - ${WRKSRC}/src/group/group-internal.h \ - -.include <bsd.port.mk> diff --git a/x11-wm/compiz-plugins-extra/distinfo b/x11-wm/compiz-plugins-extra/distinfo deleted file mode 100644 index 2f0a154a01bf..000000000000 --- a/x11-wm/compiz-plugins-extra/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (compiz-fusion-plugins-extra-0.6.0.tar.bz2) = eb5a4ed9c54aa9e0fdf47b24d94b2262 -SHA256 (compiz-fusion-plugins-extra-0.6.0.tar.bz2) = 7eb7a636d327a68da55c1db38a268c6b821203d2fc96fb365ff80817fa3904cd -SIZE (compiz-fusion-plugins-extra-0.6.0.tar.bz2) = 2293746 diff --git a/x11-wm/compiz-plugins-extra/pkg-descr b/x11-wm/compiz-plugins-extra/pkg-descr deleted file mode 100644 index 4aeb80684347..000000000000 --- a/x11-wm/compiz-plugins-extra/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -This is the extra set of plugins for Compiz fusion. - -WWW: http://forums.compiz-fusion.org/ diff --git a/x11-wm/compiz-plugins-extra/pkg-plist b/x11-wm/compiz-plugins-extra/pkg-plist deleted file mode 100644 index 359b61e91d37..000000000000 --- a/x11-wm/compiz-plugins-extra/pkg-plist +++ /dev/null @@ -1,87 +0,0 @@ -@comment $FreeBSD$ -lib/compiz/libaddhelper.so -lib/compiz/libaddhelper.la -lib/compiz/libaddhelper.a -lib/compiz/libbench.so -lib/compiz/libbench.la -lib/compiz/libbench.a -lib/compiz/libcrashhandler.so -lib/compiz/libcrashhandler.la -lib/compiz/libcrashhandler.a -lib/compiz/libcubecaps.so -lib/compiz/libcubecaps.la -lib/compiz/libcubecaps.a -lib/compiz/libcubereflex.so -lib/compiz/libcubereflex.la -lib/compiz/libcubereflex.a -lib/compiz/libextrawm.so -lib/compiz/libextrawm.la -lib/compiz/libextrawm.a -lib/compiz/libfadedesktop.so -lib/compiz/libgears.so -lib/compiz/libfadedesktop.la -lib/compiz/libfadedesktop.a -lib/compiz/libfirepaint.so -lib/compiz/libfirepaint.la -lib/compiz/libfirepaint.a -lib/compiz/libgears.la -lib/compiz/libgears.a -lib/compiz/libgroup.so -lib/compiz/libgroup.la -lib/compiz/libgroup.a -lib/compiz/libmblur.so -lib/compiz/libmblur.la -lib/compiz/libmblur.a -lib/compiz/libreflex.so -lib/compiz/libreflex.la -lib/compiz/libreflex.a -lib/compiz/libscalefilter.so -lib/compiz/libscalefilter.la -lib/compiz/libscalefilter.a -lib/compiz/libshowdesktop.so -lib/compiz/libshowdesktop.la -lib/compiz/libshowdesktop.a -lib/compiz/libsplash.so -lib/compiz/libsplash.la -lib/compiz/libsplash.a -lib/compiz/libtrailfocus.so -lib/compiz/libtrailfocus.la -lib/compiz/libtrailfocus.a -lib/compiz/libwidget.so -lib/compiz/libwidget.la -lib/compiz/libwidget.a -share/locale/de/LC_MESSAGES/compiz-fusion-plugins-extra.mo -share/locale/el/LC_MESSAGES/compiz-fusion-plugins-extra.mo -share/locale/fr/LC_MESSAGES/compiz-fusion-plugins-extra.mo -share/locale/it/LC_MESSAGES/compiz-fusion-plugins-extra.mo -share/locale/ja/LC_MESSAGES/compiz-fusion-plugins-extra.mo -share/locale/zh_CN/LC_MESSAGES/compiz-fusion-plugins-extra.mo -share/locale/ca/LC_MESSAGES/compiz-fusion-plugins-extra.mo -share/locale/gl/LC_MESSAGES/compiz-fusion-plugins-extra.mo -share/locale/nb/LC_MESSAGES/compiz-fusion-plugins-extra.mo -share/locale/pl/LC_MESSAGES/compiz-fusion-plugins-extra.mo -share/locale/pt/LC_MESSAGES/compiz-fusion-plugins-extra.mo -share/locale/sv/LC_MESSAGES/compiz-fusion-plugins-extra.mo -share/locale/tr/LC_MESSAGES/compiz-fusion-plugins-extra.mo -share/compiz/addhelper.xml -share/compiz/bench.xml -share/compiz/crashhandler.xml -share/compiz/cubecaps.xml -share/compiz/cubereflex.xml -share/compiz/extrawm.xml -share/compiz/fadedesktop.xml -share/compiz/firepaint.xml -share/compiz/gears.xml -share/compiz/group.xml -share/compiz/mblur.xml -share/compiz/reflex.xml -share/compiz/scalefilter.xml -share/compiz/showdesktop.xml -share/compiz/splash.xml -share/compiz/trailfocus.xml -share/compiz/widget.xml -share/compiz/reflection.png -share/compiz/fusioncap.png -share/compiz/compizcap.png -share/compiz/splash_background.png -share/compiz/splash_logo.png diff --git a/x11-wm/compiz-plugins-main/Makefile b/x11-wm/compiz-plugins-main/Makefile deleted file mode 100644 index afd68ec9b654..000000000000 --- a/x11-wm/compiz-plugins-main/Makefile +++ /dev/null @@ -1,58 +0,0 @@ -# New ports collection makefile for: compiz-fusion-plugins-main -# Date created: 2007-08-15 -# Whom: Robert Noland <rnoland@2hip.net> -# -# $FreeBSD$ -# - -PORTNAME= compiz-fusion-plugins-main -PORTVERSION= 0.6.0 -#PORTREVISION= 1 -CATEGORIES= x11-wm -MASTER_SITES= http://releases.compiz-fusion.org/${PORTVERSION}/ - -MAINTAINER= rnoland@2hip.net -COMMENT= Plugins for Compiz Composite Window Manager - -LIB_DEPENDS= cairo.2:${PORTSDIR}/graphics/cairo \ - pangocairo-1.0:${PORTSDIR}/x11-toolkits/pango -BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/compiz.pc:${PORTSDIR}/x11-wm/compiz \ - ${LOCALBASE}/libdata/pkgconfig/bcop.pc:${PORTSDIR}/devel/compiz-bcop -RUN_DEPENDS= ${BUILD_DEPENDS} - -GNU_CONFIGURE= yes -USE_GL= yes -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnomehack intltool -USE_XORG= glproto -USE_GETTEXT= yes -USE_LDCONFIG= yes -USE_AUTOTOOLS= libtool:15 - -GCONF_SCHEMAS= compiz-animation.schemas \ - compiz-colorfilter.schemas \ - compiz-expo.schemas \ - compiz-ezoom.schemas \ - compiz-imgjpeg.schemas \ - compiz-neg.schemas \ - compiz-opacify.schemas \ - compiz-put.schemas \ - compiz-resizeinfo.schemas \ - compiz-ring.schemas \ - compiz-snap.schemas \ - compiz-text.schemas \ - compiz-thumbnail.schemas \ - compiz-wall.schemas \ - compiz-winrules.schemas \ - compiz-workarounds.schemas \ - compiz-scaleaddon.schemas \ - compiz-vpswitch.schemas \ - compiz-shift.schemas - -CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL} -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" -CONFIGURE_ARGS= --enable-schemas - -.include <bsd.port.mk> diff --git a/x11-wm/compiz-plugins-main/distinfo b/x11-wm/compiz-plugins-main/distinfo deleted file mode 100644 index a352cbdc057c..000000000000 --- a/x11-wm/compiz-plugins-main/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (compiz-fusion-plugins-main-0.6.0.tar.bz2) = a500d34eb2a2a2ffaa933b6434b03656 -SHA256 (compiz-fusion-plugins-main-0.6.0.tar.bz2) = 716bf78c0ebee6f8b1426369242de4a8db384dab2d87eb2855e2bd9f29d2c6de -SIZE (compiz-fusion-plugins-main-0.6.0.tar.bz2) = 784887 diff --git a/x11-wm/compiz-plugins-main/pkg-descr b/x11-wm/compiz-plugins-main/pkg-descr deleted file mode 100644 index 2207fcd2e9b0..000000000000 --- a/x11-wm/compiz-plugins-main/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -This is the main set of plugins for Compiz. - -WWW: http://forums.compiz-fusion.org/ diff --git a/x11-wm/compiz-plugins-main/pkg-plist b/x11-wm/compiz-plugins-main/pkg-plist deleted file mode 100644 index 1570c90295ad..000000000000 --- a/x11-wm/compiz-plugins-main/pkg-plist +++ /dev/null @@ -1,97 +0,0 @@ -@comment $FreeBSD$ -include/compiz/text.h -lib/compiz/libanimation.so -lib/compiz/libanimation.la -lib/compiz/libanimation.a -lib/compiz/libcolorfilter.so -lib/compiz/libcolorfilter.la -lib/compiz/libcolorfilter.a -lib/compiz/libexpo.so -lib/compiz/libexpo.la -lib/compiz/libexpo.a -lib/compiz/libezoom.so -lib/compiz/libezoom.la -lib/compiz/libezoom.a -lib/compiz/libimgjpeg.so -lib/compiz/libimgjpeg.la -lib/compiz/libimgjpeg.a -lib/compiz/libneg.so -lib/compiz/libneg.la -lib/compiz/libneg.a -lib/compiz/libopacify.so -lib/compiz/libopacify.la -lib/compiz/libopacify.a -lib/compiz/libput.so -lib/compiz/libput.la -lib/compiz/libput.a -lib/compiz/libresizeinfo.so -lib/compiz/libresizeinfo.la -lib/compiz/libresizeinfo.a -lib/compiz/libring.so -lib/compiz/libring.la -lib/compiz/libring.a -lib/compiz/libscaleaddon.so -lib/compiz/libscaleaddon.la -lib/compiz/libscaleaddon.a -lib/compiz/libsnap.so -lib/compiz/libsnap.la -lib/compiz/libsnap.a -lib/compiz/libtext.so -lib/compiz/libtext.la -lib/compiz/libtext.a -lib/compiz/libthumbnail.so -lib/compiz/libthumbnail.la -lib/compiz/libthumbnail.a -lib/compiz/libwall.so -lib/compiz/libwall.la -lib/compiz/libwall.a -lib/compiz/libwinrules.so -lib/compiz/libwinrules.la -lib/compiz/libwinrules.a -lib/compiz/libworkarounds.so -lib/compiz/libworkarounds.la -lib/compiz/libworkarounds.a -lib/compiz/libvpswitch.so -lib/compiz/libvpswitch.la -lib/compiz/libvpswitch.a -lib/compiz/libshift.so -lib/compiz/libshift.la -lib/compiz/libshift.a -libdata/pkgconfig/compiz-text.pc -share/locale/de/LC_MESSAGES/compiz-fusion-plugins-main.mo -share/locale/el/LC_MESSAGES/compiz-fusion-plugins-main.mo -share/locale/fr/LC_MESSAGES/compiz-fusion-plugins-main.mo -share/locale/it/LC_MESSAGES/compiz-fusion-plugins-main.mo -share/locale/ja/LC_MESSAGES/compiz-fusion-plugins-main.mo -share/locale/zh_CN/LC_MESSAGES/compiz-fusion-plugins-main.mo -share/locale/ca/LC_MESSAGES/compiz-fusion-plugins-main.mo -share/locale/gl/LC_MESSAGES/compiz-fusion-plugins-main.mo -share/locale/nb/LC_MESSAGES/compiz-fusion-plugins-main.mo -share/locale/pl/LC_MESSAGES/compiz-fusion-plugins-main.mo -share/locale/pt/LC_MESSAGES/compiz-fusion-plugins-main.mo -share/locale/sv/LC_MESSAGES/compiz-fusion-plugins-main.mo -share/locale/tr/LC_MESSAGES/compiz-fusion-plugins-main.mo -share/compiz/animation.xml -share/compiz/colorfilter.xml -share/compiz/expo.xml -share/compiz/ezoom.xml -share/compiz/imgjpeg.xml -share/compiz/neg.xml -share/compiz/opacify.xml -share/compiz/put.xml -share/compiz/resizeinfo.xml -share/compiz/ring.xml -share/compiz/snap.xml -share/compiz/text.xml -share/compiz/thumbnail.xml -share/compiz/wall.xml -share/compiz/winrules.xml -share/compiz/workarounds.xml -share/compiz/scaleaddon.xml -share/compiz/vpswitch.xml -share/compiz/shift.xml -share/compiz/filters/negative -share/compiz/filters/contrast -share/compiz/filters/negative-green -share/compiz/filters/grayscale -@dirrmtry share/compiz/filters diff --git a/x11-wm/compiz-plugins-unsupported/Makefile b/x11-wm/compiz-plugins-unsupported/Makefile deleted file mode 100644 index 164a731b9a36..000000000000 --- a/x11-wm/compiz-plugins-unsupported/Makefile +++ /dev/null @@ -1,42 +0,0 @@ -# New ports collection makefile for: compiz-fusion-plugins-unsupported -# Date created: 2007-08-17 -# Whom: Robert Noland <rnoland@2hip.net> -# -# $FreeBSD$ -# - -PORTNAME= compiz-fusion-plugins-unsupported -PORTVERSION= 0.6.0 -#PORTREVISION= 1 -CATEGORIES= x11-wm -MASTER_SITES= http://releases.compiz-fusion.org/${PORTVERSION}/ - -MAINTAINER= rnoland@2hip.net -COMMENT= Plugins for Compiz Composite Window Manager - -LIB_DEPENDS= cairo.2:${PORTSDIR}/graphics/cairo -BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/compiz.pc:${PORTSDIR}/x11-wm/compiz \ - ${LOCALBASE}/libdata/pkgconfig/bcop.pc:${PORTSDIR}/devel/compiz-bcop -RUN_DEPENDS= ${BUILD_DEPENDS} - -GNU_CONFIGURE= yes -USE_GL= yes -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnomehack intltool -USE_XORG= glproto -USE_GETTEXT= yes -USE_LDCONFIG= yes -USE_AUTOTOOLS= libtool:15 - -GCONF_SCHEMAS= compiz-fakeargb.schemas \ - compiz-mswitch.schemas \ - compiz-snow.schemas \ - compiz-tile.schemas - -CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL} -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" -CONFIGURE_ARGS= --enable-schemas - -.include <bsd.port.mk> diff --git a/x11-wm/compiz-plugins-unsupported/distinfo b/x11-wm/compiz-plugins-unsupported/distinfo deleted file mode 100644 index 8b361ad2441d..000000000000 --- a/x11-wm/compiz-plugins-unsupported/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (compiz-fusion-plugins-unsupported-0.6.0.tar.bz2) = a5349418d781e3abff026fb2cf3e36d8 -SHA256 (compiz-fusion-plugins-unsupported-0.6.0.tar.bz2) = 14c0a4abed43af90ab29494bced8d8fc9cf2ac883f832a8761f9107b4e7362f8 -SIZE (compiz-fusion-plugins-unsupported-0.6.0.tar.bz2) = 411166 diff --git a/x11-wm/compiz-plugins-unsupported/pkg-descr b/x11-wm/compiz-plugins-unsupported/pkg-descr deleted file mode 100644 index b5b524b92e9e..000000000000 --- a/x11-wm/compiz-plugins-unsupported/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -This is the unsupported set of plugins for Compiz. - -WWW: http://forums.compiz-fusion.org/ diff --git a/x11-wm/compiz-plugins-unsupported/pkg-plist b/x11-wm/compiz-plugins-unsupported/pkg-plist deleted file mode 100644 index f1867a3a7cc9..000000000000 --- a/x11-wm/compiz-plugins-unsupported/pkg-plist +++ /dev/null @@ -1,28 +0,0 @@ -@comment $FreeBSD$ -lib/compiz/libfakeargb.so -lib/compiz/libfakeargb.la -lib/compiz/libfakeargb.a -lib/compiz/libmswitch.so -lib/compiz/libmswitch.la -lib/compiz/libmswitch.a -lib/compiz/libsnow.so -lib/compiz/libsnow.la -lib/compiz/libsnow.a -lib/compiz/libtile.so -lib/compiz/libtile.la -lib/compiz/libtile.a -share/locale/de/LC_MESSAGES/compiz-fusion-plugins-unsupported.mo -share/locale/el/LC_MESSAGES/compiz-fusion-plugins-unsupported.mo -share/locale/fr/LC_MESSAGES/compiz-fusion-plugins-unsupported.mo -share/locale/it/LC_MESSAGES/compiz-fusion-plugins-unsupported.mo -share/locale/ja/LC_MESSAGES/compiz-fusion-plugins-unsupported.mo -share/locale/zh_CN/LC_MESSAGES/compiz-fusion-plugins-unsupported.mo -share/locale/pt_PT/LC_MESSAGES/compiz-fusion-plugins-unsupported.mo -share/locale/pl_PL/LC_MESSAGES/compiz-fusion-plugins-unsupported.mo -share/compiz/fakeargb.xml -share/compiz/mswitch.xml -share/compiz/snow.xml -share/compiz/tile.xml -share/compiz/snowflake.png -@dirrmtry share/locale/pl_PL/LC_MESSAGES -@dirrmtry share/locale/pl_PL diff --git a/x11-wm/e16/Makefile b/x11-wm/e16/Makefile deleted file mode 100644 index 8cc1650e0e6e..000000000000 --- a/x11-wm/e16/Makefile +++ /dev/null @@ -1,68 +0,0 @@ -# New ports collection makefile for: enlightenment -# Date created: 10 June 1997 -# Whom: Yukihiro Nakai <Nakai@Mlab.t.u-tokyo.ac.jp> -# -# $FreeBSD$ -# - -PORTNAME= enlightenment -PORTVERSION= 0.16.8.10 -PORTREVISION= 2 -CATEGORIES= x11-wm -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} -DISTNAME= e16-${PORTVERSION} - -MAINTAINER= vanilla@FreeBSD.org -COMMENT= A very artistic X window manager - -LIB_DEPENDS= Imlib2.4:${PORTSDIR}/graphics/imlib2 \ - Xft.2:${PORTSDIR}/x11-fonts/libXft - -DATADIR= ${PREFIX}/share/e16 - -USE_X_PREFIX= yes -USE_XORG= xbitmaps -USE_ICONV= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --enable-fsstd --disable-esdtest --disable-dependency-tracking \ - --disable-rpath -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" - -.if !defined(WITHOUT_ESOUND) -USE_GNOME= esound -.else -CONFIGURE_ARGS+=--disable-sound -.endif - -.if !defined(WITHOUT_NLS) -USE_GETTEXT= yes -PLIST_FILES= share/locale/bg/LC_MESSAGES/e16.mo \ - share/locale/bs/LC_MESSAGES/e16.mo \ - share/locale/da/LC_MESSAGES/e16.mo \ - share/locale/de/LC_MESSAGES/e16.mo \ - share/locale/en_US/LC_MESSAGES/e16.mo \ - share/locale/es/LC_MESSAGES/e16.mo \ - share/locale/fr/LC_MESSAGES/e16.mo \ - share/locale/hu/LC_MESSAGES/e16.mo \ - share/locale/ja/LC_MESSAGES/e16.mo \ - share/locale/ko/LC_MESSAGES/e16.mo \ - share/locale/nl/LC_MESSAGES/e16.mo \ - share/locale/no/LC_MESSAGES/e16.mo \ - share/locale/pl/LC_MESSAGES/e16.mo \ - share/locale/pt/LC_MESSAGES/e16.mo \ - share/locale/pt_BR/LC_MESSAGES/e16.mo \ - share/locale/ru/LC_MESSAGES/e16.mo \ - share/locale/sv/LC_MESSAGES/e16.mo \ - share/locale/tr/LC_MESSAGES/e16.mo -.else -CONFIGURE_ARGS+=--disable-nls -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|%%X11BASE%%|${X11BASE}|g' \ - -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/scripts/e_gen_menu - -.include <bsd.port.mk> diff --git a/x11-wm/e16/distinfo b/x11-wm/e16/distinfo deleted file mode 100644 index 6e9b3740a277..000000000000 --- a/x11-wm/e16/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (e16-0.16.8.10.tar.gz) = 1966ac5e5447c7994714695763a1ac9c -SHA256 (e16-0.16.8.10.tar.gz) = 8a7bfd1e505fd70554a7d316c7db8b560a70c955199138125cbd0da032acd684 -SIZE (e16-0.16.8.10.tar.gz) = 1941157 diff --git a/x11-wm/e16/files/patch-e_gen_menu b/x11-wm/e16/files/patch-e_gen_menu deleted file mode 100644 index b1eb1942b11a..000000000000 --- a/x11-wm/e16/files/patch-e_gen_menu +++ /dev/null @@ -1,11 +0,0 @@ ---- scripts/e_gen_menu.orig Sat Jan 13 20:34:49 2007 -+++ scripts/e_gen_menu Sun Mar 11 11:26:16 2007 -@@ -25,7 +25,7 @@ - ############################################################################## - - # Likely prefixes --$Prefixes = "/usr/local:/usr:/opt:/opt/kde:$ENV{'KDEDIR'}"; -+$Prefixes = "/usr/local:%%X11BASE%%:/usr:/opt:/opt/kde:$ENV{'KDEDIR'}"; - $Prefixes = "$Prefixes:/opt/kde3:/opt/gnome"; # SUSE - $Prefixes = RemoveDuplcates($Prefixes); - diff --git a/x11-wm/e16/pkg-descr b/x11-wm/e16/pkg-descr deleted file mode 100644 index ff8e39aa4118..000000000000 --- a/x11-wm/e16/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -A very artistic X window manager. Among other attributes, -Enlightenment makes for quite impressive screen shots. - -WWW: http://www.enlightenment.org/ diff --git a/x11-wm/e16/pkg-plist b/x11-wm/e16/pkg-plist deleted file mode 100644 index 1cfcbe259e90..000000000000 --- a/x11-wm/e16/pkg-plist +++ /dev/null @@ -1,452 +0,0 @@ -bin/e16 -bin/edox -bin/eesh -bin/epp -bin/starte16 -%%DATADIR%%/E-docs/exit1.png -%%DATADIR%%/E-docs/exit2.png -%%DATADIR%%/E-docs/next1.png -%%DATADIR%%/E-docs/next2.png -%%DATADIR%%/E-docs/prev1.png -%%DATADIR%%/E-docs/prev2.png -%%DATADIR%%/E-docs/title.png -%%DATADIR%%/config/actionclasses.cfg -%%DATADIR%%/config/bindings.cfg -%%DATADIR%%/config/definitions -%%DATADIR%%/config/e16keyedit.db -%%DATADIR%%/config/fonts.cfg.xft -%%DATADIR%%/config/fonts.cfg.pango -%%DATADIR%%/config/matches.cfg -%%DATADIR%%/config/menus.cfg -%%DATADIR%%/config/menus/desktop.menu -%%DATADIR%%/config/menus/enlightenment.menu -%%DATADIR%%/config/menus/maintenance.menu -%%DATADIR%%/config/menus/settings.menu -%%DATADIR%%/config/menus/winops.menu -%%DATADIR%%/config/menus/winops_groups.menu -%%DATADIR%%/config/menus/winops_layer.menu -%%DATADIR%%/config/menus/winops_misc.menu -%%DATADIR%%/config/menus/winops_opacity.menu -%%DATADIR%%/config/menus/winops_size.menu -%%DATADIR%%/config/pix/about.png -%%DATADIR%%/config/pix/apple.png -%%DATADIR%%/config/pix/areas.png -%%DATADIR%%/config/pix/bg.png -%%DATADIR%%/config/pix/calc.png -%%DATADIR%%/config/pix/clock.png -%%DATADIR%%/config/pix/desktops.png -%%DATADIR%%/config/pix/easter.png -%%DATADIR%%/config/pix/elogo48.png -%%DATADIR%%/config/pix/focus.png -%%DATADIR%%/config/pix/fx.png -%%DATADIR%%/config/pix/key_blank.png -%%DATADIR%%/config/pix/key_ctrl.png -%%DATADIR%%/config/pix/key_lock.png -%%DATADIR%%/config/pix/key_mod1.png -%%DATADIR%%/config/pix/key_mod2.png -%%DATADIR%%/config/pix/key_mod3.png -%%DATADIR%%/config/pix/key_mod4.png -%%DATADIR%%/config/pix/key_mod5.png -%%DATADIR%%/config/pix/key_shift.png -%%DATADIR%%/config/pix/mon.png -%%DATADIR%%/config/pix/mouse_0.png -%%DATADIR%%/config/pix/mouse_1.png -%%DATADIR%%/config/pix/mouse_2.png -%%DATADIR%%/config/pix/mouse_3.png -%%DATADIR%%/config/pix/mouse_4.png -%%DATADIR%%/config/pix/mouse_5.png -%%DATADIR%%/config/pix/mouse_any.png -%%DATADIR%%/config/pix/moveres.png -%%DATADIR%%/config/pix/note.png -%%DATADIR%%/config/pix/pager.png -%%DATADIR%%/config/pix/place.png -%%DATADIR%%/config/pix/pumpkin.png -%%DATADIR%%/config/pix/raise.png -%%DATADIR%%/config/pix/snapshots.png -%%DATADIR%%/config/pix/sound.png -%%DATADIR%%/config/pix/spider.png -%%DATADIR%%/config/pix/tips.png -%%DATADIR%%/config/pix/tv2.png -%%DATADIR%%/config/pix/wait1.png -%%DATADIR%%/config/pix/wait10.png -%%DATADIR%%/config/pix/wait11.png -%%DATADIR%%/config/pix/wait12.png -%%DATADIR%%/config/pix/wait2.png -%%DATADIR%%/config/pix/wait3.png -%%DATADIR%%/config/pix/wait4.png -%%DATADIR%%/config/pix/wait5.png -%%DATADIR%%/config/pix/wait6.png -%%DATADIR%%/config/pix/wait7.png -%%DATADIR%%/config/pix/wait8.png -%%DATADIR%%/config/pix/wait9.png -%%DATADIR%%/config/pix/world.png -%%DATADIR%%/misc/e16.desktop -%%DATADIR%%/misc/e16.png -%%DATADIR%%/misc/e16-gnome.desktop -%%DATADIR%%/misc/e16-kde.desktop -%%DATADIR%%/misc/Xclients.e16.sh -%%DATADIR%%/misc/Xclients.e16-gnome.sh -%%DATADIR%%/misc/Xclients.e16-kde.sh -%%DATADIR%%/scripts/e_cache_clean -%%DATADIR%%/scripts/e_cache_query -%%DATADIR%%/scripts/e_gen_menu -%%DATADIR%%/scripts/session.sh -%%DATADIR%%/themes/winter/ABOUT/MAIN -%%DATADIR%%/themes/winter/ABOUT/bg.png -%%DATADIR%%/themes/winter/ABOUT/vixar.ttf -%%DATADIR%%/themes/winter/README -%%DATADIR%%/themes/winter/backgrounds/backgrounds.cfg -%%DATADIR%%/themes/winter/backgrounds/images/startup-bg.png -%%DATADIR%%/themes/winter/backgrounds/images/winter_logo.png -%%DATADIR%%/themes/winter/backgrounds/images/winter_ui.png -%%DATADIR%%/themes/winter/backgrounds/images/winter_ui_blue.png -%%DATADIR%%/themes/winter/backgrounds/images/winter_ui_green.png -%%DATADIR%%/themes/winter/borders.cfg -%%DATADIR%%/themes/winter/borders/AUTOSHADE/border.cfg -%%DATADIR%%/themes/winter/borders/BORDERLESS/border.cfg -%%DATADIR%%/themes/winter/borders/BORDER_ONLY/border.cfg -%%DATADIR%%/themes/winter/borders/BORDER_ONLY/images/bl.png -%%DATADIR%%/themes/winter/borders/BORDER_ONLY/images/br.png -%%DATADIR%%/themes/winter/borders/BORDER_ONLY/images/horiz.png -%%DATADIR%%/themes/winter/borders/BORDER_ONLY/images/tl.png -%%DATADIR%%/themes/winter/borders/BORDER_ONLY/images/tr.png -%%DATADIR%%/themes/winter/borders/DEFAULT/border.cfg -%%DATADIR%%/themes/winter/borders/DIALOG/border.cfg -%%DATADIR%%/themes/winter/borders/FIXED_SIZE/border.cfg -%%DATADIR%%/themes/winter/borders/ICONBOX/border.cfg -%%DATADIR%%/themes/winter/borders/MENU/border.cfg -%%DATADIR%%/themes/winter/borders/MENU_BORDER_ONLY/border.cfg -%%DATADIR%%/themes/winter/borders/PAGER/border.cfg -%%DATADIR%%/themes/winter/borders/PAGER/images/pb1.png -%%DATADIR%%/themes/winter/borders/PAGER/images/pb2.png -%%DATADIR%%/themes/winter/borders/PAGER/images/pb3.png -%%DATADIR%%/themes/winter/borders/PAGER/images/pb4.png -%%DATADIR%%/themes/winter/borders/PAGER/images/pb5.png -%%DATADIR%%/themes/winter/borders/PAGER/images/pb6.png -%%DATADIR%%/themes/winter/borders/PAGER/images/pb8.png -%%DATADIR%%/themes/winter/borders/PAGER/images/pb9l.png -%%DATADIR%%/themes/winter/borders/PAGER/images/pb9r.png -%%DATADIR%%/themes/winter/borders/PAGER_AUTOSHADE/border.cfg -%%DATADIR%%/themes/winter/borders/PAGER_SHADE_RIGHT/border.cfg -%%DATADIR%%/themes/winter/borders/RIGHT_PAGER/border.cfg -%%DATADIR%%/themes/winter/borders/RIGHT_PAGER/images/pb1.png -%%DATADIR%%/themes/winter/borders/RIGHT_PAGER/images/pb2.png -%%DATADIR%%/themes/winter/borders/RIGHT_PAGER/images/pb3.png -%%DATADIR%%/themes/winter/borders/RIGHT_PAGER/images/pb4.png -%%DATADIR%%/themes/winter/borders/RIGHT_PAGER/images/pb5.png -%%DATADIR%%/themes/winter/borders/RIGHT_PAGER/images/pb6.png -%%DATADIR%%/themes/winter/borders/RIGHT_PAGER/images/pb8.png -%%DATADIR%%/themes/winter/borders/RIGHT_PAGER/images/pb9l.png -%%DATADIR%%/themes/winter/borders/RIGHT_PAGER/images/pb9r.png -%%DATADIR%%/themes/winter/borders/RIGHT_PAGER_SHADE_LEFT/border.cfg -%%DATADIR%%/themes/winter/borders/SHAPED/border.cfg -%%DATADIR%%/themes/winter/borders/TRANSIENT/border.cfg -%%DATADIR%%/themes/winter/borders/borders.cfg -%%DATADIR%%/themes/winter/borders/common/Winter.Changelog -%%DATADIR%%/themes/winter/borders/common/border.cfg -%%DATADIR%%/themes/winter/borders/common/images/border-bl-blue.png -%%DATADIR%%/themes/winter/borders/common/images/border-bl.png -%%DATADIR%%/themes/winter/borders/common/images/border-bottom-blue_alternative.png -%%DATADIR%%/themes/winter/borders/common/images/border-bottom.png -%%DATADIR%%/themes/winter/borders/common/images/border-bottom_alternative.png -%%DATADIR%%/themes/winter/borders/common/images/border-br-blue.png -%%DATADIR%%/themes/winter/borders/common/images/border-br.png -%%DATADIR%%/themes/winter/borders/common/images/border-button.png -%%DATADIR%%/themes/winter/borders/common/images/border-close1.png -%%DATADIR%%/themes/winter/borders/common/images/border-close1_hilited.png -%%DATADIR%%/themes/winter/borders/common/images/border-close2.png -%%DATADIR%%/themes/winter/borders/common/images/border-dot1.png -%%DATADIR%%/themes/winter/borders/common/images/border-dot2.png -%%DATADIR%%/themes/winter/borders/common/images/border-iconify1.png -%%DATADIR%%/themes/winter/borders/common/images/border-iconify1_hilited.png -%%DATADIR%%/themes/winter/borders/common/images/border-iconify2.png -%%DATADIR%%/themes/winter/borders/common/images/border-lr.png -%%DATADIR%%/themes/winter/borders/common/images/border-max1.png -%%DATADIR%%/themes/winter/borders/common/images/border-max1_hilited.png -%%DATADIR%%/themes/winter/borders/common/images/border-max2.png -%%DATADIR%%/themes/winter/borders/common/images/border-minus.png -%%DATADIR%%/themes/winter/borders/common/images/border-minus2.png -%%DATADIR%%/themes/winter/borders/common/images/border-plus1.png -%%DATADIR%%/themes/winter/borders/common/images/border-plus2.png -%%DATADIR%%/themes/winter/borders/common/images/border-top-blue.png -%%DATADIR%%/themes/winter/borders/common/images/border-top-blue_alternative.png -%%DATADIR%%/themes/winter/borders/common/images/border-top-blue_text.png -%%DATADIR%%/themes/winter/borders/common/images/border-top.png -%%DATADIR%%/themes/winter/borders/common/images/border-top_alternative.png -%%DATADIR%%/themes/winter/borders/common/images/border-top_iconbox.png -%%DATADIR%%/themes/winter/borders/common/images/border-top_iconbox_blue.png -%%DATADIR%%/themes/winter/borders/common/images/border-top_text.png -%%DATADIR%%/themes/winter/borders/common/images/border-topmiddle.png -%%DATADIR%%/themes/winter/borders/common/images/ic_border-l.png -%%DATADIR%%/themes/winter/borders/common/images/ic_border-r.png -%%DATADIR%%/themes/winter/borders/common/images/menu-border-bottom.png -%%DATADIR%%/themes/winter/borders/common/images/menu-border-top.png -%%DATADIR%%/themes/winter/buttons.cfg -%%DATADIR%%/themes/winter/buttons/buttons.cfg -%%DATADIR%%/themes/winter/colormodifiers.cfg -%%DATADIR%%/themes/winter/common/images/blank.png -%%DATADIR%%/themes/winter/common/images/blue_bar.png -%%DATADIR%%/themes/winter/common/images/light_brushed.png -%%DATADIR%%/themes/winter/coords/coords.cfg -%%DATADIR%%/themes/winter/cursors.cfg -%%DATADIR%%/themes/winter/cursors/cursors.cfg -%%DATADIR%%/themes/winter/desktops.cfg -%%DATADIR%%/themes/winter/dialogs/dialogs.cfg -%%DATADIR%%/themes/winter/dialogs/images/arrow-down.png -%%DATADIR%%/themes/winter/dialogs/images/arrow-left.png -%%DATADIR%%/themes/winter/dialogs/images/arrow-right.png -%%DATADIR%%/themes/winter/dialogs/images/arrow-up.png -%%DATADIR%%/themes/winter/dialogs/images/bg.png -%%DATADIR%%/themes/winter/dialogs/images/button-clicked.png -%%DATADIR%%/themes/winter/dialogs/images/button-over.png -%%DATADIR%%/themes/winter/dialogs/images/button-up.png -%%DATADIR%%/themes/winter/dialogs/images/checkbox-checked.png -%%DATADIR%%/themes/winter/dialogs/images/checkbox-checked_clicked.png -%%DATADIR%%/themes/winter/dialogs/images/checkbox-checked_hilited.png -%%DATADIR%%/themes/winter/dialogs/images/checkbox.png -%%DATADIR%%/themes/winter/dialogs/images/checkbox_clicked.png -%%DATADIR%%/themes/winter/dialogs/images/checkbox_hilited.png -%%DATADIR%%/themes/winter/dialogs/images/indent.png -%%DATADIR%%/themes/winter/dialogs/images/ondent.png -%%DATADIR%%/themes/winter/dialogs/images/radio-on.png -%%DATADIR%%/themes/winter/dialogs/images/radio-on_clicked.png -%%DATADIR%%/themes/winter/dialogs/images/radio-on_hilited.png -%%DATADIR%%/themes/winter/dialogs/images/radio.png -%%DATADIR%%/themes/winter/dialogs/images/radio_clicked.png -%%DATADIR%%/themes/winter/dialogs/images/radio_hilited.png -%%DATADIR%%/themes/winter/dialogs/images/scroll-bar-vert.png -%%DATADIR%%/themes/winter/dialogs/images/scroll-down.png -%%DATADIR%%/themes/winter/dialogs/images/scroll-left.png -%%DATADIR%%/themes/winter/dialogs/images/scroll-right.png -%%DATADIR%%/themes/winter/dialogs/images/scroll-trough-horiz.png -%%DATADIR%%/themes/winter/dialogs/images/scroll-trough-vert.png -%%DATADIR%%/themes/winter/dialogs/images/scroll-up.png -%%DATADIR%%/themes/winter/dialogs/images/scrollbar-horiz-deco.png -%%DATADIR%%/themes/winter/dialogs/images/scrollbar-horiz.png -%%DATADIR%%/themes/winter/dialogs/images/scrollbar-vert-deco.png -%%DATADIR%%/themes/winter/dialogs/images/separator.png -%%DATADIR%%/themes/winter/dialogs/images/slider-handle-h.png -%%DATADIR%%/themes/winter/dialogs/images/slider-handle-h_clicked.png -%%DATADIR%%/themes/winter/dialogs/images/slider-handle-h_hilited.png -%%DATADIR%%/themes/winter/dialogs/images/slider-handle-h_on.png -%%DATADIR%%/themes/winter/dialogs/images/slider-handle-v.png -%%DATADIR%%/themes/winter/dialogs/images/slider-handle-v_clicked.png -%%DATADIR%%/themes/winter/dialogs/images/slider-handle-v_hilited.png -%%DATADIR%%/themes/winter/dialogs/images/slider-handle-v_on.png -%%DATADIR%%/themes/winter/dialogs/images/slider-trough-h.png -%%DATADIR%%/themes/winter/dialogs/images/slider-trough-v.png -%%DATADIR%%/themes/winter/dialogs/images/slider-trough.png -%%DATADIR%%/themes/winter/dialogs/images/trough.png -%%DATADIR%%/themes/winter/dialogs/images/window-base.png -%%DATADIR%%/themes/winter/dock/dock.cfg -%%DATADIR%%/themes/winter/dragbar/dragbar.cfg -%%DATADIR%%/themes/winter/dragbar/images/a1.png -%%DATADIR%%/themes/winter/dragbar/images/a1b.png -%%DATADIR%%/themes/winter/dragbar/images/a2.png -%%DATADIR%%/themes/winter/dragbar/images/a2b.png -%%DATADIR%%/themes/winter/dragbar/images/dragbar_horiz.png -%%DATADIR%%/themes/winter/dragbar/images/dragbar_vert.png -%%DATADIR%%/themes/winter/epplets/epplets.cfg -%%DATADIR%%/themes/winter/epplets/images/ar_d1.png -%%DATADIR%%/themes/winter/epplets/images/ar_d2.png -%%DATADIR%%/themes/winter/epplets/images/ar_d3.png -%%DATADIR%%/themes/winter/epplets/images/ar_l1.png -%%DATADIR%%/themes/winter/epplets/images/ar_l2.png -%%DATADIR%%/themes/winter/epplets/images/ar_l3.png -%%DATADIR%%/themes/winter/epplets/images/ar_r1.png -%%DATADIR%%/themes/winter/epplets/images/ar_r2.png -%%DATADIR%%/themes/winter/epplets/images/ar_r3.png -%%DATADIR%%/themes/winter/epplets/images/ar_u1.png -%%DATADIR%%/themes/winter/epplets/images/ar_u2.png -%%DATADIR%%/themes/winter/epplets/images/ar_u3.png -%%DATADIR%%/themes/winter/epplets/images/b1.png -%%DATADIR%%/themes/winter/epplets/images/b2.png -%%DATADIR%%/themes/winter/epplets/images/b3.png -%%DATADIR%%/themes/winter/epplets/images/bb1.png -%%DATADIR%%/themes/winter/epplets/images/bb2.png -%%DATADIR%%/themes/winter/epplets/images/bg.png -%%DATADIR%%/themes/winter/epplets/images/bg_v.png -%%DATADIR%%/themes/winter/epplets/images/blank1.png -%%DATADIR%%/themes/winter/epplets/images/blank2.png -%%DATADIR%%/themes/winter/epplets/images/blank3.png -%%DATADIR%%/themes/winter/epplets/images/close1.png -%%DATADIR%%/themes/winter/epplets/images/close2.png -%%DATADIR%%/themes/winter/epplets/images/close3.png -%%DATADIR%%/themes/winter/epplets/images/config1.png -%%DATADIR%%/themes/winter/epplets/images/config2.png -%%DATADIR%%/themes/winter/epplets/images/config3.png -%%DATADIR%%/themes/winter/epplets/images/da.png -%%DATADIR%%/themes/winter/epplets/images/eject1.png -%%DATADIR%%/themes/winter/epplets/images/eject2.png -%%DATADIR%%/themes/winter/epplets/images/eject3.png -%%DATADIR%%/themes/winter/epplets/images/ff1.png -%%DATADIR%%/themes/winter/epplets/images/ff2.png -%%DATADIR%%/themes/winter/epplets/images/ff3.png -%%DATADIR%%/themes/winter/epplets/images/help1.png -%%DATADIR%%/themes/winter/epplets/images/help2.png -%%DATADIR%%/themes/winter/epplets/images/help3.png -%%DATADIR%%/themes/winter/epplets/images/next1.png -%%DATADIR%%/themes/winter/epplets/images/next2.png -%%DATADIR%%/themes/winter/epplets/images/next3.png -%%DATADIR%%/themes/winter/epplets/images/pause1.png -%%DATADIR%%/themes/winter/epplets/images/pause2.png -%%DATADIR%%/themes/winter/epplets/images/pause3.png -%%DATADIR%%/themes/winter/epplets/images/pb_h.png -%%DATADIR%%/themes/winter/epplets/images/pb_v.png -%%DATADIR%%/themes/winter/epplets/images/play1.png -%%DATADIR%%/themes/winter/epplets/images/play2.png -%%DATADIR%%/themes/winter/epplets/images/play3.png -%%DATADIR%%/themes/winter/epplets/images/prev1.png -%%DATADIR%%/themes/winter/epplets/images/prev2.png -%%DATADIR%%/themes/winter/epplets/images/prev3.png -%%DATADIR%%/themes/winter/epplets/images/repeat1.png -%%DATADIR%%/themes/winter/epplets/images/repeat2.png -%%DATADIR%%/themes/winter/epplets/images/repeat3.png -%%DATADIR%%/themes/winter/epplets/images/rw1.png -%%DATADIR%%/themes/winter/epplets/images/rw2.png -%%DATADIR%%/themes/winter/epplets/images/rw3.png -%%DATADIR%%/themes/winter/epplets/images/s_h.png -%%DATADIR%%/themes/winter/epplets/images/s_k1.png -%%DATADIR%%/themes/winter/epplets/images/s_k2.png -%%DATADIR%%/themes/winter/epplets/images/s_k3.png -%%DATADIR%%/themes/winter/epplets/images/s_v.png -%%DATADIR%%/themes/winter/epplets/images/skip1.png -%%DATADIR%%/themes/winter/epplets/images/skip2.png -%%DATADIR%%/themes/winter/epplets/images/skip3.png -%%DATADIR%%/themes/winter/epplets/images/stop1.png -%%DATADIR%%/themes/winter/epplets/images/stop2.png -%%DATADIR%%/themes/winter/epplets/images/stop3.png -%%DATADIR%%/themes/winter/eterm/eterm.cfg -%%DATADIR%%/themes/winter/eterm/images/a_d_1.png -%%DATADIR%%/themes/winter/eterm/images/a_d_2.png -%%DATADIR%%/themes/winter/eterm/images/a_l_1.png -%%DATADIR%%/themes/winter/eterm/images/a_l_2.png -%%DATADIR%%/themes/winter/eterm/images/a_r_1.png -%%DATADIR%%/themes/winter/eterm/images/a_r_2.png -%%DATADIR%%/themes/winter/eterm/images/a_u_1.png -%%DATADIR%%/themes/winter/eterm/images/a_u_2.png -%%DATADIR%%/themes/winter/eterm/images/bg.jpg -%%DATADIR%%/themes/winter/eterm/images/bt.png -%%DATADIR%%/themes/winter/eterm/images/mb2.png -%%DATADIR%%/themes/winter/eterm/images/mb3.png -%%DATADIR%%/themes/winter/eterm/images/sb1.png -%%DATADIR%%/themes/winter/eterm/images/sb2.png -%%DATADIR%%/themes/winter/eterm/images/t.png -%%DATADIR%%/themes/winter/focuslist/focuslist.cfg -%%DATADIR%%/themes/winter/focuslist/images/hbar.png -%%DATADIR%%/themes/winter/focuslist/images/hbar2.png -%%DATADIR%%/themes/winter/fonts.cfg -%%DATADIR%%/themes/winter/fonts.cfg.ja -%%DATADIR%%/themes/winter/fonts.cfg.ko -%%DATADIR%%/themes/winter/fonts.cfg.pl -%%DATADIR%%/themes/winter/iconbox/iconbox.cfg -%%DATADIR%%/themes/winter/iconbox/images/base_.png -%%DATADIR%%/themes/winter/iconbox/images/bg.png -%%DATADIR%%/themes/winter/iconbox/images/blank.png -%%DATADIR%%/themes/winter/iconbox/images/button-h.png -%%DATADIR%%/themes/winter/iconbox/images/cover.png -%%DATADIR%%/themes/winter/iconbox/images/scroll-base_h.png -%%DATADIR%%/themes/winter/iconbox/images/scroll-base_v.png -%%DATADIR%%/themes/winter/iconbox/images/scroll-knob.png -%%DATADIR%%/themes/winter/iconbox/images/scroll-knob_active.png -%%DATADIR%%/themes/winter/iconbox/images/scroll-knob_clicked.png -%%DATADIR%%/themes/winter/iconbox/images/unused.png -%%DATADIR%%/themes/winter/imageclasses.cfg -%%DATADIR%%/themes/winter/init.cfg -%%DATADIR%%/themes/winter/init/images/btn3.png -%%DATADIR%%/themes/winter/init/images/progress.png -%%DATADIR%%/themes/winter/init/images/progress_bar.png -%%DATADIR%%/themes/winter/init/init.cfg -%%DATADIR%%/themes/winter/menustyles.cfg -%%DATADIR%%/themes/winter/menustyles/images/menu-arrow-sel.png -%%DATADIR%%/themes/winter/menustyles/images/menu-arrow.png -%%DATADIR%%/themes/winter/menustyles/images/menu-sel.png -%%DATADIR%%/themes/winter/menustyles/menustyles.cfg -%%DATADIR%%/themes/winter/pager/images/p_bg.png -%%DATADIR%%/themes/winter/pager/images/p_sel.png -%%DATADIR%%/themes/winter/pager/images/p_win.png -%%DATADIR%%/themes/winter/pager/pager.cfg -%%DATADIR%%/themes/winter/slideouts.cfg -%%DATADIR%%/themes/winter/slideouts/slideouts.cfg -%%DATADIR%%/themes/winter/sound.cfg -%%DATADIR%%/themes/winter/sound/sound.cfg -%%DATADIR%%/themes/winter/tooltips.cfg -%%DATADIR%%/themes/winter/tooltips/images/clear.png -%%DATADIR%%/themes/winter/tooltips/images/tooltipbg.png -%%DATADIR%%/themes/winter/tooltips/tooltips.cfg -%%DATADIR%%/themes/winter/ttfonts/COPYRIGHT.Vera -%%DATADIR%%/themes/winter/ttfonts/LICENSE.Vera -%%DATADIR%%/themes/winter/ttfonts/Vera.ttf -%%DATADIR%%/themes/winter/ttfonts/VeraBd.ttf -share/xsessions/e16.desktop -share/xsessions/e16-gnome.desktop -share/xsessions/e16-kde.desktop -@dirrm %%DATADIR%%/E-docs -@dirrm %%DATADIR%%/config/menus -@dirrm %%DATADIR%%/config/pix -@dirrm %%DATADIR%%/config -@dirrm %%DATADIR%%/misc -@dirrm %%DATADIR%%/scripts -@dirrm %%DATADIR%%/themes/winter/ABOUT -@dirrm %%DATADIR%%/themes/winter/backgrounds/images -@dirrm %%DATADIR%%/themes/winter/backgrounds -@dirrm %%DATADIR%%/themes/winter/borders/AUTOSHADE -@dirrm %%DATADIR%%/themes/winter/borders/BORDERLESS -@dirrm %%DATADIR%%/themes/winter/borders/BORDER_ONLY/images -@dirrm %%DATADIR%%/themes/winter/borders/BORDER_ONLY -@dirrm %%DATADIR%%/themes/winter/borders/DEFAULT -@dirrm %%DATADIR%%/themes/winter/borders/DIALOG -@dirrm %%DATADIR%%/themes/winter/borders/FIXED_SIZE -@dirrm %%DATADIR%%/themes/winter/borders/ICONBOX -@dirrm %%DATADIR%%/themes/winter/borders/MENU -@dirrm %%DATADIR%%/themes/winter/borders/MENU_BORDER_ONLY -@dirrm %%DATADIR%%/themes/winter/borders/PAGER/images -@dirrm %%DATADIR%%/themes/winter/borders/PAGER -@dirrm %%DATADIR%%/themes/winter/borders/PAGER_AUTOSHADE -@dirrm %%DATADIR%%/themes/winter/borders/PAGER_SHADE_RIGHT -@dirrm %%DATADIR%%/themes/winter/borders/RIGHT_PAGER/images -@dirrm %%DATADIR%%/themes/winter/borders/RIGHT_PAGER -@dirrm %%DATADIR%%/themes/winter/borders/RIGHT_PAGER_SHADE_LEFT -@dirrm %%DATADIR%%/themes/winter/borders/SHAPED -@dirrm %%DATADIR%%/themes/winter/borders/TRANSIENT -@dirrm %%DATADIR%%/themes/winter/borders/common/images -@dirrm %%DATADIR%%/themes/winter/borders/common -@dirrm %%DATADIR%%/themes/winter/borders -@dirrm %%DATADIR%%/themes/winter/buttons -@dirrm %%DATADIR%%/themes/winter/common/images -@dirrm %%DATADIR%%/themes/winter/common -@dirrm %%DATADIR%%/themes/winter/coords -@dirrm %%DATADIR%%/themes/winter/cursors -@dirrm %%DATADIR%%/themes/winter/dialogs/images -@dirrm %%DATADIR%%/themes/winter/dialogs -@dirrm %%DATADIR%%/themes/winter/dock -@dirrm %%DATADIR%%/themes/winter/dragbar/images -@dirrm %%DATADIR%%/themes/winter/dragbar -@dirrm %%DATADIR%%/themes/winter/epplets/images -@dirrm %%DATADIR%%/themes/winter/epplets -@dirrm %%DATADIR%%/themes/winter/eterm/images -@dirrm %%DATADIR%%/themes/winter/eterm -@dirrm %%DATADIR%%/themes/winter/focuslist/images -@dirrm %%DATADIR%%/themes/winter/focuslist -@dirrm %%DATADIR%%/themes/winter/iconbox/images -@dirrm %%DATADIR%%/themes/winter/iconbox -@dirrm %%DATADIR%%/themes/winter/init/images -@dirrm %%DATADIR%%/themes/winter/init -@dirrm %%DATADIR%%/themes/winter/menustyles/images -@dirrm %%DATADIR%%/themes/winter/menustyles -@dirrm %%DATADIR%%/themes/winter/pager/images -@dirrm %%DATADIR%%/themes/winter/pager -@dirrm %%DATADIR%%/themes/winter/slideouts -@dirrm %%DATADIR%%/themes/winter/sound -@dirrm %%DATADIR%%/themes/winter/tooltips/images -@dirrm %%DATADIR%%/themes/winter/tooltips -@dirrm %%DATADIR%%/themes/winter/ttfonts -@dirrm %%DATADIR%%/themes/winter -@dirrm %%DATADIR%%/themes -@dirrm %%DATADIR%% -@dirrmtry share/locale/en_US/LC_MESSAGES -@dirrmtry share/locale/en_US -@dirrmtry etc/X11/dm/Sessions -@dirrmtry etc/X11/dm -@dirrmtry etc/X11 -@dirrmtry share/xsessions diff --git a/x11-wm/e17-module-calendar/Makefile b/x11-wm/e17-module-calendar/Makefile deleted file mode 100644 index 72323396da12..000000000000 --- a/x11-wm/e17-module-calendar/Makefile +++ /dev/null @@ -1,43 +0,0 @@ -# New ports collection makefile for: e17-module-calendar -# Date created: 23 June 2006 -# Whom: Stanislav Sedov <ssedov@mbsd.msk.ru> -# -# $FreeBSD$ -# - -PORTNAME= calendar -PORTVERSION= 20060926 -PORTREVISION= 1 -PORTEPOCH= 1 -CATEGORIES= x11 -MASTER_SITES= http://sunner.elcomnet.ru/~stas/ -PKGNAMEPREFIX= e17-module- -DISTNAME= ${PORTNAME}-${PORTVERSION} - -MAINTAINER= stas@FreeBSD.org -COMMENT= Nice calendar module for e17 - -BUILD_DEPENDS= enlightenment-config:${PORTSDIR}/x11-wm/enlightenment-devel -RUN_DEPENDS= enlightenment-config:${PORTSDIR}/x11-wm/enlightenment-devel - -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnometarget pkgconfig -USE_EFL= ecore evas edje eet -USE_EFL_ESMART= trans_x11 -GNU_CONFIGURE= yes - -IGNORE= doesn't compile with recent e17 - -.if !defined(WITHOUT_NLS) -USE_GETTEXT= yes -PLIST_SUB+= NLS="" -.else -CONFIGURE_ARGS= --disable-nls -PLIST_SUB+= NLS="@comment " -.endif - -post-patch: - @${REINPLACE_CMD} -e s,`${PRINTF} '\r'`,,g ${WRKSRC}/src/*.[ch] - -.include <bsd.port.mk> diff --git a/x11-wm/e17-module-calendar/distinfo b/x11-wm/e17-module-calendar/distinfo deleted file mode 100644 index 492ca7b8e1dc..000000000000 --- a/x11-wm/e17-module-calendar/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (calendar-20060926.tar.bz2) = a7c47f3efc02a2688ce4b8cc3fe2a659 -SHA256 (calendar-20060926.tar.bz2) = cdfaa4277375994287149310cf3b2a4be224cd38304ff3909f99006c55ec9331 -SIZE (calendar-20060926.tar.bz2) = 552639 diff --git a/x11-wm/e17-module-calendar/pkg-descr b/x11-wm/e17-module-calendar/pkg-descr deleted file mode 100644 index e42638fcfd68..000000000000 --- a/x11-wm/e17-module-calendar/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -Calendar - a desktop calendar module for E17. - -Author: NASA (Nathan Smith) <nasa01@comcast.net> -WWW: http://www.enlightenment.org diff --git a/x11-wm/e17-module-calendar/pkg-plist b/x11-wm/e17-module-calendar/pkg-plist deleted file mode 100644 index e74419126e29..000000000000 --- a/x11-wm/e17-module-calendar/pkg-plist +++ /dev/null @@ -1,23 +0,0 @@ -lib/enlightenment/modules/calendar/NoImage_icon.png -lib/enlightenment/modules/calendar/arrow.edj -lib/enlightenment/modules/calendar/backimage.edj -lib/enlightenment/modules/calendar/calendar.edj -lib/enlightenment/modules/calendar/label.edj -lib/enlightenment/modules/calendar/%%MODULE_ARCH%%/module.a -lib/enlightenment/modules/calendar/module.eap -lib/enlightenment/modules/calendar/%%MODULE_ARCH%%/module.la -lib/enlightenment/modules/calendar/%%MODULE_ARCH%%/module.so -lib/enlightenment/modules/calendar/module_icon.png -lib/enlightenment/modules/calendar/today.edj -lib/enlightenment/modules/calendar/topimage.edj -lib/enlightenment/modules/calendar/weekday.edj -lib/enlightenment/modules/calendar/weekend.edj -%%NLS%%share/locale/bg/LC_MESSAGES/calendar.mo -%%NLS%%share/locale/eo/LC_MESSAGES/calendar.mo -%%NLS%%share/locale/fi/LC_MESSAGES/calendar.mo -%%NLS%%share/locale/it/LC_MESSAGES/calendar.mo -%%NLS%%share/locale/ja/LC_MESSAGES/calendar.mo -%%NLS%%share/locale/ru/LC_MESSAGES/calendar.mo -%%NLS%%share/locale/sv/LC_MESSAGES/calendar.mo -@dirrm lib/enlightenment/modules/calendar/%%MODULE_ARCH%% -@dirrm lib/enlightenment/modules/calendar diff --git a/x11-wm/e17-module-cpu/Makefile b/x11-wm/e17-module-cpu/Makefile deleted file mode 100644 index f6e16b1af42b..000000000000 --- a/x11-wm/e17-module-cpu/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -# New ports collection makefile for: e17-module-cpu -# Date created: 23 June 2006 -# Whom: Stanislav Sedov <ssedov@mbsd.msk.ru> -# -# $FreeBSD$ -# - -PORTNAME= cpu -PORTVERSION= 20070223 -PORTREVISION= 1 -CATEGORIES= x11 -MASTER_SITES= ftp://ftp.springdaemons.com/pub/snapshots/e17/ -PKGNAMEPREFIX= e17-module- -DISTNAME= ${PORTNAME}-${PORTVERSION} - -MAINTAINER= stas@FreeBSD.org -COMMENT= An e17 module which allows users to monitor cpu load - -BUILD_DEPENDS= enlightenment-config:${PORTSDIR}/x11-wm/enlightenment-devel -RUN_DEPENDS= enlightenment-config:${PORTSDIR}/x11-wm/enlightenment-devel - -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnometarget pkgconfig -USE_EFL= edje -GNU_CONFIGURE= yes - -.if !defined(WITHOUT_NLS) -USE_GETTEXT= yes -PLIST_SUB+= NLS="" -.else -CONFIGURE_ARGS= --disable-nls -PLIST_SUB+= NLS="@comment " -.endif - -.include <bsd.port.mk> diff --git a/x11-wm/e17-module-cpu/distinfo b/x11-wm/e17-module-cpu/distinfo deleted file mode 100644 index eab0e6c2036e..000000000000 --- a/x11-wm/e17-module-cpu/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (cpu-20070223.tar.bz2) = 30e514b12b1962bdccc25efe7fdb01b6 -SHA256 (cpu-20070223.tar.bz2) = a4ff1df53f919f0b101eaf335038a88e6d8712a1648528982e411a3805d75b96 -SIZE (cpu-20070223.tar.bz2) = 261528 diff --git a/x11-wm/e17-module-cpu/pkg-descr b/x11-wm/e17-module-cpu/pkg-descr deleted file mode 100644 index 24b74c04f88d..000000000000 --- a/x11-wm/e17-module-cpu/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -This e17 module allows users to monitor current cpu load. It can draw -load graph and display cpu load percentage. The polling interval is -fully configurable. - -Author: Matthew Mullins -WWW: http://www.enlightenment.org diff --git a/x11-wm/e17-module-cpu/pkg-plist b/x11-wm/e17-module-cpu/pkg-plist deleted file mode 100644 index 1f5208e5a15b..000000000000 --- a/x11-wm/e17-module-cpu/pkg-plist +++ /dev/null @@ -1,10 +0,0 @@ -lib/enlightenment/modules/cpu/cpu.edj -lib/enlightenment/modules/cpu/%%E17_ARCH%%/module.a -lib/enlightenment/modules/cpu/%%E17_ARCH%%/module.la -lib/enlightenment/modules/cpu/%%E17_ARCH%%/module.so -lib/enlightenment/modules/cpu/module.desktop -lib/enlightenment/modules/cpu/module.edj -@dirrm lib/enlightenment/modules/cpu/%%E17_ARCH%% -@dirrm lib/enlightenment/modules/cpu -@dirrmtry lib/enlightenment/modules -@dirrmtry lib/enlightenment diff --git a/x11-wm/e17-module-deskshow/Makefile b/x11-wm/e17-module-deskshow/Makefile deleted file mode 100644 index dae67ad0b679..000000000000 --- a/x11-wm/e17-module-deskshow/Makefile +++ /dev/null @@ -1,28 +0,0 @@ -# New ports collection makefile for: e17-module-deskshow -# Date created: 23 June 2006 -# Whom: Stanislav Sedov <ssedov@mbsd.msk.ru> -# -# $FreeBSD$ -# - -PORTNAME= deskshow -PORTVERSION= 20070223 -PORTREVISION= 1 -CATEGORIES= x11 -MASTER_SITES= ftp://ftp.springdaemons.com/pub/snapshots/e17/ -PKGNAMEPREFIX= e17-module- -DISTNAME= ${PORTNAME}-${PORTVERSION} - -MAINTAINER= stas@FreeBSD.org -COMMENT= E17 module that minimizes all windows to show the desktop - -BUILD_DEPENDS= enlightenment-config:${PORTSDIR}/x11-wm/enlightenment-devel -RUN_DEPENDS= enlightenment-config:${PORTSDIR}/x11-wm/enlightenment-devel - -GNU_CONFIGURE= yes -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnometarget pkgconfig -USE_EFL= edje - -.include <bsd.port.mk> diff --git a/x11-wm/e17-module-deskshow/distinfo b/x11-wm/e17-module-deskshow/distinfo deleted file mode 100644 index 02a446cb2b0d..000000000000 --- a/x11-wm/e17-module-deskshow/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (deskshow-20070223.tar.bz2) = a18ff84163447ea899cc21ff71718f0c -SHA256 (deskshow-20070223.tar.bz2) = 98b1b9138fa75d43a8e4a2c9c461007bf3129d5aa934798241e12c22b12bdfb5 -SIZE (deskshow-20070223.tar.bz2) = 281233 diff --git a/x11-wm/e17-module-deskshow/pkg-descr b/x11-wm/e17-module-deskshow/pkg-descr deleted file mode 100644 index c0deaae6733e..000000000000 --- a/x11-wm/e17-module-deskshow/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -An E17 module which minimizes all windows in order to show the desktop. - -Author: Christopher Michael <devilhorns@comcast.net> -WWW: http://www.enlightenment.org diff --git a/x11-wm/e17-module-deskshow/pkg-plist b/x11-wm/e17-module-deskshow/pkg-plist deleted file mode 100644 index a5528559f717..000000000000 --- a/x11-wm/e17-module-deskshow/pkg-plist +++ /dev/null @@ -1,11 +0,0 @@ -lib/enlightenment/modules/deskshow/deskshow.edj -lib/enlightenment/modules/deskshow/%%E17_ARCH%%/module.a -lib/enlightenment/modules/deskshow/%%E17_ARCH%%/module.la -lib/enlightenment/modules/deskshow/%%E17_ARCH%%/module.so -lib/enlightenment/modules/deskshow/module.desktop -lib/enlightenment/modules/deskshow/module.edj -lib/enlightenment/modules/deskshow/module_icon.png -@dirrm lib/enlightenment/modules/deskshow/%%E17_ARCH%% -@dirrm lib/enlightenment/modules/deskshow -@dirrmtry lib/enlightenment/modules -@dirrmtry lib/enlightenment diff --git a/x11-wm/e17-module-flame/Makefile b/x11-wm/e17-module-flame/Makefile deleted file mode 100644 index 278fe318b88c..000000000000 --- a/x11-wm/e17-module-flame/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -# New ports collection makefile for: e17-module-flame -# Date created: 23 June 2006 -# Whom: Stanislav Sedov <ssedov@mbsd.msk.ru> -# -# $FreeBSD$ -# - -PORTNAME= flame -PORTVERSION= 20070223 -PORTREVISION= 1 -CATEGORIES= x11 -MASTER_SITES= ftp://ftp.springdaemons.com/pub/snapshots/e17/ -PKGNAMEPREFIX= e17-module- -DISTNAME= ${PORTNAME}-${PORTVERSION} - -MAINTAINER= stas@FreeBSD.org -COMMENT= An e17 module which draws flames on your desktop - -BUILD_DEPENDS= enlightenment-config:${PORTSDIR}/x11-wm/enlightenment-devel -RUN_DEPENDS= enlightenment-config:${PORTSDIR}/x11-wm/enlightenment-devel - -GNU_CONFIGURE= yes -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnometarget pkgconfig -USE_EFL= edje - -.if !defined(WITHOUT_NLS) -USE_GETTEXT= yes -PLIST_SUB+= NLS="" -.else -CONFIGURE_ARGS= --disable-nls -PLIST_SUB+= NLS="@comment " -.endif - -.include <bsd.port.mk> diff --git a/x11-wm/e17-module-flame/distinfo b/x11-wm/e17-module-flame/distinfo deleted file mode 100644 index 7b40e0f4f2dc..000000000000 --- a/x11-wm/e17-module-flame/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (flame-20070223.tar.bz2) = 4fbb97b86add29eef207cda3dd802468 -SHA256 (flame-20070223.tar.bz2) = 18f81de98337826d04716278fe12efc7f0043cfe05f391b21e93ef9777be8738 -SIZE (flame-20070223.tar.bz2) = 278915 diff --git a/x11-wm/e17-module-flame/pkg-descr b/x11-wm/e17-module-flame/pkg-descr deleted file mode 100644 index 4277e8e5057c..000000000000 --- a/x11-wm/e17-module-flame/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -This e17 module dsiplays flames on the bottom part of the screen. - -Author: Vincent 'caro' Torri -WWW: http://www.enlightenment.org diff --git a/x11-wm/e17-module-flame/pkg-plist b/x11-wm/e17-module-flame/pkg-plist deleted file mode 100644 index 6651443c6b32..000000000000 --- a/x11-wm/e17-module-flame/pkg-plist +++ /dev/null @@ -1,13 +0,0 @@ -lib/enlightenment/modules/flame/%%E17_ARCH%%/module.a -lib/enlightenment/modules/flame/%%E17_ARCH%%/module.la -lib/enlightenment/modules/flame/%%E17_ARCH%%/module.so -lib/enlightenment/modules/flame/module.desktop -lib/enlightenment/modules/flame/module.edj -%%NLS%%share/locale/eo/LC_MESSAGES/flame.mo -%%NLS%%share/locale/fi/LC_MESSAGES/flame.mo -%%NLS%%share/locale/it/LC_MESSAGES/flame.mo -%%NLS%%share/locale/ja/LC_MESSAGES/flame.mo -@dirrm lib/enlightenment/modules/flame/%%E17_ARCH%% -@dirrm lib/enlightenment/modules/flame -@dirrmtry lib/enlightenment/modules -@dirrmtry lib/enlightenment diff --git a/x11-wm/e17-module-language/Makefile b/x11-wm/e17-module-language/Makefile deleted file mode 100644 index 8107c559daaf..000000000000 --- a/x11-wm/e17-module-language/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: e17-module-language -# Date created: 23 June 2006 -# Whom: Stanislav Sedov <ssedov@mbsd.msk.ru> -# -# $FreeBSD$ -# - -PORTNAME= language -PORTVERSION= 20070223 -PORTREVISION= 1 -CATEGORIES= x11 -MASTER_SITES= ftp://ftp.springdaemons.com/pub/snapshots/e17/ -PKGNAMEPREFIX= e17-module- -DISTNAME= ${PORTNAME}-${PORTVERSION} - -MAINTAINER= stas@FreeBSD.org -COMMENT= An e17 module to switch XKB input language - -BUILD_DEPENDS= enlightenment-config:${PORTSDIR}/x11-wm/enlightenment-devel -RUN_DEPENDS= enlightenment-config:${PORTSDIR}/x11-wm/enlightenment-devel - -GNU_CONFIGURE= yes -USE_BZIP2= yes -USE_GETTEXT= yes -USE_GMAKE= yes -USE_GNOME= gnometarget pkgconfig -USE_EFL= edje exml - -.include <bsd.port.mk> diff --git a/x11-wm/e17-module-language/distinfo b/x11-wm/e17-module-language/distinfo deleted file mode 100644 index 72899efb161e..000000000000 --- a/x11-wm/e17-module-language/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (language-20070223.tar.bz2) = 7c915bfbb7bd52e9d0943488c0212a1d -SHA256 (language-20070223.tar.bz2) = f80623d4ab1b6b259d21d546493fde30892aaf59b5c165dd017a7ab4a0608334 -SIZE (language-20070223.tar.bz2) = 456281 diff --git a/x11-wm/e17-module-language/files/patch-configure b/x11-wm/e17-module-language/files/patch-configure deleted file mode 100644 index 16091f080088..000000000000 --- a/x11-wm/e17-module-language/files/patch-configure +++ /dev/null @@ -1,26 +0,0 @@ ---- configure.orig Sun Jul 9 23:28:34 2006 -+++ configure Sun Jul 9 23:29:18 2006 -@@ -22091,6 +22091,11 @@ - cat >>conftest.$ac_ext <<_ACEOF - /* end confdefs.h. */ - $ac_includes_default -+#include <X11/Xlib.h> -+#include <X11/Xos.h> -+#include <X11/XKBlib.h> -+#include <X11/extensions/XKBfile.h> -+#include <X11/extensions/XKBconfig.h> - #include <$ac_header> - _ACEOF - rm -f conftest.$ac_objext -@@ -22135,6 +22140,11 @@ - cat confdefs.h >>conftest.$ac_ext - cat >>conftest.$ac_ext <<_ACEOF - /* end confdefs.h. */ -+#include <X11/Xlib.h> -+#include <X11/Xos.h> -+#include <X11/XKBlib.h> -+#include <X11/extensions/XKBfile.h> -+#include <X11/extensions/XKBconfig.h> - #include <$ac_header> - _ACEOF - if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 diff --git a/x11-wm/e17-module-language/pkg-descr b/x11-wm/e17-module-language/pkg-descr deleted file mode 100644 index 12881f1fd52e..000000000000 --- a/x11-wm/e17-module-language/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -This e17 module allows users to switch current XKB language in efficient way. - -Author: Aleksej 'sndev' Struk <astruk@gmail.com> -WWW: http://www.enlightenment.org/ diff --git a/x11-wm/e17-module-language/pkg-plist b/x11-wm/e17-module-language/pkg-plist deleted file mode 100644 index b4a26ed34c97..000000000000 --- a/x11-wm/e17-module-language/pkg-plist +++ /dev/null @@ -1,85 +0,0 @@ -lib/enlightenment/modules/language/%%E17_ARCH%%/module.a -lib/enlightenment/modules/language/%%E17_ARCH%%/module.la -lib/enlightenment/modules/language/%%E17_ARCH%%/module.so -lib/enlightenment/modules/language/images/AFG_flag.png -lib/enlightenment/modules/language/images/ALB_flag.png -lib/enlightenment/modules/language/images/AND_flag.png -lib/enlightenment/modules/language/images/ARA_flag.png -lib/enlightenment/modules/language/images/ARM_flag.png -lib/enlightenment/modules/language/images/AZE_flag.png -lib/enlightenment/modules/language/images/BAN_flag.png -lib/enlightenment/modules/language/images/BEL_flag.png -lib/enlightenment/modules/language/images/BGR_flag.png -lib/enlightenment/modules/language/images/BHU_flag.png -lib/enlightenment/modules/language/images/BIH_flag.png -lib/enlightenment/modules/language/images/BLR_flag.png -lib/enlightenment/modules/language/images/BRA_flag.png -lib/enlightenment/modules/language/images/CAN_flag.png -lib/enlightenment/modules/language/images/CHE_flag.png -lib/enlightenment/modules/language/images/CZE_flag.png -lib/enlightenment/modules/language/images/DEU_flag.png -lib/enlightenment/modules/language/images/DNK_flag.png -lib/enlightenment/modules/language/images/EPO_flag.png -lib/enlightenment/modules/language/images/ESP_flag.png -lib/enlightenment/modules/language/images/EST_flag.png -lib/enlightenment/modules/language/images/FAO_flag.png -lib/enlightenment/modules/language/images/FIN_flag.png -lib/enlightenment/modules/language/images/FRA_flag.png -lib/enlightenment/modules/language/images/GBR_flag.png -lib/enlightenment/modules/language/images/GEO_flag.png -lib/enlightenment/modules/language/images/GHA_flag.png -lib/enlightenment/modules/language/images/GRE_flag.png -lib/enlightenment/modules/language/images/HRV_flag.png -lib/enlightenment/modules/language/images/HUN_flag.png -lib/enlightenment/modules/language/images/IND_flag.png -lib/enlightenment/modules/language/images/IRL_flag.png -lib/enlightenment/modules/language/images/IRN_flag.png -lib/enlightenment/modules/language/images/ISL_flag.png -lib/enlightenment/modules/language/images/ISR_flag.png -lib/enlightenment/modules/language/images/ITA_flag.png -lib/enlightenment/modules/language/images/JPN_flag.png -lib/enlightenment/modules/language/images/KAZ_flag.png -lib/enlightenment/modules/language/images/KHM_flag.png -lib/enlightenment/modules/language/images/KYR_flag.png -lib/enlightenment/modules/language/images/LAO_flag.png -lib/enlightenment/modules/language/images/LTU_flag.png -lib/enlightenment/modules/language/images/LVA_flag.png -lib/enlightenment/modules/language/images/MAL_flag.png -lib/enlightenment/modules/language/images/MAO_flag.png -lib/enlightenment/modules/language/images/MKD_flag.png -lib/enlightenment/modules/language/images/MLT_flag.png -lib/enlightenment/modules/language/images/MMR_flag.png -lib/enlightenment/modules/language/images/MNG_flag.png -lib/enlightenment/modules/language/images/NLD_flag.png -lib/enlightenment/modules/language/images/NOR_flag.png -lib/enlightenment/modules/language/images/PAK_flag.png -lib/enlightenment/modules/language/images/POL_flag.png -lib/enlightenment/modules/language/images/PRT_flag.png -lib/enlightenment/modules/language/images/ROU_flag.png -lib/enlightenment/modules/language/images/RUS_flag.png -lib/enlightenment/modules/language/images/SCG_flag.png -lib/enlightenment/modules/language/images/SRL_flag.png -lib/enlightenment/modules/language/images/SVK_flag.png -lib/enlightenment/modules/language/images/SVN_flag.png -lib/enlightenment/modules/language/images/SWE_flag.png -lib/enlightenment/modules/language/images/SYR_flag.png -lib/enlightenment/modules/language/images/THA_flag.png -lib/enlightenment/modules/language/images/TJK_flag.png -lib/enlightenment/modules/language/images/TUR_flag.png -lib/enlightenment/modules/language/images/UKR_flag.png -lib/enlightenment/modules/language/images/USA_flag.png -lib/enlightenment/modules/language/images/UZB_flag.png -lib/enlightenment/modules/language/images/VNM_flag.png -lib/enlightenment/modules/language/images/ZAR_flag.png -lib/enlightenment/modules/language/images/unknown_flag.png -lib/enlightenment/modules/language/language.edj -lib/enlightenment/modules/language/module.desktop -lib/enlightenment/modules/language/module.edj -share/locale/eo/LC_MESSAGES/language.mo -share/locale/it/LC_MESSAGES/language.mo -share/locale/sv/LC_MESSAGES/language.mo -@dirrm lib/enlightenment/modules/language/images -@dirrm lib/enlightenment/modules/language/%%E17_ARCH%% -@dirrm lib/enlightenment/modules/language -@dirrmtry lib/enlightenment/modules -@dirrmtry lib/enlightenment diff --git a/x11-wm/e17-module-mail/Makefile b/x11-wm/e17-module-mail/Makefile deleted file mode 100644 index 2e61a02d11ef..000000000000 --- a/x11-wm/e17-module-mail/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: e17-module-mail -# Date created: 23 June 2006 -# Whom: Stanislav Sedov <ssedov@mbsd.msk.ru> -# -# $FreeBSD$ -# - -PORTNAME= mail -PORTVERSION= 20070223 -PORTREVISION= 1 -CATEGORIES= x11 -MASTER_SITES= ftp://ftp.springdaemons.com/pub/snapshots/e17/ -PKGNAMEPREFIX= e17-module- -DISTNAME= ${PORTNAME}-${PORTVERSION} - -MAINTAINER= stas@FreeBSD.org -COMMENT= An e17 module to check your mailboxes (like xbiff does) - -BUILD_DEPENDS= enlightenment-config:${PORTSDIR}/x11-wm/enlightenment-devel -RUN_DEPENDS= enlightenment-config:${PORTSDIR}/x11-wm/enlightenment-devel - -GNU_CONFIGURE= yes -USE_BZIP2= yes -USE_GETTEXT= yes -USE_GMAKE= yes -USE_GNOME= gnometarget pkgconfig -USE_EFL= edje - -.include <bsd.port.mk> diff --git a/x11-wm/e17-module-mail/distinfo b/x11-wm/e17-module-mail/distinfo deleted file mode 100644 index 2d267b2dcf5d..000000000000 --- a/x11-wm/e17-module-mail/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (mail-20070223.tar.bz2) = c300a031aa7e68ad4f45305e3a4bacbd -SHA256 (mail-20070223.tar.bz2) = b3ef91549cc061904d8aea7e9a9ac44066fcdfe951bfb6da214afc11ea055207 -SIZE (mail-20070223.tar.bz2) = 344411 diff --git a/x11-wm/e17-module-mail/pkg-descr b/x11-wm/e17-module-mail/pkg-descr deleted file mode 100644 index fc9c9ac56f2b..000000000000 --- a/x11-wm/e17-module-mail/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -This e17 module allows users to check their POP3, IMAP, maildir and mbox -mailboxes in efficient way (like xbiff). The module is fully configurable -and handy. - -Author: devilhorns (Christopher Michael) <devilhorns@comcast.net> -WWW: http://www.enlightenment.org/ diff --git a/x11-wm/e17-module-mail/pkg-plist b/x11-wm/e17-module-mail/pkg-plist deleted file mode 100644 index d32b8e0e82c8..000000000000 --- a/x11-wm/e17-module-mail/pkg-plist +++ /dev/null @@ -1,12 +0,0 @@ -lib/enlightenment/modules/mail/%%E17_ARCH%%/module.a -lib/enlightenment/modules/mail/%%E17_ARCH%%/module.la -lib/enlightenment/modules/mail/%%E17_ARCH%%/module.so -lib/enlightenment/modules/mail/mail.edj -lib/enlightenment/modules/mail/module.desktop -lib/enlightenment/modules/mail/module.edj -lib/enlightenment/modules/mail/module_icon.png -share/locale/it/LC_MESSAGES/mail.mo -@dirrm lib/enlightenment/modules/mail/%%E17_ARCH%% -@dirrm lib/enlightenment/modules/mail -@dirrmtry lib/enlightenment/modules -@dirrmtry lib/enlightenment diff --git a/x11-wm/e17-module-mem/Makefile b/x11-wm/e17-module-mem/Makefile deleted file mode 100644 index e2c7d3e74d4b..000000000000 --- a/x11-wm/e17-module-mem/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -# New ports collection makefile for: e17-module-mem -# Date created: 23 June 2006 -# Whom: Stanislav Sedov <ssedov@mbsd.msk.ru> -# -# $FreeBSD$ -# - -PORTNAME= mem -PORTVERSION= 20070223 -PORTREVISION= 1 -PORTEPOCH= 1 -CATEGORIES= x11 -MASTER_SITES= ftp://ftp.springdaemons.com/pub/snapshots/e17/ -PKGNAMEPREFIX= e17-module- -DISTNAME= ${PORTNAME}-${PORTVERSION} - -MAINTAINER= stas@FreeBSD.org -COMMENT= An e17 memory monitoring module - -BUILD_DEPENDS= enlightenment-config:${PORTSDIR}/x11-wm/enlightenment-devel -RUN_DEPENDS= enlightenment-config:${PORTSDIR}/x11-wm/enlightenment-devel - -GNU_CONFIGURE= yes -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnometarget pkgconfig -USE_EFL= edje - -.if !defined(WITHOUT_NLS) -USE_GETTEXT= yes -PLIST_SUB+= NLS="" -.else -CONFIGURE_ARGS= --disable-nls -PLIST_SUB+= NLS="@comment " -.endif - -.include <bsd.port.mk> diff --git a/x11-wm/e17-module-mem/distinfo b/x11-wm/e17-module-mem/distinfo deleted file mode 100644 index 50f192030695..000000000000 --- a/x11-wm/e17-module-mem/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (mem-20070223.tar.bz2) = 806aae2b3cc2e748a9b26bd8363265ab -SHA256 (mem-20070223.tar.bz2) = 7d311e2f1efff3e54f33541d338a4ef63a4256e7969f1d7993d84d5a94bceae3 -SIZE (mem-20070223.tar.bz2) = 426211 diff --git a/x11-wm/e17-module-mem/pkg-descr b/x11-wm/e17-module-mem/pkg-descr deleted file mode 100644 index a68c0ab3c5b7..000000000000 --- a/x11-wm/e17-module-mem/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -An E17 module which monitors the RAM usage. It features the following: -- display text and/or graph -- display text in percentage or absolute - -Author: Matthew Mullins -WWW: http://www.enlightenment.org diff --git a/x11-wm/e17-module-mem/pkg-plist b/x11-wm/e17-module-mem/pkg-plist deleted file mode 100644 index e6d9793970a2..000000000000 --- a/x11-wm/e17-module-mem/pkg-plist +++ /dev/null @@ -1,17 +0,0 @@ -lib/enlightenment/modules/mem/%%E17_ARCH%%/module.a -lib/enlightenment/modules/mem/%%E17_ARCH%%/module.la -lib/enlightenment/modules/mem/%%E17_ARCH%%/module.so -lib/enlightenment/modules/mem/mem.edj -lib/enlightenment/modules/mem/module.desktop -lib/enlightenment/modules/mem/module.edj -lib/enlightenment/modules/mem/module_icon.png -%%NLS%%share/locale/eo/LC_MESSAGES/mem.mo -%%NLS%%share/locale/fi/LC_MESSAGES/mem.mo -%%NLS%%share/locale/it/LC_MESSAGES/mem.mo -%%NLS%%share/locale/ja/LC_MESSAGES/mem.mo -%%NLS%%share/locale/ru/LC_MESSAGES/mem.mo -%%NLS%%share/locale/sv/LC_MESSAGES/mem.mo -@dirrm lib/enlightenment/modules/mem/%%E17_ARCH%% -@dirrm lib/enlightenment/modules/mem -@dirrmtry lib/enlightenment/modules -@dirrmtry lib/enlightenment diff --git a/x11-wm/e17-module-mixer/Makefile b/x11-wm/e17-module-mixer/Makefile deleted file mode 100644 index f18221d40a69..000000000000 --- a/x11-wm/e17-module-mixer/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -# New ports collection makefile for: e17-module-mixer -# Date created: 30 September 2006 -# Whom: Stanislav Sedov <stas@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= mixer -PORTVERSION= 20070223 -PORTREVISION= 1 -CATEGORIES= x11 -MASTER_SITES= ftp://ftp.springdaemons.com/pub/snapshots/e17/ -PKGNAMEPREFIX= e17-module- -DISTNAME= ${PORTNAME}-${PORTVERSION} - -MAINTAINER= stas@FreeBSD.org -COMMENT= An e17 module to adjust audio mixer settings - -BUILD_DEPENDS= enlightenment-config:${PORTSDIR}/x11-wm/enlightenment-devel -RUN_DEPENDS= enlightenment-config:${PORTSDIR}/x11-wm/enlightenment-devel - -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnometarget pkgconfig -USE_EFL= edje -GNU_CONFIGURE= yes - -.if !defined(WITHOUT_NLS) -USE_GETTEXT= yes -PLIST_SUB+= NLS="" -.else -CONFIGURE_ARGS= --disable-nls -PLIST_SUB+= NLS="@comment " -.endif - -.include <bsd.port.mk> diff --git a/x11-wm/e17-module-mixer/distinfo b/x11-wm/e17-module-mixer/distinfo deleted file mode 100644 index a90a4bba763e..000000000000 --- a/x11-wm/e17-module-mixer/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (mixer-20070223.tar.bz2) = cc6f42aa6e610276e24c6751d4dd74c5 -SHA256 (mixer-20070223.tar.bz2) = c59985082b4cadcb9feccf1bc30f436fd1908f32d2f87bf53a9a47eaab6942c6 -SIZE (mixer-20070223.tar.bz2) = 338312 diff --git a/x11-wm/e17-module-mixer/pkg-descr b/x11-wm/e17-module-mixer/pkg-descr deleted file mode 100644 index f631d3706434..000000000000 --- a/x11-wm/e17-module-mixer/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -This e17 module allows users to adjust the sound mixer settings. - -Author: Christopher 'devilhorns' Michael <devilhorns@comcast.net> -WWW: http://www.enlightenment.org diff --git a/x11-wm/e17-module-mixer/pkg-plist b/x11-wm/e17-module-mixer/pkg-plist deleted file mode 100644 index 65daad44b823..000000000000 --- a/x11-wm/e17-module-mixer/pkg-plist +++ /dev/null @@ -1,12 +0,0 @@ -lib/enlightenment/modules/mixer/%%E17_ARCH%%/module.a -lib/enlightenment/modules/mixer/%%E17_ARCH%%/module.la -lib/enlightenment/modules/mixer/%%E17_ARCH%%/module.so -lib/enlightenment/modules/mixer/mixer.edj -lib/enlightenment/modules/mixer/module.desktop -lib/enlightenment/modules/mixer/module.edj -%%NLS%%share/locale/it/LC_MESSAGES/mixer.mo -%%NLS%%share/locale/sv/LC_MESSAGES/mixer.mo -@dirrm lib/enlightenment/modules/mixer/%%E17_ARCH%% -@dirrm lib/enlightenment/modules/mixer -@dirrmtry lib/enlightenment/modules -@dirrmtry lib/enlightenment diff --git a/x11-wm/e17-module-moon/Makefile b/x11-wm/e17-module-moon/Makefile deleted file mode 100644 index 01eee6b51d99..000000000000 --- a/x11-wm/e17-module-moon/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -# New ports collection makefile for: e17-module-moon -# Date created: 23 June 2006 -# Whom: Stanislav Sedov <ssedov@mbsd.msk.ru> -# -# $FreeBSD$ -# - -PORTNAME= moon -PORTVERSION= 20070223 -PORTREVISION= 1 -PORTEPOCH= 1 -CATEGORIES= x11 -MASTER_SITES= ftp://ftp.springdaemons.com/pub/snapshots/e17/ -PKGNAMEPREFIX= e17-module- -DISTNAME= ${PORTNAME}-${PORTVERSION} - -MAINTAINER= stas@FreeBSD.org -COMMENT= An e17 Moon Clock module - -BUILD_DEPENDS= enlightenment-config:${PORTSDIR}/x11-wm/enlightenment-devel -RUN_DEPENDS= enlightenment-config:${PORTSDIR}/x11-wm/enlightenment-devel - -GNU_CONFIGURE= yes -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnometarget pkgconfig -USE_EFL= edje - -.if !defined(WITHOUT_NLS) -USE_GETTEXT= yes -PLIST_SUB+= NLS="" -.else -CONFIGURE_ARGS= --disable-nls -PLIST_SUB+= NLS="@comment " -.endif - -.include <bsd.port.mk> diff --git a/x11-wm/e17-module-moon/distinfo b/x11-wm/e17-module-moon/distinfo deleted file mode 100644 index b686069e9d75..000000000000 --- a/x11-wm/e17-module-moon/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (moon-20070223.tar.bz2) = a110d53bc5a05297e93a3a1eb05c9c11 -SHA256 (moon-20070223.tar.bz2) = 4e387eabe35435c61da7fd84a33cad8f8f3db31092c44bdf65834273f5f4a775 -SIZE (moon-20070223.tar.bz2) = 699637 diff --git a/x11-wm/e17-module-moon/pkg-descr b/x11-wm/e17-module-moon/pkg-descr deleted file mode 100644 index 02fa681502d7..000000000000 --- a/x11-wm/e17-module-moon/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -Moon is an E17 module which displays information about the current phase -of the moon. - -Author: David Stevenson <david.35472@gmail.com> -WWW: http://www.enlightenment.org diff --git a/x11-wm/e17-module-moon/pkg-plist b/x11-wm/e17-module-moon/pkg-plist deleted file mode 100644 index 9e45a173c835..000000000000 --- a/x11-wm/e17-module-moon/pkg-plist +++ /dev/null @@ -1,14 +0,0 @@ -lib/enlightenment/modules/moon/%%E17_ARCH%%/module.a -lib/enlightenment/modules/moon/%%E17_ARCH%%/module.la -lib/enlightenment/modules/moon/%%E17_ARCH%%/module.so -lib/enlightenment/modules/moon/module.desktop -lib/enlightenment/modules/moon/module.edj -lib/enlightenment/modules/moon/moon.edj -%%NLS%%share/locale/eo/LC_MESSAGES/moon.mo -%%NLS%%share/locale/it/LC_MESSAGES/moon.mo -%%NLS%%share/locale/ja/LC_MESSAGES/moon.mo -%%NLS%%share/locale/sv/LC_MESSAGES/moon.mo -@dirrm lib/enlightenment/modules/moon/%%E17_ARCH%% -@dirrm lib/enlightenment/modules/moon -@dirrmtry lib/enlightenment/modules -@dirrmtry lib/enlightenment diff --git a/x11-wm/e17-module-rain/Makefile b/x11-wm/e17-module-rain/Makefile deleted file mode 100644 index 155c65f629b1..000000000000 --- a/x11-wm/e17-module-rain/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -# New ports collection makefile for: e17-module-rain -# Date created: 23 June 2006 -# Whom: Stanislav Sedov <ssedov@mbsd.msk.ru> -# -# $FreeBSD$ -# - -PORTNAME= rain -PORTVERSION= 20070223 -PORTREVISION= 1 -CATEGORIES= x11 -MASTER_SITES= ftp://ftp.springdaemons.com/pub/snapshots/e17/ -PKGNAMEPREFIX= e17-module- -DISTNAME= ${PORTNAME}-${PORTVERSION} - -MAINTAINER= stas@FreeBSD.org -COMMENT= An e17 module which draws raindrops on your screen - -BUILD_DEPENDS= enlightenment-config:${PORTSDIR}/x11-wm/enlightenment-devel -RUN_DEPENDS= enlightenment-config:${PORTSDIR}/x11-wm/enlightenment-devel - -GNU_CONFIGURE= yes -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnometarget pkgconfig -USE_EFL= edje - -.if !defined(WITHOUT_NLS) -USE_GETTEXT= yes -PLIST_SUB+= NLS="" -.else -CONFIGURE_ARGS= --disable-nls -PLIST_SUB+= NLS="@comment " -.endif - -.include <bsd.port.mk> diff --git a/x11-wm/e17-module-rain/distinfo b/x11-wm/e17-module-rain/distinfo deleted file mode 100644 index 15917d0bc525..000000000000 --- a/x11-wm/e17-module-rain/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (rain-20070223.tar.bz2) = 18fa7a1fdf1cd51098620a0514436d34 -SHA256 (rain-20070223.tar.bz2) = f132a1118622fd718b32ca5c28e415b5af3edc51d87642b58885ea723a344806 -SIZE (rain-20070223.tar.bz2) = 347010 diff --git a/x11-wm/e17-module-rain/pkg-descr b/x11-wm/e17-module-rain/pkg-descr deleted file mode 100644 index 2990d0cb6109..000000000000 --- a/x11-wm/e17-module-rain/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -This e17 module draws falling raindrops and clouds on your desktop window. -The rain density is fully configurable. - -Author: Team Ninjapirates <http://www.dxdstudio.com/npn/> -WWW: http://www.enlightenment.org diff --git a/x11-wm/e17-module-rain/pkg-plist b/x11-wm/e17-module-rain/pkg-plist deleted file mode 100644 index 3b4f45a09cfc..000000000000 --- a/x11-wm/e17-module-rain/pkg-plist +++ /dev/null @@ -1,19 +0,0 @@ -lib/enlightenment/modules/rain/cloud.png -lib/enlightenment/modules/rain/drop-l.png -lib/enlightenment/modules/rain/drop-m.png -lib/enlightenment/modules/rain/drop-s.png -lib/enlightenment/modules/rain/%%E17_ARCH%%/module.a -lib/enlightenment/modules/rain/%%E17_ARCH%%/module.la -lib/enlightenment/modules/rain/%%E17_ARCH%%/module.so -lib/enlightenment/modules/rain/module.desktop -lib/enlightenment/modules/rain/module.edj -%%NLS%%share/locale/eo/LC_MESSAGES/rain.mo -%%NLS%%share/locale/fi/LC_MESSAGES/rain.mo -%%NLS%%share/locale/fr/LC_MESSAGES/rain.mo -%%NLS%%share/locale/it/LC_MESSAGES/rain.mo -%%NLS%%share/locale/ja/LC_MESSAGES/rain.mo -%%NLS%%share/locale/sv/LC_MESSAGES/rain.mo -@dirrm lib/enlightenment/modules/rain/%%E17_ARCH%% -@dirrm lib/enlightenment/modules/rain -@dirrmtry lib/enlightenment/modules -@dirrmtry lib/enlightenment diff --git a/x11-wm/e17-module-screenshot/Makefile b/x11-wm/e17-module-screenshot/Makefile deleted file mode 100644 index 405edd0fda9f..000000000000 --- a/x11-wm/e17-module-screenshot/Makefile +++ /dev/null @@ -1,51 +0,0 @@ -# New ports collection makefile for: e17-module-uptime -# Date created: 23 June 2006 -# Whom: Stanislav Sedov <ssedov@mbsd.msk.ru> -# -# $FreeBSD$ -# - -PORTNAME= screenshot -PORTVERSION= 20070223 -PORTREVISION= 1 -CATEGORIES= x11 -MASTER_SITES= ftp://ftp.springdaemons.com/pub/snapshots/e17/ -PKGNAMEPREFIX= e17-module- -DISTNAME= ${PORTNAME}-${PORTVERSION} - -MAINTAINER= stas@FreeBSD.org -COMMENT= An e17 module which allows users to take screenshots - -BUILD_DEPENDS= enlightenment-config:${PORTSDIR}/x11-wm/enlightenment-devel -RUN_DEPENDS= enlightenment-config:${PORTSDIR}/x11-wm/enlightenment-devel - -GNU_CONFIGURE= yes -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnometarget pkgconfig -USE_EFL= edje - -OPTIONS= IMAGIC "Use ImageMagick" on \ - SCROT "Use Scrot" off - -.include <bsd.port.pre.mk> - -.if !defined(WITHOUT_IMAGIC) -BUILD_DEPENDS+= import:${PORTSDIR}/graphics/ImageMagick -RUN_DEPENDS+= import:${PORTSDIR}/graphics/ImageMagick -.endif - -.if defined(WITH_SCROT) -BUILD_DEPENDS+= scrot:${PORTSDIR}/graphics/scrot -RUN_DEPENDS+= scrot:${PORTSDIR}/graphics/scrot -.endif - -.if !defined(WITHOUT_NLS) -USE_GETTEXT= yes -PLIST_SUB+= NLS="" -.else -CONFIGURE_ARGS= --disable-nls -PLIST_SUB+= NLS="@comment " -.endif - -.include <bsd.port.post.mk> diff --git a/x11-wm/e17-module-screenshot/distinfo b/x11-wm/e17-module-screenshot/distinfo deleted file mode 100644 index a5226e0d1280..000000000000 --- a/x11-wm/e17-module-screenshot/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (screenshot-20070223.tar.bz2) = d351d0fb604bf87c5eaf80c0a8089c96 -SHA256 (screenshot-20070223.tar.bz2) = 16e3fcfe9479791af46c3d8fb933fc3020d522c013f26e8847516f4561824e54 -SIZE (screenshot-20070223.tar.bz2) = 407617 diff --git a/x11-wm/e17-module-screenshot/pkg-descr b/x11-wm/e17-module-screenshot/pkg-descr deleted file mode 100644 index bd1038d2288f..000000000000 --- a/x11-wm/e17-module-screenshot/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -This e17 module allows users to take screenshots. It provides customized -delays, directory and file names, image dithering, thumbnails preparing -and various effects via external programs. - -Author: Christopher Michael <devilhorns@comcast.net> -WWW: http://www.enlightenment.org diff --git a/x11-wm/e17-module-screenshot/pkg-plist b/x11-wm/e17-module-screenshot/pkg-plist deleted file mode 100644 index bf1d4b69764d..000000000000 --- a/x11-wm/e17-module-screenshot/pkg-plist +++ /dev/null @@ -1,18 +0,0 @@ -lib/enlightenment/modules/screenshot/%%E17_ARCH%%/module.a -lib/enlightenment/modules/screenshot/%%E17_ARCH%%/module.la -lib/enlightenment/modules/screenshot/%%E17_ARCH%%/module.so -lib/enlightenment/modules/screenshot/module.desktop -lib/enlightenment/modules/screenshot/module.edj -lib/enlightenment/modules/screenshot/module_icon.png -lib/enlightenment/modules/screenshot/screenshot.edj -%%NLS%%share/locale/eo/LC_MESSAGES/screenshot.mo -%%NLS%%share/locale/fi/LC_MESSAGES/screenshot.mo -%%NLS%%share/locale/fr/LC_MESSAGES/screenshot.mo -%%NLS%%share/locale/it/LC_MESSAGES/screenshot.mo -%%NLS%%share/locale/ja/LC_MESSAGES/screenshot.mo -%%NLS%%share/locale/ru/LC_MESSAGES/screenshot.mo -%%NLS%%share/locale/sv/LC_MESSAGES/screenshot.mo -@dirrm lib/enlightenment/modules/screenshot/%%E17_ARCH%% -@dirrm lib/enlightenment/modules/screenshot -@dirrmtry lib/enlightenment/modules -@dirrmtry lib/enlightenment diff --git a/x11-wm/e17-module-slideshow/Makefile b/x11-wm/e17-module-slideshow/Makefile deleted file mode 100644 index ad25dcef43df..000000000000 --- a/x11-wm/e17-module-slideshow/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -# New ports collection makefile for: e17-module-slideshow -# Date created: 23 June 2006 -# Whom: Stanislav Sedov <ssedov@mbsd.msk.ru> -# -# $FreeBSD$ -# - -PORTNAME= slideshow -PORTVERSION= 20070223 -PORTREVISION= 1 -CATEGORIES= x11 -MASTER_SITES= ftp://ftp.springdaemons.com/pub/snapshots/e17/ -PKGNAMEPREFIX= e17-module- -DISTNAME= ${PORTNAME}-${PORTVERSION} - -MAINTAINER= stas@FreeBSD.org -COMMENT= An e17 module which cycles desktop backgrounds - -BUILD_DEPENDS= enlightenment-config:${PORTSDIR}/x11-wm/enlightenment-devel -RUN_DEPENDS= enlightenment-config:${PORTSDIR}/x11-wm/enlightenment-devel - -GNU_CONFIGURE= yes -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnometarget pkgconfig -USE_EFL= edje - -.if !defined(WITHOUT_NLS) -USE_GETTEXT= yes -PLIST_SUB+= NLS="" -.else -CONFIGURE_ARGS= --disable-nls -PLIST_SUB+= NLS="@comment " -.endif - -.include <bsd.port.mk> diff --git a/x11-wm/e17-module-slideshow/distinfo b/x11-wm/e17-module-slideshow/distinfo deleted file mode 100644 index 657acb2a7fd8..000000000000 --- a/x11-wm/e17-module-slideshow/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (slideshow-20070223.tar.bz2) = 619c2f89b4fe10fc608f3694a74a99ee -SHA256 (slideshow-20070223.tar.bz2) = 59b481d3bdb1bd38187fc397f4a2f3922befc41713ede7dd08a30353321e1a25 -SIZE (slideshow-20070223.tar.bz2) = 284528 diff --git a/x11-wm/e17-module-slideshow/pkg-descr b/x11-wm/e17-module-slideshow/pkg-descr deleted file mode 100644 index 105729b2e344..000000000000 --- a/x11-wm/e17-module-slideshow/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -This e17 module allows users to cycle desktop backgrounds over configurable -time interval. -It is a port of the e16 epplet E-Slides by Michael Jennings. - -Author: Christopher Michael <devilhorns@comcast.net> -WWW: http://www.enlightenment.org/ diff --git a/x11-wm/e17-module-slideshow/pkg-plist b/x11-wm/e17-module-slideshow/pkg-plist deleted file mode 100644 index fb0ceadcb818..000000000000 --- a/x11-wm/e17-module-slideshow/pkg-plist +++ /dev/null @@ -1,17 +0,0 @@ -lib/enlightenment/modules/slideshow/%%E17_ARCH%%/module.a -lib/enlightenment/modules/slideshow/%%E17_ARCH%%/module.la -lib/enlightenment/modules/slideshow/%%E17_ARCH%%/module.so -lib/enlightenment/modules/slideshow/module.desktop -lib/enlightenment/modules/slideshow/module.edj -lib/enlightenment/modules/slideshow/module_icon.png -lib/enlightenment/modules/slideshow/slideshow.edj -%%NLS%%share/locale/eo/LC_MESSAGES/slideshow.mo -%%NLS%%share/locale/fi/LC_MESSAGES/slideshow.mo -%%NLS%%share/locale/fr/LC_MESSAGES/slideshow.mo -%%NLS%%share/locale/it/LC_MESSAGES/slideshow.mo -%%NLS%%share/locale/ja/LC_MESSAGES/slideshow.mo -%%NLS%%share/locale/sv/LC_MESSAGES/slideshow.mo -@dirrm lib/enlightenment/modules/slideshow/%%E17_ARCH%% -@dirrm lib/enlightenment/modules/slideshow -@dirrmtry lib/enlightenment/modules -@dirrmtry lib/enlightenment diff --git a/x11-wm/e17-module-snow/Makefile b/x11-wm/e17-module-snow/Makefile deleted file mode 100644 index b79c8a7dd8c2..000000000000 --- a/x11-wm/e17-module-snow/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -# New ports collection makefile for: e17-module-snow -# Date created: 23 June 2006 -# Whom: Stanislav Sedov <ssedov@mbsd.msk.ru> -# -# $FreeBSD$ -# - -PORTNAME= snow -PORTVERSION= 20070223 -PORTREVISION= 1 -CATEGORIES= x11 -MASTER_SITES= ftp://ftp.springdaemons.com/pub/snapshots/e17/ -PKGNAMEPREFIX= e17-module- -DISTNAME= ${PORTNAME}-${PORTVERSION} - -MAINTAINER= stas@FreeBSD.org -COMMENT= An e17 module which draws snowflakes on your screen - -BUILD_DEPENDS= enlightenment-config:${PORTSDIR}/x11-wm/enlightenment-devel -RUN_DEPENDS= enlightenment-config:${PORTSDIR}/x11-wm/enlightenment-devel - -GNU_CONFIGURE= yes -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnometarget pkgconfig -USE_EFL= edje - -.if !defined(WITHOUT_NLS) -USE_GETTEXT= yes -PLIST_SUB+= NLS="" -.else -CONFIGURE_ARGS= --disable-nls -PLIST_SUB+= NLS="@comment " -.endif - -.include <bsd.port.mk> diff --git a/x11-wm/e17-module-snow/distinfo b/x11-wm/e17-module-snow/distinfo deleted file mode 100644 index c88a10edbbf2..000000000000 --- a/x11-wm/e17-module-snow/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (snow-20070223.tar.bz2) = 820d1c99ba6007e4d0d7eca164cbbe9a -SHA256 (snow-20070223.tar.bz2) = 4695cc214ababccb04ca746626bc87edeb32c5319c1b3f9b76eb92c7023c8396 -SIZE (snow-20070223.tar.bz2) = 278212 diff --git a/x11-wm/e17-module-snow/pkg-descr b/x11-wm/e17-module-snow/pkg-descr deleted file mode 100644 index 424ed4a938ff..000000000000 --- a/x11-wm/e17-module-snow/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -This e17 module draws falling snowflakes and trees on your desktop window. -The snow density is fully configurable. - -Author: Andrew 'HandyAndE' Williams <http://handyande.co.uk/> -WWW: http://www.enlightenment.org diff --git a/x11-wm/e17-module-snow/pkg-plist b/x11-wm/e17-module-snow/pkg-plist deleted file mode 100644 index 31ad449eeda5..000000000000 --- a/x11-wm/e17-module-snow/pkg-plist +++ /dev/null @@ -1,19 +0,0 @@ -lib/enlightenment/modules/snow/flake-l.png -lib/enlightenment/modules/snow/flake-m.png -lib/enlightenment/modules/snow/flake-s.png -lib/enlightenment/modules/snow/%%E17_ARCH%%/module.a -lib/enlightenment/modules/snow/%%E17_ARCH%%/module.la -lib/enlightenment/modules/snow/%%E17_ARCH%%/module.so -lib/enlightenment/modules/snow/module.desktop -lib/enlightenment/modules/snow/module.edj -lib/enlightenment/modules/snow/tree.png -%%NLS%%share/locale/eo/LC_MESSAGES/snow.mo -%%NLS%%share/locale/fi/LC_MESSAGES/snow.mo -%%NLS%%share/locale/fr/LC_MESSAGES/snow.mo -%%NLS%%share/locale/it/LC_MESSAGES/snow.mo -%%NLS%%share/locale/ja/LC_MESSAGES/snow.mo -%%NLS%%share/locale/sv/LC_MESSAGES/snow.mo -@dirrm lib/enlightenment/modules/snow/%%E17_ARCH%% -@dirrm lib/enlightenment/modules/snow -@dirrmtry lib/enlightenment/modules -@dirrmtry lib/enlightenment diff --git a/x11-wm/e17-module-uptime/Makefile b/x11-wm/e17-module-uptime/Makefile deleted file mode 100644 index 41f7cb1d2e4e..000000000000 --- a/x11-wm/e17-module-uptime/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -# New ports collection makefile for: e17-module-uptime -# Date created: 23 June 2006 -# Whom: Stanislav Sedov <ssedov@mbsd.msk.ru> -# -# $FreeBSD$ -# - -PORTNAME= uptime -PORTVERSION= 20070223 -PORTREVISION= 1 -CATEGORIES= x11 -MASTER_SITES= ftp://ftp.springdaemons.com/pub/snapshots/e17/ -PKGNAMEPREFIX= e17-module- -DISTNAME= ${PORTNAME}-${PORTVERSION} - -MAINTAINER= stas@FreeBSD.org -COMMENT= An e17 uptime and load average indicator module - -BUILD_DEPENDS= enlightenment-config:${PORTSDIR}/x11-wm/enlightenment-devel -RUN_DEPENDS= enlightenment-config:${PORTSDIR}/x11-wm/enlightenment-devel - -GNU_CONFIGURE= yes -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnometarget pkgconfig -USE_EFL= edje - -.if !defined(WITHOUT_NLS) -USE_GETTEXT= yes -PLIST_SUB+= NLS="" -.else -CONFIGURE_ARGS= --disable-nls -PLIST_SUB+= NLS="@comment " -.endif - -.include <bsd.port.mk> diff --git a/x11-wm/e17-module-uptime/distinfo b/x11-wm/e17-module-uptime/distinfo deleted file mode 100644 index a638c4ae756d..000000000000 --- a/x11-wm/e17-module-uptime/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (uptime-20070223.tar.bz2) = 0c806db8ced0ec7e6b544cd0096cbe83 -SHA256 (uptime-20070223.tar.bz2) = 96ebb7053d410ed5f56cf0359ad7d7e7c393de376b349dc1107c96355d76d2d0 -SIZE (uptime-20070223.tar.bz2) = 316556 diff --git a/x11-wm/e17-module-uptime/pkg-descr b/x11-wm/e17-module-uptime/pkg-descr deleted file mode 100644 index fc16d8c5b3b8..000000000000 --- a/x11-wm/e17-module-uptime/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -An e17 module indicating the system's current uptime, load averages and number -of active users in a configurable interval. - -Author: Matthew Mullins -WWW: http://www.enlightenment.org diff --git a/x11-wm/e17-module-uptime/pkg-plist b/x11-wm/e17-module-uptime/pkg-plist deleted file mode 100644 index 37f9e851da0e..000000000000 --- a/x11-wm/e17-module-uptime/pkg-plist +++ /dev/null @@ -1,19 +0,0 @@ -lib/enlightenment/modules/uptime/%%E17_ARCH%%/module.a -lib/enlightenment/modules/uptime/%%E17_ARCH%%/module.la -lib/enlightenment/modules/uptime/%%E17_ARCH%%/module.so -lib/enlightenment/modules/uptime/module.desktop -lib/enlightenment/modules/uptime/module.edj -lib/enlightenment/modules/uptime/uptime.edj -lib/enlightenment/modules/uptime/uptime.png -share/locale/bg/LC_MESSAGES/uptime.mo -share/locale/eo/LC_MESSAGES/uptime.mo -share/locale/fi/LC_MESSAGES/uptime.mo -share/locale/it/LC_MESSAGES/uptime.mo -share/locale/ja/LC_MESSAGES/uptime.mo -share/locale/sv/LC_MESSAGES/uptime.mo -share/nls/POSIX -share/nls/en_US.US-ASCII -@dirrmtry lib/enlightenment/modules/uptime/%%E17_ARCH%% -@dirrmtry lib/enlightenment/modules/uptime -@dirrmtry lib/enlightenment/modules -@dirrmtry lib/enlightenment diff --git a/x11-wm/e17-module-weather/Makefile b/x11-wm/e17-module-weather/Makefile deleted file mode 100644 index 376696b84436..000000000000 --- a/x11-wm/e17-module-weather/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -# New ports collection makefile for: e17-module-weather -# Date created: 23 June 2006 -# Whom: Stanislav Sedov <ssedov@mbsd.msk.ru> -# -# $FreeBSD$ -# - -PORTNAME= weather -PORTVERSION= 20070223 -PORTREVISION= 1 -PORTEPOCH= 1 -CATEGORIES= x11 -MASTER_SITES= ftp://ftp.springdaemons.com/pub/snapshots/e17/ -PKGNAMEPREFIX= e17-module- -DISTNAME= ${PORTNAME}-${PORTVERSION} - -MAINTAINER= stas@FreeBSD.org -COMMENT= An e17 weather module - -BUILD_DEPENDS= enlightenment-config:${PORTSDIR}/x11-wm/enlightenment-devel -RUN_DEPENDS= enlightenment-config:${PORTSDIR}/x11-wm/enlightenment-devel - -GNU_CONFIGURE= yes -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnometarget pkgconfig -USE_EFL= edje - -.if !defined(WITHOUT_NLS) -USE_GETTEXT= yes -PLIST_SUB+= NLS="" -.else -CONFIGURE_ARGS= --disable-nls -PLIST_SUB+= NLS="@comment " -.endif - -.include <bsd.port.mk> diff --git a/x11-wm/e17-module-weather/distinfo b/x11-wm/e17-module-weather/distinfo deleted file mode 100644 index b552ac86e987..000000000000 --- a/x11-wm/e17-module-weather/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (weather-20070223.tar.bz2) = f8b7e939ed671722639e5d1fff8ed5cf -SHA256 (weather-20070223.tar.bz2) = 796a3a1167677e1360af7d997245f7d6400b89e1b9d173e9d775325fc2c77056 -SIZE (weather-20070223.tar.bz2) = 868191 diff --git a/x11-wm/e17-module-weather/pkg-descr b/x11-wm/e17-module-weather/pkg-descr deleted file mode 100644 index 8f7a06577850..000000000000 --- a/x11-wm/e17-module-weather/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -An e17 module displaying the current weather conditions and forecast. -Features are: -- choose between simple and detailed view -- specify poll time -- display degree in Celsius or Fahrenheit -- choose the weather station from a menu or via ICAO Code. - -Author: Matthew Mullins -WWW: http://www.enlightenment.org diff --git a/x11-wm/e17-module-weather/pkg-plist b/x11-wm/e17-module-weather/pkg-plist deleted file mode 100644 index 8c41253f625e..000000000000 --- a/x11-wm/e17-module-weather/pkg-plist +++ /dev/null @@ -1,14 +0,0 @@ -lib/enlightenment/modules/weather/%%E17_ARCH%%/module.a -lib/enlightenment/modules/weather/%%E17_ARCH%%/module.la -lib/enlightenment/modules/weather/%%E17_ARCH%%/module.so -lib/enlightenment/modules/weather/module.desktop -lib/enlightenment/modules/weather/module.edj -lib/enlightenment/modules/weather/weather.edj -%%NLS%%share/locale/eo/LC_MESSAGES/weather.mo -%%NLS%%share/locale/it/LC_MESSAGES/weather.mo -%%NLS%%share/locale/ja/LC_MESSAGES/weather.mo -%%NLS%%share/locale/sv/LC_MESSAGES/weather.mo -@dirrm lib/enlightenment/modules/weather/%%E17_ARCH%% -@dirrm lib/enlightenment/modules/weather -@dirrmtry lib/enlightenment/modules -@dirrmtry lib/enlightenment diff --git a/x11-wm/e17-module-winselector/Makefile b/x11-wm/e17-module-winselector/Makefile deleted file mode 100644 index 485bf032a019..000000000000 --- a/x11-wm/e17-module-winselector/Makefile +++ /dev/null @@ -1,28 +0,0 @@ -# New ports collection makefile for: winselector -# Date created: 2006-08-15 -# Whom: Stanislav Sedov <ssedov@mbsd.msk.ru> -# -# $MBSDlabs$ -# $FreeBSD$ -# - -PORTNAME= winselector -PORTVERSION= 20070223 -PORTREVISION= 1 -CATEGORIES= x11 -MASTER_SITES= ftp://ftp.springdaemons.com/pub/snapshots/e17/ -PKGNAMEPREFIX= e17-module- - -MAINTAINER= stas@FreeBSD.org -COMMENT= An e17 module to switch between windows - -BUILD_DEPENDS= enlightenment-config:${PORTSDIR}/x11-wm/enlightenment-devel -RUN_DEPENDS= enlightenment-config:${PORTSDIR}/x11-wm/enlightenment-devel - -GNU_CONFIGURE= yes -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= pkgconfig gnometarget -USE_EFL= edje - -.include <bsd.port.mk> diff --git a/x11-wm/e17-module-winselector/distinfo b/x11-wm/e17-module-winselector/distinfo deleted file mode 100644 index 417522d22d7b..000000000000 --- a/x11-wm/e17-module-winselector/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (winselector-20070223.tar.bz2) = bfd3d02ddda2bec18a400175bf6d6b6a -SHA256 (winselector-20070223.tar.bz2) = b25e693378fd8cd64d69c8d5301b915e94b48e8d18a012850efef0ce928d0794 -SIZE (winselector-20070223.tar.bz2) = 271828 diff --git a/x11-wm/e17-module-winselector/pkg-descr b/x11-wm/e17-module-winselector/pkg-descr deleted file mode 100644 index 8e25ba30168d..000000000000 --- a/x11-wm/e17-module-winselector/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -An E17 module that enables access to all windows through a shelf button. - -Author: Viktor Kojouharov <vkojouharov@gmail.com> -WWW: http://www.enlightenment.org/ diff --git a/x11-wm/e17-module-winselector/pkg-plist b/x11-wm/e17-module-winselector/pkg-plist deleted file mode 100644 index 27724a16ee28..000000000000 --- a/x11-wm/e17-module-winselector/pkg-plist +++ /dev/null @@ -1,11 +0,0 @@ -lib/enlightenment/modules/winselector/%%E17_ARCH%%/module.a -lib/enlightenment/modules/winselector/%%E17_ARCH%%/module.la -lib/enlightenment/modules/winselector/%%E17_ARCH%%/module.so -lib/enlightenment/modules/winselector/module.desktop -lib/enlightenment/modules/winselector/module.edj -lib/enlightenment/modules/winselector/module_icon.png -lib/enlightenment/modules/winselector/winselector.edj -@dirrm lib/enlightenment/modules/winselector/%%E17_ARCH%% -@dirrm lib/enlightenment/modules/winselector -@dirrmtry lib/enlightenment/modules -@dirrmtry lib/enlightenment diff --git a/x11-wm/fvwm24/Makefile b/x11-wm/fvwm24/Makefile deleted file mode 100644 index ed0949133cc2..000000000000 --- a/x11-wm/fvwm24/Makefile +++ /dev/null @@ -1,106 +0,0 @@ -# New ports collection makefile for: Fvwm2 -# Date created: 20 Jan 1996 -# Whom: peter -# -# $FreeBSD$ -# - -PORTNAME= fvwm -PORTVERSION= 2.4.20 -PORTREVISION= 1 -CATEGORIES= x11-wm -MASTER_SITES= ftp://ftp.fvwm.org/pub/fvwm/version-2/ \ - http://www.fvwm.org/generated/icon_download/ -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} fvwm_icons.tgz -EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} - -MAINTAINER= cy@FreeBSD.org -COMMENT= Popular virtual window manager for X - -RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4 - -.if defined(WITH_STROKE) -LIB_DEPENDS+= stroke.0:${PORTSDIR}/devel/libstroke -.endif - -# Other ports this port cannot coexist with -CONFLICTS?= fvwm-1.* fvwm-2.5.* -# Other ports reference this port's Makefile -.if defined(PKGNAMESUFFIX) -LATEST_LINK= ${PORTNAME}${PKGNAMESUFFIX} -PKGNAMESUFFIX:= ${PKGNAMESUFFIX}-imlib -.else -LATEST_LINK= ${PORTNAME}2 -PKGNAMESUFFIX= -imlib -.endif -USE_GMAKE= yes -USE_XPM= yes -USE_BZIP2= yes -WANT_GNOME= yes - -.include <bsd.port.pre.mk> - -GNU_CONFIGURE= yes - -.if defined(WITH_STROKE) -CONFIGURE_ARGS+= --with-stroke --with-stroke-library=${LOCALBASE}/lib \ - --with-stroke-includes=${LOCALBASE}/include -.endif - -.if defined(WITHOUT_SESSION_MGMT) -CONFIGURE_ARGS+= --disable-sm -.endif - -.if defined(WITHOUT_SHAPE) -CONFIGURE_ARGS+= --disable-shape -.endif - -.if defined(WITH_MULTIBYTE) -CONFIGURE_ARGS+= --enable-multibyte -.endif - -PLIST_SUB+= FVWM_VERSION="${PORTVERSION}" - -MAN1= FvwmAnimate.1 FvwmAuto.1 FvwmBacker.1 FvwmBanner.1 FvwmButtons.1 \ - FvwmCommand.1 FvwmConsole.1 FvwmConsoleC.pl.1 FvwmCpp.1 FvwmDebug.1 \ - FvwmDragWell.1 FvwmEvent.1 FvwmForm.1 FvwmIconBox.1 \ - FvwmIconMan.1 FvwmIdent.1 FvwmM4.1 FvwmPager.1 FvwmRearrange.1 \ - FvwmSave.1 FvwmSaveDesk.1 FvwmScript.1 FvwmScroll.1 FvwmTaskBar.1 \ - FvwmTheme.1 FvwmWharf.1 FvwmWinList.1 fvwm-menu-desktop.1 \ - fvwm-menu-directory.1 fvwm-menu-headlines.1 fvwm-menu-xlock.1 \ - fvwm2.1 fvwm24_convert.1 fvwmbug.1 fvwmrc_convert.1 xpmroot.1 \ - fvwm-config.1 - -.if ${HAVE_GNOME:Mimlib}!="" -USE_GNOME= imlib -CONFIGURE_ARGS+= --with-gnome --enable-gnome-hints \ - --enable-gtktest --enable-imlibtest -PLIST_SUB+= GTK="" -MAN1+= FvwmGtk.1 -.else -CONFIGURE_ARGS+= --without-gnome --disable-gnome-hints \ - --disable-gtktest --disable-imlibtest \ - --with-gtk-prefix=/no/dir --with-imlib-prefix=/no/dir -PLIST_SUB+= GTK="@comment not installed: " -.endif - -post-extract: - @${MKDIR} ${WRKDIR}/icons - @${TAR} -xzf ${DISTDIR}/fvwm_icons.tgz -C ${WRKDIR}/icons - -post-patch: - @${REINPLACE_CMD} -e 's,%%LOCALBASE%%,${LOCALBASE},' \ - ${WRKSRC}/modules/FvwmM4/FvwmM4.c - -post-install: - @${INSTALL_DATA} ${WRKSRC}/sample.fvwmrc/system.fvwm2rc \ - ${PREFIX}/etc/system.fvwm2rc.dist - @if [ ! -e ${PREFIX}/etc/system.fvwm2rc ]; then \ - ${INSTALL_DATA} ${WRKSRC}/sample.fvwmrc/system.fvwm2rc \ - ${PREFIX}/etc/system.fvwm2rc; \ - fi - @${MKDIR} ${PREFIX}/share/fvwm2/pixmaps - ${INSTALL_DATA} ${WRKDIR}/icons/fvwm_icons/*.xpm \ - ${PREFIX}/share/fvwm2/pixmaps - -.include <bsd.port.post.mk> diff --git a/x11-wm/fvwm24/distinfo b/x11-wm/fvwm24/distinfo deleted file mode 100644 index 556c1c250fee..000000000000 --- a/x11-wm/fvwm24/distinfo +++ /dev/null @@ -1,6 +0,0 @@ -MD5 (fvwm-2.4.20.tar.bz2) = 70832c51fac1a150009374fc3b0069b6 -SHA256 (fvwm-2.4.20.tar.bz2) = 2831acc4a5a8bb50022657fa1b9d63eb76b26b076783da0b555d493f99591bd0 -SIZE (fvwm-2.4.20.tar.bz2) = 1426470 -MD5 (fvwm_icons.tgz) = de6c2822f1f6d43a0e1daddd0c7a8665 -SHA256 (fvwm_icons.tgz) = 728eb0c837c58439b86a33e8dd4b3edb385372bc83972a2568e6f9d7ef3442a1 -SIZE (fvwm_icons.tgz) = 363406 diff --git a/x11-wm/fvwm24/files/patch-ad b/x11-wm/fvwm24/files/patch-ad deleted file mode 100644 index 2497c3e5458d..000000000000 --- a/x11-wm/fvwm24/files/patch-ad +++ /dev/null @@ -1,11 +0,0 @@ ---- modules/FvwmCommand/FvwmCommand.c.orig Wed Jul 4 22:35:50 2001 -+++ modules/FvwmCommand/FvwmCommand.c Wed Jul 4 22:35:52 2001 -@@ -927,7 +927,7 @@ - { - printf( " %-20s x %ld, y %ld, desk %ld, max x %ld, max y %ld\n", - "new page", -- body[0], body[1], body[2], body[3], body[4]); -+ body[0], body[0], body[2], body[3], body[4]); - } - - /************************************************************************* diff --git a/x11-wm/fvwm24/files/patch-fvwm::Makefile.in b/x11-wm/fvwm24/files/patch-fvwm::Makefile.in deleted file mode 100644 index 0928c9397003..000000000000 --- a/x11-wm/fvwm24/files/patch-fvwm::Makefile.in +++ /dev/null @@ -1,15 +0,0 @@ ---- fvwm/Makefile.in.orig Sun Aug 11 08:10:41 2002 -+++ fvwm/Makefile.in Mon Sep 9 06:47:19 2002 -@@ -654,8 +654,8 @@ - echo "Warning: $(bindir)/fvwm symlink was not created" - - install-data-local: -- @$(NEW_NAME_SYMLINKS) rm -f $(DESTDIR)$(mandir)/man1/fvwm.1 || true -- @$(NEW_NAME_SYMLINKS) $(LN_S) fvwm2.1 $(DESTDIR)$(mandir)/man1/fvwm.1 || \ -+ @$(NEW_NAME_SYMLINKS) rm -f $(DESTDIR)$(mandir)/man1/fvwm.1.gz || true -+ @$(NEW_NAME_SYMLINKS) $(LN_S) fvwm2.1.gz $(DESTDIR)$(mandir)/man1/fvwm.1.gz || \ -- echo "Warning: $(mandir)/man1/fvwm.1 symlink was not created" -+ echo "Warning: $(mandir)/man1/fvwm.1.gz symlink was not created" - - # Tell versions [3.59,3.63) of GNU make to not export all variables. - # Otherwise a system limit (for SysV at least) may be exceeded. diff --git a/x11-wm/fvwm24/files/patch-modules::FvwmM4::FvwmM4.c b/x11-wm/fvwm24/files/patch-modules::FvwmM4::FvwmM4.c deleted file mode 100644 index 9a104c20023f..000000000000 --- a/x11-wm/fvwm24/files/patch-modules::FvwmM4::FvwmM4.c +++ /dev/null @@ -1,11 +0,0 @@ ---- modules/FvwmM4/FvwmM4.c.orig Wed Nov 21 17:46:27 2001 -+++ modules/FvwmM4/FvwmM4.c Wed Nov 21 17:47:06 2001 -@@ -71,7 +71,7 @@ - int m4_prefix_defines; /* Add "m4_" to the names of the defines */ - char m4_options[BUFSIZ]; /* Command line options to m4 */ - char m4_outfile[BUFSIZ] = ""; /* The output filename for m4 */ --char *m4_prog = "m4"; /* Name of the m4 program */ -+char *m4_prog = "%%LOCALBASE%%/bin/gm4"; /* Name of the m4 program */ - int m4_default_quotes; /* Use default m4 quotes */ - char *m4_startquote = "`"; /* Left quote characters for m4 */ - char *m4_endquote = "'"; /* Right quote characters for m4 */ diff --git a/x11-wm/fvwm24/files/patch-utils::Makefile.in b/x11-wm/fvwm24/files/patch-utils::Makefile.in deleted file mode 100644 index 2db2962389e3..000000000000 --- a/x11-wm/fvwm24/files/patch-utils::Makefile.in +++ /dev/null @@ -1,13 +0,0 @@ ---- utils/Makefile.in.orig Sun Aug 11 08:10:50 2002 -+++ utils/Makefile.in Mon Sep 9 06:46:39 2002 -@@ -478,8 +478,8 @@ - echo "Warning: $(bindir)/fvwm-root symlink was not created" - - install-data-local: -- @$(NEW_NAME_SYMLINKS) rm -f $(DESTDIR)$(mandir)/man1/fvwm-root.1 || true -- @$(NEW_NAME_SYMLINKS) $(LN_S) xpmroot.1 $(DESTDIR)$(mandir)/man1/fvwm-root.1 || \ -+ @$(NEW_NAME_SYMLINKS) rm -f $(DESTDIR)$(mandir)/man1/fvwm-root.1.gz || true -+ @$(NEW_NAME_SYMLINKS) $(LN_S) xpmroot.1.gz $(DESTDIR)$(mandir)/man1/fvwm-root.1.gz || \ - echo "Warning: $(mandir)/man1/fvwm-root.1 symlink was not created" - - # Tell versions [3.59,3.63) of GNU make to not export all variables. diff --git a/x11-wm/fvwm24/pkg-descr b/x11-wm/fvwm24/pkg-descr deleted file mode 100644 index e43494a36477..000000000000 --- a/x11-wm/fvwm24/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -Fvwm is a very famous window manager for X, which provides a -virtual/multiple disjoint desktop, a 3-D look for windows decorations, -shaped/color icons. It gives a very good emulation of mwm. A nice -button-bar can be used to provide convenient access to frequently used -functions or programs. - -WWW: http://www.fvwm.org/ - -- Pete -petef@databits.net diff --git a/x11-wm/fvwm24/pkg-plist b/x11-wm/fvwm24/pkg-plist deleted file mode 100644 index ecf16ab08392..000000000000 --- a/x11-wm/fvwm24/pkg-plist +++ /dev/null @@ -1,412 +0,0 @@ -bin/FvwmCommand -bin/fvwm-config -bin/fvwm-menu-desktop -bin/fvwm-menu-directory -bin/fvwm-menu-headlines -bin/fvwm-menu-xlock -bin/fvwm2 -bin/fvwm -bin/fvwm-root -bin/fvwm24_convert -bin/fvwmbug -bin/xpmroot -@unexec if cmp -s %D/etc/system.fvwm2rc %D/etc/system.fvwm2rc.dist; then rm -f %D/etc/system.fvwm2rc; fi -etc/system.fvwm2rc.dist -@exec [ -f %B/system.fvwm2rc ] || cp %B/%f %B/system.fvwm2rc -libexec/fvwm/%%FVWM_VERSION%%/FvwmAnimate -libexec/fvwm/%%FVWM_VERSION%%/FvwmAudio -libexec/fvwm/%%FVWM_VERSION%%/FvwmAuto -libexec/fvwm/%%FVWM_VERSION%%/FvwmBacker -libexec/fvwm/%%FVWM_VERSION%%/FvwmBanner -libexec/fvwm/%%FVWM_VERSION%%/FvwmButtons -libexec/fvwm/%%FVWM_VERSION%%/FvwmCascade -libexec/fvwm/%%FVWM_VERSION%%/FvwmCommand.pm -libexec/fvwm/%%FVWM_VERSION%%/FvwmCommand.sh -libexec/fvwm/%%FVWM_VERSION%%/FvwmCommandS -libexec/fvwm/%%FVWM_VERSION%%/FvwmConsole -libexec/fvwm/%%FVWM_VERSION%%/FvwmConsoleC -libexec/fvwm/%%FVWM_VERSION%%/FvwmConsoleC.pl -libexec/fvwm/%%FVWM_VERSION%%/FvwmCpp -libexec/fvwm/%%FVWM_VERSION%%/FvwmDebug -libexec/fvwm/%%FVWM_VERSION%%/FvwmDragWell -libexec/fvwm/%%FVWM_VERSION%%/FvwmEvent -libexec/fvwm/%%FVWM_VERSION%%/FvwmForm -%%GTK%%libexec/fvwm/%%FVWM_VERSION%%/FvwmGtk -libexec/fvwm/%%FVWM_VERSION%%/FvwmIconBox -libexec/fvwm/%%FVWM_VERSION%%/FvwmIconMan -libexec/fvwm/%%FVWM_VERSION%%/FvwmIdent -libexec/fvwm/%%FVWM_VERSION%%/FvwmM4 -libexec/fvwm/%%FVWM_VERSION%%/FvwmPager -libexec/fvwm/%%FVWM_VERSION%%/FvwmRearrange -libexec/fvwm/%%FVWM_VERSION%%/FvwmSave -libexec/fvwm/%%FVWM_VERSION%%/FvwmSaveDesk -libexec/fvwm/%%FVWM_VERSION%%/FvwmScript -libexec/fvwm/%%FVWM_VERSION%%/FvwmScroll -libexec/fvwm/%%FVWM_VERSION%%/FvwmTalk -libexec/fvwm/%%FVWM_VERSION%%/FvwmTaskBar -libexec/fvwm/%%FVWM_VERSION%%/FvwmTheme -libexec/fvwm/%%FVWM_VERSION%%/FvwmTile -libexec/fvwm/%%FVWM_VERSION%%/FvwmWharf -libexec/fvwm/%%FVWM_VERSION%%/FvwmWinList -@comment The following are here because they are symlinks -man/man1/fvwm.1.gz -man/man1/fvwm-root.1.gz -@comment End of symlink list -share/fvwm2/pixmaps/Jlock.xpm -share/fvwm2/pixmaps/Jnews.xpm -share/fvwm2/pixmaps/Jrecycle.xpm -share/fvwm2/pixmaps/Jxlock.xpm -share/fvwm2/pixmaps/Monitor.xpm -share/fvwm2/pixmaps/Mosaic.xpm -share/fvwm2/pixmaps/Xfm.xpm -share/fvwm2/pixmaps/arrdown2.xpm -share/fvwm2/pixmaps/arrows2.xpm -share/fvwm2/pixmaps/arrup2.xpm -share/fvwm2/pixmaps/banner.fvwm_blue_cursive.xpm -share/fvwm2/pixmaps/banner.fvwm_bracket.xpm -share/fvwm2/pixmaps/banner.fvwm_cat_thing.xpm -share/fvwm2/pixmaps/banner.fvwm_red_3D.xpm -share/fvwm2/pixmaps/banner.fvwm_red_cursive.xpm -share/fvwm2/pixmaps/banner.fvwm_tiger.xpm -share/fvwm2/pixmaps/banner.fvwm_tiger_tail.xpm -share/fvwm2/pixmaps/bckgnd1.xpm -share/fvwm2/pixmaps/bckgnd3.xpm -share/fvwm2/pixmaps/bell.xpm -share/fvwm2/pixmaps/bomb.xpm -share/fvwm2/pixmaps/button-close.xpm -share/fvwm2/pixmaps/button-horiz.xpm -share/fvwm2/pixmaps/button-max.xpm -share/fvwm2/pixmaps/button-vert.xpm -share/fvwm2/pixmaps/button.xpm -share/fvwm2/pixmaps/clamp.xpm -share/fvwm2/pixmaps/date.xpm -share/fvwm2/pixmaps/datebook.xpm -share/fvwm2/pixmaps/default.xpm -share/fvwm2/pixmaps/desk.xpm -share/fvwm2/pixmaps/desktop.xpm -share/fvwm2/pixmaps/dialog_box.xpm -share/fvwm2/pixmaps/display.xpm -share/fvwm2/pixmaps/documents.xpm -share/fvwm2/pixmaps/doomface.xpm -share/fvwm2/pixmaps/editres.xpm -share/fvwm2/pixmaps/eps.xpm -share/fvwm2/pixmaps/exit.xpm -share/fvwm2/pixmaps/find1.xpm -share/fvwm2/pixmaps/flow_chart.xpm -share/fvwm2/pixmaps/folder.xpm -share/fvwm2/pixmaps/folder2.xpm -share/fvwm2/pixmaps/folders.xpm -share/fvwm2/pixmaps/fvwm.xpm -share/fvwm2/pixmaps/fvwm2.xpm -share/fvwm2/pixmaps/fvwm2_big.xpm -share/fvwm2/pixmaps/fvwm3.xpm -share/fvwm2/pixmaps/gimp.xpm -share/fvwm2/pixmaps/gnu-animal.xpm -share/fvwm2/pixmaps/graphs.xpm -share/fvwm2/pixmaps/gv.xpm -share/fvwm2/pixmaps/help.xpm -share/fvwm2/pixmaps/jx.xpm -share/fvwm2/pixmaps/keyboard.xpm -share/fvwm2/pixmaps/lemacs.xpm -share/fvwm2/pixmaps/mag_glass.xpm -share/fvwm2/pixmaps/mail1.xpm -share/fvwm2/pixmaps/mail2.xpm -share/fvwm2/pixmaps/map.xpm -share/fvwm2/pixmaps/math4.xpm -share/fvwm2/pixmaps/menu.xpm -share/fvwm2/pixmaps/mini.arch.xpm -share/fvwm2/pixmaps/mini.audiovol.xpm -share/fvwm2/pixmaps/mini.audiovol2.xpm -share/fvwm2/pixmaps/mini.ball.xpm -share/fvwm2/pixmaps/mini.ball2.xpm -share/fvwm2/pixmaps/mini.bball.xpm -share/fvwm2/pixmaps/mini.blah.xpm -share/fvwm2/pixmaps/mini.bomb.xpm -share/fvwm2/pixmaps/mini.bomb2.xpm -share/fvwm2/pixmaps/mini.book1.xpm -share/fvwm2/pixmaps/mini.book2.xpm -share/fvwm2/pixmaps/mini.book3.xpm -share/fvwm2/pixmaps/mini.book4.xpm -share/fvwm2/pixmaps/mini.books.xpm -share/fvwm2/pixmaps/mini.briefcase.xpm -share/fvwm2/pixmaps/mini.bug1.xpm -share/fvwm2/pixmaps/mini.bug2.xpm -share/fvwm2/pixmaps/mini.bx2.xpm -share/fvwm2/pixmaps/mini.calc.xpm -share/fvwm2/pixmaps/mini.calc2.xpm -share/fvwm2/pixmaps/mini.calendar.xpm -share/fvwm2/pixmaps/mini.camera.xpm -share/fvwm2/pixmaps/mini.cat.xpm -share/fvwm2/pixmaps/mini.cave.xpm -share/fvwm2/pixmaps/mini.cd.xpm -share/fvwm2/pixmaps/mini.cdlabel.xpm -share/fvwm2/pixmaps/mini.chart.xpm -share/fvwm2/pixmaps/mini.checkmark.xpm -share/fvwm2/pixmaps/mini.chinese.xpm -share/fvwm2/pixmaps/mini.clipboard.xpm -share/fvwm2/pixmaps/mini.clock.xpm -share/fvwm2/pixmaps/mini.clock2.xpm -share/fvwm2/pixmaps/mini.colors.xpm -share/fvwm2/pixmaps/mini.connect.xpm -share/fvwm2/pixmaps/mini.crosbone.xpm -share/fvwm2/pixmaps/mini.cross.xpm -share/fvwm2/pixmaps/mini.cut.xpm -share/fvwm2/pixmaps/mini.delete.xpm -share/fvwm2/pixmaps/mini.desktop.xpm -share/fvwm2/pixmaps/mini.destroy.xpm -share/fvwm2/pixmaps/mini.diff.xpm -share/fvwm2/pixmaps/mini.directory.xpm -share/fvwm2/pixmaps/mini.dirlink.xpm -share/fvwm2/pixmaps/mini.diskette.xpm -share/fvwm2/pixmaps/mini.display.xpm -share/fvwm2/pixmaps/mini.doc.xpm -share/fvwm2/pixmaps/mini.doc1.xpm -share/fvwm2/pixmaps/mini.dog.xpm -share/fvwm2/pixmaps/mini.ear.xpm -share/fvwm2/pixmaps/mini.edit.xpm -share/fvwm2/pixmaps/mini.espada.xpm -share/fvwm2/pixmaps/mini.excl.xpm -share/fvwm2/pixmaps/mini.exclam.xpm -share/fvwm2/pixmaps/mini.exit.xpm -share/fvwm2/pixmaps/mini.exp.xpm -share/fvwm2/pixmaps/mini.eye.xpm -share/fvwm2/pixmaps/mini.eye2.xpm -share/fvwm2/pixmaps/mini.eyes.xpm -share/fvwm2/pixmaps/mini.f1.xpm -share/fvwm2/pixmaps/mini.fax.xpm -share/fvwm2/pixmaps/mini.fdisk.xpm -share/fvwm2/pixmaps/mini.file.xpm -share/fvwm2/pixmaps/mini.filelink.xpm -share/fvwm2/pixmaps/mini.filemgr.xpm -share/fvwm2/pixmaps/mini.floppy.xpm -share/fvwm2/pixmaps/mini.folder.xpm -share/fvwm2/pixmaps/mini.font.xpm -share/fvwm2/pixmaps/mini.fractal.xpm -share/fvwm2/pixmaps/mini.frame.xpm -share/fvwm2/pixmaps/mini.ftp.xpm -share/fvwm2/pixmaps/mini.fvwm.xpm -share/fvwm2/pixmaps/mini.gball.xpm -share/fvwm2/pixmaps/mini.gimp.xpm -share/fvwm2/pixmaps/mini.gnome.xpm -share/fvwm2/pixmaps/mini.gnu.xpm -share/fvwm2/pixmaps/mini.go.xpm -share/fvwm2/pixmaps/mini.gopher.xpm -share/fvwm2/pixmaps/mini.graph.xpm -share/fvwm2/pixmaps/mini.graph2.xpm -share/fvwm2/pixmaps/mini.gv.xpm -share/fvwm2/pixmaps/mini.hammer.xpm -share/fvwm2/pixmaps/mini.happy.xpm -share/fvwm2/pixmaps/mini.hdisk.xpm -share/fvwm2/pixmaps/mini.heart.xpm -share/fvwm2/pixmaps/mini.hex.xpm -share/fvwm2/pixmaps/mini.hextris.xpm -share/fvwm2/pixmaps/mini.ibm.xpm -share/fvwm2/pixmaps/mini.iconify.xpm -share/fvwm2/pixmaps/mini.iconify1.xpm -share/fvwm2/pixmaps/mini.icons.xpm -share/fvwm2/pixmaps/mini.kde.xpm -share/fvwm2/pixmaps/mini.keyboard.xpm -share/fvwm2/pixmaps/mini.keys.xpm -share/fvwm2/pixmaps/mini.letter.xpm -share/fvwm2/pixmaps/mini.line.xpm -share/fvwm2/pixmaps/mini.lock.xpm -share/fvwm2/pixmaps/mini.lower.xpm -share/fvwm2/pixmaps/mini.lower2.xpm -share/fvwm2/pixmaps/mini.lower3.xpm -share/fvwm2/pixmaps/mini.mag.xpm -share/fvwm2/pixmaps/mini.mail.xpm -share/fvwm2/pixmaps/mini.mail2.xpm -share/fvwm2/pixmaps/mini.manual.xpm -share/fvwm2/pixmaps/mini.max1.xpm -share/fvwm2/pixmaps/mini.maximize-horiz.xpm -share/fvwm2/pixmaps/mini.maximize-horiz1.xpm -share/fvwm2/pixmaps/mini.maximize-vert.xpm -share/fvwm2/pixmaps/mini.maximize-vert1.xpm -share/fvwm2/pixmaps/mini.maximize.xpm -share/fvwm2/pixmaps/mini.maximize1.xpm -share/fvwm2/pixmaps/mini.maximize2.xpm -share/fvwm2/pixmaps/mini.maze.xpm -share/fvwm2/pixmaps/mini.modules.xpm -share/fvwm2/pixmaps/mini.monitor.xpm -share/fvwm2/pixmaps/mini.mouse.xpm -share/fvwm2/pixmaps/mini.move.xpm -share/fvwm2/pixmaps/mini.move1.xpm -share/fvwm2/pixmaps/mini.move2.xpm -share/fvwm2/pixmaps/mini.move3.xpm -share/fvwm2/pixmaps/mini.mwm.xpm -share/fvwm2/pixmaps/mini.netscape.xpm -share/fvwm2/pixmaps/mini.news.xpm -share/fvwm2/pixmaps/mini.nscape.xpm -share/fvwm2/pixmaps/mini.ofolder.xpm -share/fvwm2/pixmaps/mini.olwm.xpm -share/fvwm2/pixmaps/mini.pager.xpm -share/fvwm2/pixmaps/mini.paint.xpm -share/fvwm2/pixmaps/mini.paint2.xpm -share/fvwm2/pixmaps/mini.palette.xpm -share/fvwm2/pixmaps/mini.paper.xpm -share/fvwm2/pixmaps/mini.pdf.xpm -share/fvwm2/pixmaps/mini.pencil.xpm -share/fvwm2/pixmaps/mini.penguin.xpm -share/fvwm2/pixmaps/mini.perf.xpm -share/fvwm2/pixmaps/mini.picture.xpm -share/fvwm2/pixmaps/mini.question.xpm -share/fvwm2/pixmaps/mini.rainbow.xpm -share/fvwm2/pixmaps/mini.raise.xpm -share/fvwm2/pixmaps/mini.raise2.xpm -share/fvwm2/pixmaps/mini.raise3.xpm -share/fvwm2/pixmaps/mini.ray.xpm -share/fvwm2/pixmaps/mini.rball.xpm -share/fvwm2/pixmaps/mini.refresh.xpm -share/fvwm2/pixmaps/mini.resize.xpm -share/fvwm2/pixmaps/mini.resize2.xpm -share/fvwm2/pixmaps/mini.resize3.xpm -share/fvwm2/pixmaps/mini.resize4.xpm -share/fvwm2/pixmaps/mini.roach.xpm -share/fvwm2/pixmaps/mini.run.xpm -share/fvwm2/pixmaps/mini.sh.xpm -share/fvwm2/pixmaps/mini.sh1.xpm -share/fvwm2/pixmaps/mini.shade1.xpm -share/fvwm2/pixmaps/mini.slon.xpm -share/fvwm2/pixmaps/mini.sound.xpm -share/fvwm2/pixmaps/mini.start.xpm -share/fvwm2/pixmaps/mini.stick.xpm -share/fvwm2/pixmaps/mini.stick1.xpm -share/fvwm2/pixmaps/mini.stick2.xpm -share/fvwm2/pixmaps/mini.stickpressed.xpm -share/fvwm2/pixmaps/mini.stop.xpm -share/fvwm2/pixmaps/mini.telnet.xpm -share/fvwm2/pixmaps/mini.term.xpm -share/fvwm2/pixmaps/mini.term2.xpm -share/fvwm2/pixmaps/mini.tetris.xpm -share/fvwm2/pixmaps/mini.trebol.xpm -share/fvwm2/pixmaps/mini.turn.xpm -share/fvwm2/pixmaps/mini.twm.xpm -share/fvwm2/pixmaps/mini.winXX-close.xpm -share/fvwm2/pixmaps/mini.winXX-maximize.xpm -share/fvwm2/pixmaps/mini.winXX-minimize.xpm -share/fvwm2/pixmaps/mini.winXX-normalize.xpm -share/fvwm2/pixmaps/mini.winXX-sysmenu.xpm -share/fvwm2/pixmaps/mini.window.xpm -share/fvwm2/pixmaps/mini.window2.xpm -share/fvwm2/pixmaps/mini.windows.xpm -share/fvwm2/pixmaps/mini.windowshade.xpm -share/fvwm2/pixmaps/mini.x.xpm -share/fvwm2/pixmaps/mini.x2.xpm -share/fvwm2/pixmaps/mini.xaniroc.xpm -share/fvwm2/pixmaps/mini.xarchie.xpm -share/fvwm2/pixmaps/mini.xbiff.xpm -share/fvwm2/pixmaps/mini.xboing.xpm -share/fvwm2/pixmaps/mini.xfig.xpm -share/fvwm2/pixmaps/mini.xjewel.xpm -share/fvwm2/pixmaps/mini.xkeycaps.xpm -share/fvwm2/pixmaps/mini.xlander.xpm -share/fvwm2/pixmaps/mini.xlock.xpm -share/fvwm2/pixmaps/mini.xmag.xpm -share/fvwm2/pixmaps/mini.xmahjongg.xpm -share/fvwm2/pixmaps/mini.xman.xpm -share/fvwm2/pixmaps/mini.xpaint.xpm -share/fvwm2/pixmaps/mini.xsnow.xpm -share/fvwm2/pixmaps/mini.xterm.xpm -share/fvwm2/pixmaps/mini.xv.xpm -share/fvwm2/pixmaps/mini.zircon.xpm -share/fvwm2/pixmaps/mini.zoom.xpm -share/fvwm2/pixmaps/modules.xpm -share/fvwm2/pixmaps/nscape.xpm -share/fvwm2/pixmaps/page.xpm -share/fvwm2/pixmaps/page2.xpm -share/fvwm2/pixmaps/pointer.xpm -share/fvwm2/pixmaps/programs.xpm -share/fvwm2/pixmaps/ps.xpm -share/fvwm2/pixmaps/question.xpm -share/fvwm2/pixmaps/rbomb.xpm -share/fvwm2/pixmaps/rbomb2.xpm -share/fvwm2/pixmaps/rcalc.xpm -share/fvwm2/pixmaps/rcalc2.xpm -share/fvwm2/pixmaps/resize.rainbow.xpm -share/fvwm2/pixmaps/rterm.xpm -share/fvwm2/pixmaps/rterm2.xpm -share/fvwm2/pixmaps/run.xpm -share/fvwm2/pixmaps/screen.xpm -share/fvwm2/pixmaps/settings.xpm -share/fvwm2/pixmaps/shells.xpm -share/fvwm2/pixmaps/shutdown.xpm -share/fvwm2/pixmaps/shutdown2.xpm -share/fvwm2/pixmaps/side.fvwm2.xpm -share/fvwm2/pixmaps/side.fvwm2_1.xpm -share/fvwm2/pixmaps/side.fvwm2_2.xpm -share/fvwm2/pixmaps/side.utilities.xpm -share/fvwm2/pixmaps/small.Paint2.xpm -share/fvwm2/pixmaps/small.Shell2.xpm -share/fvwm2/pixmaps/small.exit.xpm -share/fvwm2/pixmaps/small.lock.xpm -share/fvwm2/pixmaps/small.man.next.xpm -share/fvwm2/pixmaps/small.note.next.xpm -share/fvwm2/pixmaps/small.tools2_3d.xpm -share/fvwm2/pixmaps/term.xpm -share/fvwm2/pixmaps/textedit.xpm -share/fvwm2/pixmaps/tiff2.xpm -share/fvwm2/pixmaps/toolbox.xpm -share/fvwm2/pixmaps/unknown1.xpm -share/fvwm2/pixmaps/wierd_page3.xpm -share/fvwm2/pixmaps/window.xpm -share/fvwm2/pixmaps/word_processor.xpm -share/fvwm2/pixmaps/wterm.xpm -share/fvwm2/pixmaps/xcalc.xpm -share/fvwm2/pixmaps/xemacs.xpm -share/fvwm2/pixmaps/xlock.xpm -share/fvwm2/pixmaps/xman.xpm -share/fvwm2/pixmaps/xpaint.xpm -share/fvwm2/pixmaps/xterm-axp.xpm -share/fvwm2/pixmaps/xterm-blank.xpm -share/fvwm2/pixmaps/xterm-bsd.xpm -share/fvwm2/pixmaps/xterm-dec.xpm -share/fvwm2/pixmaps/xterm-linux.xpm -share/fvwm2/pixmaps/xterm-sgi.xpm -share/fvwm2/pixmaps/xterm-sol.xpm -share/fvwm2/pixmaps/xterm-sun.xpm -share/fvwm2/pixmaps/xterm.xpm -share/fvwm2/pixmaps/xv.xpm -share/fvwm2/pixmaps/xv2.xpm -share/fvwm2/pixmaps/xview.xpm -share/fvwm/ConfigFvwmBacker -share/fvwm/ConfigFvwmButtons -share/fvwm/ConfigFvwmDefaults -share/fvwm/ConfigFvwmIconBox -share/fvwm/ConfigFvwmIconMan -share/fvwm/ConfigFvwmIdent -share/fvwm/ConfigFvwmPager -share/fvwm/ConfigFvwmScroll -share/fvwm/ConfigFvwmSetup -share/fvwm/ConfigFvwmTaskBar -share/fvwm/ConfigFvwmWinList -share/fvwm/FvwmForm-Capture -share/fvwm/FvwmForm-Form -share/fvwm/FvwmForm-QuitVerify -share/fvwm/FvwmForm-Rlogin -share/fvwm/FvwmForm-RootCursor -share/fvwm/FvwmForm-Setup -share/fvwm/FvwmForm-Talk -share/fvwm/FvwmForm-TalkHelp -share/fvwm/FvwmScript-BaseConfig -share/fvwm/FvwmScript-BellSetup -share/fvwm/FvwmScript-Buttons -share/fvwm/FvwmScript-Colorset -share/fvwm/FvwmScript-ComExample -share/fvwm/FvwmScript-Date -share/fvwm/FvwmScript-FileBrowser -share/fvwm/FvwmScript-Find -share/fvwm/FvwmScript-KeyboardSetup -share/fvwm/FvwmScript-PointerSetup -share/fvwm/FvwmScript-Quit -share/fvwm/FvwmScript-ScreenDump -share/fvwm/FvwmScript-ScreenSetup -share/fvwm/FvwmScript-Setup95 -share/fvwm/FvwmScript-WidgetDemo -share/fvwm/fvwm-script-ComExample.pl -share/fvwm/fvwm-script-setup95.pl -share/fvwm/system.fvwm2rc-sample-95 -@dirrm share/fvwm -@dirrm share/fvwm2/pixmaps -@dirrm share/fvwm2 -@dirrm libexec/fvwm/%%FVWM_VERSION%% -@dirrm libexec/fvwm diff --git a/x11-wm/hs-xmonad/Makefile b/x11-wm/hs-xmonad/Makefile deleted file mode 100644 index d5f5b73ae58c..000000000000 --- a/x11-wm/hs-xmonad/Makefile +++ /dev/null @@ -1,42 +0,0 @@ -# New ports collection makefile for: xmonad -# Date created: 2007-10-25 -# Whom: Matthieu Guegan <matt.guegan@free.fr> -# -# $FreeBSD$ -# - -PORTNAME= xmonad -PORTVERSION= 0.4 -CATEGORIES= x11-wm haskell -MASTER_SITES= http://hackage.haskell.org/packages/archive/xmonad/${PORTVERSION}/ - -MAINTAINER= matt.guegan@free.fr -COMMENT= Xmonad is a minimalist and tiling window manager for X - -USE_XLIB= yes - -CABALCMD= ${LOCALBASE}/bin/runghc Setup.lhs - -.include <bsd.port.pre.mk> - -BUILD_DEPENDS+= ghc:${PORTSDIR}/lang/ghc \ - hs-x11-extras-ghc>=0.4:${PORTSDIR}/x11/hs-x11-extras-ghc -LIB_DEPENDS+= gmp.7:${PORTSDIR}/math/libgmp4 - -PLIST_FILES= bin/xmonad -PORTDOCS= LICENSE -MAN1= xmonad.1 - -do-configure: - cd ${WRKSRC} && ${CABALCMD} configure --ghc --prefix=${PREFIX} - -do-build: - cd ${WRKSRC} && ${CABALCMD} build - -do-install: - @cd ${WRKSRC} && ${CABALCMD} install - ${INSTALL_MAN} ${WRKSRC}/man/xmonad.1 ${MAN1PREFIX}/man/man1 - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/LICENSE ${DOCSDIR} - -.include <bsd.port.post.mk> diff --git a/x11-wm/hs-xmonad/distinfo b/x11-wm/hs-xmonad/distinfo deleted file mode 100644 index 3d7ece96fc6d..000000000000 --- a/x11-wm/hs-xmonad/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (xmonad-0.4.tar.gz) = 5d24c556f7c8f04954721b391fd79a13 -SHA256 (xmonad-0.4.tar.gz) = 978fb99e40786070307992fde78fe252b96e834740fb983b94c3a395c45467bb -SIZE (xmonad-0.4.tar.gz) = 41025 diff --git a/x11-wm/hs-xmonad/pkg-descr b/x11-wm/hs-xmonad/pkg-descr deleted file mode 100644 index a144dc5c9e7e..000000000000 --- a/x11-wm/hs-xmonad/pkg-descr +++ /dev/null @@ -1,16 +0,0 @@ -XMonad is a tiling window manager written in Haskell for X. - -Features : - * Very stable, fast, small and simple. - * Automatic window tiling and management - * First class keyboard support: a mouse is unnecessary - * Full support for tiling windows on multi-head displays - * Full support for floating windows - * XRandR support to rotate, add or remove monitors - * Per-workspace layout algorithms - * Per-screens custom status bars - * Easy, powerful customisation and reconfiguration - * Large extension library - * Extensive documentation and support for hacking - -WWW: http://www.xmonad.org/ diff --git a/x11-wm/ion3/Makefile b/x11-wm/ion3/Makefile deleted file mode 100644 index 7f140e932064..000000000000 --- a/x11-wm/ion3/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -# New ports collection makefile for: ion-2 -# Date created: 20 August 2003 -# Whom: anthony.ginepro@laposte.net -# Original ion port: ricci@cs.utah.edu -# -# $FreeBSD$ -# - -PORTNAME= ion-2 -PORTVERSION= 20040729 -PORTREVISION= 2 -CATEGORIES= x11-wm -MASTER_SITES= http://modeemi.fi/~tuomov/dl/ - -MAINTAINER= ports@FreeBSD.org -COMMENT= A tiling tabbed window manager - -CONFLICTS= ion-2002* ion-devel-* pwm-* - -USE_X_PREFIX= yes -USE_AUTOTOOLS= libtool:15 libltdl:15 -USE_LUA= 5.0 -USE_GMAKE= yes -MAKE_ENV= DEFINES="${IONDEFINES}" -GNU_CONFIGURE= yes - -.if !defined(WITH_MULTIBYTE) -IONDEFINES+= -DCF_NO_MB_SUPPORT -.endif - -MAN1= ion.1 pwm.1 -DOCSDIR= share/doc/ion - -# NO, I don't want to use configure but ion's author system.mk -do-configure: - -.include <bsd.port.mk> diff --git a/x11-wm/ion3/distinfo b/x11-wm/ion3/distinfo deleted file mode 100644 index 9b911ec5512d..000000000000 --- a/x11-wm/ion3/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (ion-2-20040729.tar.gz) = d7d98baa41635c1989e423adf76eb2ac -SHA256 (ion-2-20040729.tar.gz) = 8c8b7ef0cc6a98d409bde1b9b3f5159a2e632b4e78768e13cca0da174649a162 -SIZE (ion-2-20040729.tar.gz) = 399367 diff --git a/x11-wm/ion3/files/patch-rules.mk b/x11-wm/ion3/files/patch-rules.mk deleted file mode 100644 index 5e7292efdd52..000000000000 --- a/x11-wm/ion3/files/patch-rules.mk +++ /dev/null @@ -1,10 +0,0 @@ ---- ./rules.mk.orig Thu Jul 29 00:10:32 2004 -+++ ./rules.mk Mon Jul 17 21:50:19 2006 -@@ -91,6 +91,7 @@ - module_install: - $(INSTALLDIR) $(MODULEDIR) - $(LIBTOOL) --mode=install $(INSTALL) -s -m $(BIN_MODE) $(MODULE).la $(MODULEDIR) -+ $(INSTALL) -m $(BIN_MODE) $(MODULE).la $(MODULEDIR) - - clean_objs: - $(RM) -f $(OBJS) diff --git a/x11-wm/ion3/files/patch-system.mk b/x11-wm/ion3/files/patch-system.mk deleted file mode 100644 index 80061f5ff69e..000000000000 --- a/x11-wm/ion3/files/patch-system.mk +++ /dev/null @@ -1,100 +0,0 @@ ---- ./system.mk.orig Thu Jul 29 00:10:32 2004 -+++ ./system.mk Mon Jul 17 21:53:01 2006 -@@ -7,7 +7,7 @@ - ## Installation paths - ## - --PREFIX=/usr/local -+#PREFIX=/usr/local - - # Unless you are creating a package conforming to some OS's standards, you - # probably do not want to modify the following directories: -@@ -19,7 +19,7 @@ - # Some .lua files and ion-* shell scripts - SHAREDIR=$(PREFIX)/share/ion - # Manual pages --MANDIR=$(PREFIX)/share/man -+MANDIR=$(PREFIX)/man - # Some documents - DOCDIR=$(PREFIX)/share/doc/ion - # Nothing at the moment -@@ -42,11 +42,11 @@ - # libtool because even more-recent-than-libtool-1.4.3 releases of those - # OSes only have an _ancient_ 1.3.x libtool that _will_ _not_ _work even - # though a lot of libltdl-using apps require 1.4.3. --LIBTOOL=libtool -+LIBTOOL=$(LOCALBASE)/bin/libtool --tag=CC - - # Settings for compiling and linking to ltdl --LTDL_INCLUDES= --LTDL_LIBS=-lltdl -+LTDL_INCLUDES=-I$(LOCALBASE)/include -+LTDL_LIBS=-L$(LOCALBASE)/lib -lltdl - - # The following should do it if you have manually installed libtool 1.5 in - # $(LIBTOOLDIR). -@@ -72,11 +72,11 @@ - - # If you have installed Lua 5.0 from the official tarball without changing - # paths, this should do it. --LUA_DIR=/usr/local --LUA_LIBS = -L$(LUA_DIR)/lib -R$(LUA_DIR)/lib -llua -llualib --LUA_INCLUDES = -I$(LUA_DIR)/include --LUA=$(LUA_DIR)/bin/lua --LUAC=$(LUA_DIR)/bin/luac -+LUA_DIR=$(LOCALBASE) -+LUA_LIBS = -L$(LUA_LIBDIR) -R$(LUA_LIBDIR) -llua -llualib -+LUA_INCLUDES = -I$(LUA_INCDIR) -+LUA=$(LUA_BINDIR)/lua -+LUAC=$(LUA_BINDIR)/luac - - # If you are using the Debian packages, the following settings should be - # what you want. -@@ -90,7 +90,7 @@ - ## X libraries, includes and options - ## - --X11_PREFIX=/usr/X11R6 -+X11_PREFIX=$(X11BASE) - # SunOS/Solaris - #X11_PREFIX=/usr/openwin - -@@ -119,7 +119,7 @@ - # asprintf and vasprintf in the c library. (gnu libc has.) - # If HAS_SYSTEM_ASPRINTF is not defined, an implementation - # in sprintf_2.2/ is used. --#HAS_SYSTEM_ASPRINTF=1 -+HAS_SYSTEM_ASPRINTF=1 - - - # If you're on an archaic system (such as relatively recent *BSD releases) -@@ -132,16 +132,16 @@ - ## C compiler - ## - --CC=gcc -+CC?=gcc - - # Same as '-Wall -pedantic' without '-Wunused' as callbacks often - # have unused variables. - WARN= -W -Wimplicit -Wreturn-type -Wswitch -Wcomment \ - -Wtrigraphs -Wformat -Wchar-subscripts \ -- -Wparentheses -pedantic -Wuninitialized -+ -Wparentheses -Wuninitialized - --CFLAGS=-g -Os $(WARN) $(DEFINES) $(EXTRA_INCLUDES) $(INCLUDES) --LDFLAGS=-g -Os $(EXTRA_LIBS) $(LIBS) -+CFLAGS+= $(WARN) $(DEFINES) $(EXTRA_INCLUDES) $(INCLUDES) -+LDFLAGS= $(EXTRA_LIBS) $(LIBS) - - # The following options are mainly for development use and can be used - # to check that the code seems to conform to some standards. Depending -@@ -154,7 +154,7 @@ - #POSIX_SOURCE=-D_POSIX_SOURCE - - # Most systems --#XOPEN_SOURCE=-D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED -+XOPEN_SOURCE=-D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED - # SunOS, (Irix) - #XOPEN_SOURCE=-D__EXTENSIONS__ - diff --git a/x11-wm/ion3/pkg-descr b/x11-wm/ion3/pkg-descr deleted file mode 100644 index 20d61b9ef91b..000000000000 --- a/x11-wm/ion3/pkg-descr +++ /dev/null @@ -1,20 +0,0 @@ -Ion (based on PWM) is a new kind of window manager that brings a -text-editorish, keyboard friendly user interface to window management. - -Modern GUIs are unusable. Overlapping windows are hard to manage, especially -from the keyboard, and the user often ends up in a jungle. Not to mention the -application programs, which are even worse. Mouse-based search-and-click -interfaces are slow - keyboard is fast having learnt the commands. Ion (the -last three letters of vision =-) was written as an example and an experiment of -something presumably better (just the window manager, though). - -Ion simply divides the screen into frames that take the whole screen. Big -displays have so much space that this is convenient and smaller displays -couldn't show more than one window at a time anyway. The frames can be split -and growing the size of one will shrink others. Alike in PWM, clients can be -moved between frames and multiple clients can be attached to one frame. - -With Ion you will hardly ever have to touch the mouse again for navigation -between windows and the windows are always in order. - -WWW: http://modeemi.cs.tut.fi/~tuomov/ion/ diff --git a/x11-wm/ion3/pkg-plist b/x11-wm/ion3/pkg-plist deleted file mode 100644 index beaa7ec4b33e..000000000000 --- a/x11-wm/ion3/pkg-plist +++ /dev/null @@ -1,69 +0,0 @@ -bin/ion -bin/pwm -etc/ion/dock-draw.lua -etc/ion/dock.lua -etc/ion/draw.lua -etc/ion/floatws.lua -etc/ion/ion-bindings.lua -etc/ion/ion-menus.lua -etc/ion/ion.lua -etc/ion/ionws.lua -etc/ion/kludges.lua -etc/ion/look-brownsteel.lua -etc/ion/look-clean.lua -etc/ion/look-cleanios.lua -etc/ion/look-cleanviolet.lua -etc/ion/look-dusky.lua -etc/ion/look-greyviolet.lua -etc/ion/look-ios.lua -etc/ion/look-simpleblue.lua -etc/ion/look-wheat2.lua -etc/ion/menu.lua -etc/ion/pwm-bindings.lua -etc/ion/pwm-menus.lua -etc/ion/pwm.lua -etc/ion/query.lua -lib/ion/de.a -lib/ion/de.la -lib/ion/de.so -lib/ion/dock.a -lib/ion/dock.la -lib/ion/dock.so -lib/ion/floatws.a -lib/ion/floatws.la -lib/ion/floatws.so -lib/ion/ion-completefile -lib/ion/ionws.a -lib/ion/ionws.la -lib/ion/ionws.so -lib/ion/menu.a -lib/ion/menu.la -lib/ion/menu.so -lib/ion/query.a -lib/ion/query.la -lib/ion/query.so -lib/ion/lc/ioncore-efbb.lc -lib/ion/lc/ioncorelib.lc -lib/ion/lc/ioncorelib-mplexfns.lc -lib/ion/lc/menulib.lc -lib/ion/lc/querylib.lc -share/ion/delib.lua -share/ion/ion-edit -share/ion/ion-man -share/ion/ion-runinxterm -share/ion/ion-ssh -share/ion/ion-view -share/ion/ioncore-efbb.lua -share/ion/ioncorelib-mplexfns.lua -share/ion/ioncorelib.lua -share/ion/menulib.lua -share/ion/querylib.lua -share/ion/welcome_message.txt -share/doc/ion/README -share/doc/ion/LICENSE -share/doc/ion/ChangeLog -@dirrm lib/ion/lc -@dirrm lib/ion -@dirrm share/ion -@dirrm share/doc/ion -@dirrmtry etc/ion diff --git a/x11-wm/wmanager/files/pkg-message.in b/x11-wm/wmanager/files/pkg-message.in deleted file mode 100644 index 53ee339c45f4..000000000000 --- a/x11-wm/wmanager/files/pkg-message.in +++ /dev/null @@ -1,3 +0,0 @@ -Docs have been installed in /usr/X11R6/share/wmanager/. -You are advised to have a look at the sample .wmanagerrc -and .xinitrc's available there. diff --git a/x11-wm/xfce4-desktop/Makefile b/x11-wm/xfce4-desktop/Makefile index 0f7d6f68f75b..899533b6ff44 100644 --- a/x11-wm/xfce4-desktop/Makefile +++ b/x11-wm/xfce4-desktop/Makefile @@ -6,8 +6,8 @@ # PORTNAME= xfce4-desktop -PORTVERSION= 4.4.1 -PORTREVISION= 1 +PORTVERSION= 4.4.2 +PORTREVISION= 0 CATEGORIES= x11-wm xfce MASTER_SITES= ${MASTER_SITE_XFCE} DISTNAME= xfdesktop-${PORTVERSION} diff --git a/x11-wm/xfce4-desktop/distinfo b/x11-wm/xfce4-desktop/distinfo index 51b2422c061b..f75c42263c28 100644 --- a/x11-wm/xfce4-desktop/distinfo +++ b/x11-wm/xfce4-desktop/distinfo @@ -1,3 +1,3 @@ -MD5 (xfce4/xfdesktop-4.4.1.tar.bz2) = 7cbebc8e895eb19ee735e520ea48d03b -SHA256 (xfce4/xfdesktop-4.4.1.tar.bz2) = abf8c93af0df9d6ec730917e02c57783546c40b8be091a74a5160bbf59ee4a80 -SIZE (xfce4/xfdesktop-4.4.1.tar.bz2) = 3067577 +MD5 (xfce4/xfdesktop-4.4.2.tar.bz2) = 694601234e74903d0fccba064f411e0c +SHA256 (xfce4/xfdesktop-4.4.2.tar.bz2) = 7e50c13e45b1424924c49dd1e9daa6c16881ee57ac21e4e2c6f20c0eec227cdb +SIZE (xfce4/xfdesktop-4.4.2.tar.bz2) = 3047839 diff --git a/x11-wm/xfce4-desktop/pkg-plist b/x11-wm/xfce4-desktop/pkg-plist index 2669095a3f50..64cf727a31e1 100644 --- a/x11-wm/xfce4-desktop/pkg-plist +++ b/x11-wm/xfce4-desktop/pkg-plist @@ -10,6 +10,7 @@ etc/xdg/xfce4/desktop/xfce-registered-categories.xml.he etc/xdg/xfce4/desktop/xfce-registered-categories.xml.hu etc/xdg/xfce4/desktop/xfce-registered-categories.xml.it etc/xdg/xfce4/desktop/xfce-registered-categories.xml.ja +etc/xdg/xfce4/desktop/xfce-registered-categories.xml.nb_NO etc/xdg/xfce4/desktop/xfce-registered-categories.xml.nl etc/xdg/xfce4/desktop/xfce-registered-categories.xml.pl etc/xdg/xfce4/desktop/xfce-registered-categories.xml.pt_BR @@ -37,6 +38,7 @@ etc/xdg/xfce4/desktop/menu.xml.hu etc/xdg/xfce4/desktop/menu.xml.it etc/xdg/xfce4/desktop/menu.xml.ja etc/xdg/xfce4/desktop/menu.xml.ko +etc/xdg/xfce4/desktop/menu.xml.nb_NO etc/xdg/xfce4/desktop/menu.xml.nl etc/xdg/xfce4/desktop/menu.xml.pa etc/xdg/xfce4/desktop/menu.xml.pl @@ -68,6 +70,7 @@ share/icons/hicolor/48x48/apps/xfce4-backdrop.png share/icons/hicolor/48x48/apps/xfce4-menueditor.png share/icons/hicolor/scalable/apps/xfce4-backdrop.svg share/icons/hicolor/scalable/apps/xfce4-menueditor.svg +share/locale/am/LC_MESSAGES/xfdesktop.mo share/locale/ar/LC_MESSAGES/xfdesktop.mo share/locale/az/LC_MESSAGES/xfdesktop.mo share/locale/be/LC_MESSAGES/xfdesktop.mo @@ -98,6 +101,7 @@ share/locale/ja/LC_MESSAGES/xfdesktop.mo share/locale/ka/LC_MESSAGES/xfdesktop.mo share/locale/ko/LC_MESSAGES/xfdesktop.mo share/locale/lt/LC_MESSAGES/xfdesktop.mo +share/locale/lv/LC_MESSAGES/xfdesktop.mo share/locale/mk/LC_MESSAGES/xfdesktop.mo share/locale/mr/LC_MESSAGES/xfdesktop.mo share/locale/ms/LC_MESSAGES/xfdesktop.mo diff --git a/x11-wm/xfce4-panel/Makefile b/x11-wm/xfce4-panel/Makefile index 1f8a729c3871..13c5bd4c08da 100644 --- a/x11-wm/xfce4-panel/Makefile +++ b/x11-wm/xfce4-panel/Makefile @@ -6,8 +6,8 @@ # PORTNAME= xfce4-panel -PORTVERSION= 4.4.1 -PORTREVISION= 1 +PORTVERSION= 4.4.2 +PORTREVISION= 0 CATEGORIES= x11-wm xfce MASTER_SITES= ${MASTER_SITE_XFCE} DIST_SUBDIR= xfce4 diff --git a/x11-wm/xfce4-panel/distinfo b/x11-wm/xfce4-panel/distinfo index c34515a6f357..c65ac3019c10 100644 --- a/x11-wm/xfce4-panel/distinfo +++ b/x11-wm/xfce4-panel/distinfo @@ -1,3 +1,3 @@ -MD5 (xfce4/xfce4-panel-4.4.1.tar.bz2) = 56b3137c190dd722dd5109be03901feb -SHA256 (xfce4/xfce4-panel-4.4.1.tar.bz2) = a84cfc376b1c15f941177d5189668694db365591a4132cbd4d1ac5c7da3f43fa -SIZE (xfce4/xfce4-panel-4.4.1.tar.bz2) = 767669 +MD5 (xfce4/xfce4-panel-4.4.2.tar.bz2) = 8f26b32c442bf9926f98f285a3c251dd +SHA256 (xfce4/xfce4-panel-4.4.2.tar.bz2) = ddabfb0ccf04366820efdeb7c640ee3a648a55e51b5177c9861a5ab896e96ddd +SIZE (xfce4/xfce4-panel-4.4.2.tar.bz2) = 757724 diff --git a/x11-wm/xfce4-panel/pkg-plist b/x11-wm/xfce4-panel/pkg-plist index e48fca17a90e..e88e8dab73aa 100644 --- a/x11-wm/xfce4-panel/pkg-plist +++ b/x11-wm/xfce4-panel/pkg-plist @@ -78,6 +78,7 @@ share/icons/hicolor/48x48/apps/xfce-mouse.png share/icons/hicolor/48x48/apps/xfce4-iconbox.png share/icons/hicolor/48x48/apps/xfce4-panel.png share/icons/hicolor/48x48/apps/xfce4-taskbar.png +share/locale/am/LC_MESSAGES/xfce4-panel.mo share/locale/ar/LC_MESSAGES/xfce4-panel.mo share/locale/az/LC_MESSAGES/xfce4-panel.mo share/locale/be/LC_MESSAGES/xfce4-panel.mo @@ -108,6 +109,7 @@ share/locale/ja/LC_MESSAGES/xfce4-panel.mo share/locale/ka/LC_MESSAGES/xfce4-panel.mo share/locale/ko/LC_MESSAGES/xfce4-panel.mo share/locale/lt/LC_MESSAGES/xfce4-panel.mo +share/locale/lv/LC_MESSAGES/xfce4-panel.mo share/locale/mk/LC_MESSAGES/xfce4-panel.mo share/locale/mr/LC_MESSAGES/xfce4-panel.mo share/locale/ms/LC_MESSAGES/xfce4-panel.mo diff --git a/x11-wm/xfce4-session/Makefile b/x11-wm/xfce4-session/Makefile index 1d61029cecd5..dbbedc03231f 100644 --- a/x11-wm/xfce4-session/Makefile +++ b/x11-wm/xfce4-session/Makefile @@ -6,8 +6,8 @@ # PORTNAME= xfce4-session -PORTVERSION= 4.4.1 -PORTREVISION= 1 +PORTVERSION= 4.4.2 +PORTREVISION= 0 CATEGORIES= x11-wm xfce MASTER_SITES= ${MASTER_SITE_XFCE} DIST_SUBDIR= xfce4 @@ -15,9 +15,6 @@ DIST_SUBDIR= xfce4 MAINTAINER= oliver@FreeBSD.org COMMENT= Session manager for the Xfce 4 desktop environment -BUILD_DEPENDS= iceauth:${X_CLIENTS_PORT} -RUN_DEPENDS= ${BUILD_DEPENDS} - GNU_CONFIGURE= yes INSTALLS_ICONS= yes USE_BZIP2= yes @@ -30,4 +27,14 @@ USE_XLIB= yes MAN1= xfce4-session.1 xfce4-session-logout.1 -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${X_WINDOW_SYSTEM:L} != xorg +BUILD_DEPENDS+= iceauth:${X_CLIENTS_PORT} +.else +BUILD_DEPENDS+= iceauth:${PORTSDIR}/x11/iceauth +.endif + +RUN_DEPENDS= ${BUILD_DEPENDS} + +.include <bsd.port.post.mk> diff --git a/x11-wm/xfce4-session/distinfo b/x11-wm/xfce4-session/distinfo index 354fde648341..00e0b62f5550 100644 --- a/x11-wm/xfce4-session/distinfo +++ b/x11-wm/xfce4-session/distinfo @@ -1,3 +1,3 @@ -MD5 (xfce4/xfce4-session-4.4.1.tar.bz2) = 82c31aef2856e30ebc09d2911e9b96ee -SHA256 (xfce4/xfce4-session-4.4.1.tar.bz2) = cab5f28173944b4c99c36570405b84f730ece80c51eaa1b01e6726c29b158065 -SIZE (xfce4/xfce4-session-4.4.1.tar.bz2) = 1289278 +MD5 (xfce4/xfce4-session-4.4.2.tar.bz2) = 4c3d1acb8ce37ea4dd55d82aeb38e9e7 +SHA256 (xfce4/xfce4-session-4.4.2.tar.bz2) = 7394906dec7b50789407219f85143ae83b10938949d38adeecdd59eb50c8c1c6 +SIZE (xfce4/xfce4-session-4.4.2.tar.bz2) = 1252395 diff --git a/x11-wm/xfce4-session/pkg-plist b/x11-wm/xfce4-session/pkg-plist index 3ac5bf25e892..e5fd69760aaf 100644 --- a/x11-wm/xfce4-session/pkg-plist +++ b/x11-wm/xfce4-session/pkg-plist @@ -41,6 +41,7 @@ share/icons/hicolor/72x72/apps/xfsm-trash-hilight.png share/icons/hicolor/72x72/apps/xfsm-trash-normal.png share/icons/hicolor/scalable/apps/xfce4-session.svg share/icons/hicolor/scalable/apps/xfsm-shutdown.svg +share/locale/am/LC_MESSAGES/xfce4-session.mo share/locale/ar/LC_MESSAGES/xfce4-session.mo share/locale/az/LC_MESSAGES/xfce4-session.mo share/locale/be/LC_MESSAGES/xfce4-session.mo @@ -69,6 +70,7 @@ share/locale/ja/LC_MESSAGES/xfce4-session.mo share/locale/ka/LC_MESSAGES/xfce4-session.mo share/locale/ko/LC_MESSAGES/xfce4-session.mo share/locale/lt/LC_MESSAGES/xfce4-session.mo +share/locale/lv/LC_MESSAGES/xfce4-session.mo share/locale/mk/LC_MESSAGES/xfce4-session.mo share/locale/mr/LC_MESSAGES/xfce4-session.mo share/locale/ms/LC_MESSAGES/xfce4-session.mo diff --git a/x11-wm/xfce4-wm/Makefile b/x11-wm/xfce4-wm/Makefile index 73e4a7223b62..a4afb916d742 100644 --- a/x11-wm/xfce4-wm/Makefile +++ b/x11-wm/xfce4-wm/Makefile @@ -6,8 +6,8 @@ # PORTNAME= xfce4-wm -PORTVERSION= 4.4.1 -PORTREVISION= 2 +PORTVERSION= 4.4.2 +PORTREVISION= 0 CATEGORIES= x11-wm xfce MASTER_SITES= ${MASTER_SITE_XFCE} DISTNAME= xfwm4-${PORTVERSION} diff --git a/x11-wm/xfce4-wm/distinfo b/x11-wm/xfce4-wm/distinfo index 20f57eb8d5ff..9b9c1711ecb0 100644 --- a/x11-wm/xfce4-wm/distinfo +++ b/x11-wm/xfce4-wm/distinfo @@ -1,3 +1,3 @@ -MD5 (xfce4/xfwm4-4.4.1.tar.bz2) = c531edad76c909001acccc02936404f2 -SHA256 (xfce4/xfwm4-4.4.1.tar.bz2) = 4c7def1dfe4fe723dfd2728187d70b96682896649461507d230906aafffc0475 -SIZE (xfce4/xfwm4-4.4.1.tar.bz2) = 1645973 +MD5 (xfce4/xfwm4-4.4.2.tar.bz2) = 21da77e50b07e72bba784bf3418ca067 +SHA256 (xfce4/xfwm4-4.4.2.tar.bz2) = 710120122bc4acaaecdb0646656c5aa92f1d44c4c81d1a6775688abab04cca0a +SIZE (xfce4/xfwm4-4.4.2.tar.bz2) = 1548533 diff --git a/x11-wm/xfce4-wm/pkg-plist b/x11-wm/xfce4-wm/pkg-plist index d53111852df4..b7b06345a9db 100644 --- a/x11-wm/xfce4-wm/pkg-plist +++ b/x11-wm/xfce4-wm/pkg-plist @@ -17,6 +17,7 @@ share/icons/hicolor/48x48/apps/xfwm4.png share/icons/hicolor/scalable/apps/wmtweaks.svg share/icons/hicolor/scalable/apps/xfce4-workspaces.svg share/icons/hicolor/scalable/apps/xfwm4.svg +share/locale/am/LC_MESSAGES/xfwm4.mo share/locale/ar/LC_MESSAGES/xfwm4.mo share/locale/az/LC_MESSAGES/xfwm4.mo share/locale/be/LC_MESSAGES/xfwm4.mo @@ -46,6 +47,7 @@ share/locale/ja/LC_MESSAGES/xfwm4.mo share/locale/ka/LC_MESSAGES/xfwm4.mo share/locale/ko/LC_MESSAGES/xfwm4.mo share/locale/lt/LC_MESSAGES/xfwm4.mo +share/locale/lv/LC_MESSAGES/xfwm4.mo share/locale/mk/LC_MESSAGES/xfwm4.mo share/locale/mr/LC_MESSAGES/xfwm4.mo share/locale/ms/LC_MESSAGES/xfwm4.mo diff --git a/x11-wm/xfce4/Makefile b/x11-wm/xfce4/Makefile index 8d315acf6753..e5b1480d7d7e 100644 --- a/x11-wm/xfce4/Makefile +++ b/x11-wm/xfce4/Makefile @@ -6,8 +6,8 @@ # PORTNAME= xfce -PORTVERSION= 4.4.1 -PORTREVISION= 1 +PORTVERSION= 4.4.2 +PORTREVISION= 0 CATEGORIES= x11-wm xfce MASTER_SITES= # empty DISTFILES= # empty |