remove matchbox, it's not being developed anymore and nobody uses it

ok aja@
This commit is contained in:
jasper 2012-08-12 17:29:51 +00:00
parent fc2bd0d1b4
commit 5b9d1c7169
57 changed files with 0 additions and 923 deletions

View File

@ -1,15 +0,0 @@
# $OpenBSD: Makefile,v 1.5 2010/02/01 17:00:14 espie Exp $
SUBDIR =
SUBDIR += libfakekey
SUBDIR += libmatchbox
SUBDIR += matchbox-common
SUBDIR += matchbox-desktop
SUBDIR += matchbox-keyboard
SUBDIR += matchbox-nest
SUBDIR += matchbox-panel
SUBDIR += matchbox-panel-manager
SUBDIR += matchbox-themes-extra
SUBDIR += matchbox-window-manager
.include <bsd.port.subdir.mk>

View File

@ -1,16 +0,0 @@
# $OpenBSD: Makefile.inc,v 1.4 2010/10/24 21:15:33 ajacoutot Exp $
CATEGORIES?= x11 x11/matchbox
HOMEPAGE?= http://projects.o-hand.com/matchbox/
MASTER_SITES_MATCHBOX?= http://projects.o-hand.com/matchbox/sources/
EXTRACT_SUFX?= .tar.bz2
DIST_SUBDIR= matchbox
# GPLv2/LGPLv2.1
PERMIT_PACKAGE_CDROM?= Yes
PERMIT_PACKAGE_FTP?= Yes
PERMIT_DISTFILES_CDROM?=Yes
PERMIT_DISTFILES_FTP?= Yes

View File

@ -1,19 +0,0 @@
# $OpenBSD: Makefile,v 1.8 2010/07/30 06:58:59 ajacoutot Exp $
COMMENT= library for converting characters to X key-presses
DISTNAME= libfakekey-0.1
REVISION= 3
SHARED_LIBS= fakekey 0.1
MASTER_SITES= ${MASTER_SITES_MATCHBOX:=libfakekey/0.1/}
USE_LIBTOOL= Yes
WANTLIB= X11 Xtst Xau Xdmcp Xext pthread-stubs xcb
CONFIGURE_STYLE=gnu
CONFIGURE_ENV+= CPPFLAGS="-I${X11BASE}/include" \
LDFLAGS="-L${X11BASE}/lib"
.include <bsd.port.mk>

View File

@ -1,5 +0,0 @@
MD5 (matchbox/libfakekey-0.1.tar.bz2) = g9veTXfouvAXb+QpHYojAw==
RMD160 (matchbox/libfakekey-0.1.tar.bz2) = mQ7aCfQnG/A+rhqH4e4UupYSRkg=
SHA1 (matchbox/libfakekey-0.1.tar.bz2) = 8wLNnwbTvTTbG0j8LK8qxI4J7nk=
SHA256 (matchbox/libfakekey-0.1.tar.bz2) = xBBCpwUkiVsO34B3rjrhIG8aMTvqWBHcwjAz6hagAZQ=
SIZE (matchbox/libfakekey-0.1.tar.bz2) = 203504

View File

@ -1,2 +0,0 @@
libfakekey is a library for converting UTF-8 characters into 'fake' X
key-presses.

View File

@ -1,2 +0,0 @@
@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2006/07/20 21:09:58 robert Exp $
@lib lib/libfakekey.so.${LIBfakekey_VERSION}

View File

@ -1,8 +0,0 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2006/07/20 21:09:58 robert Exp $
%%SHARED%%
include/fakekey/
include/fakekey/fakekey.h
lib/libfakekey.a
lib/libfakekey.la
lib/pkgconfig/
lib/pkgconfig/libfakekey.pc

View File

@ -1,30 +0,0 @@
# $OpenBSD: Makefile,v 1.14 2010/11/22 08:37:03 espie Exp $
COMMENT= matchbox base library
DISTNAME= libmatchbox-1.9
REVISION= 0
SHARED_LIBS += mb 1.7 # .1.7
MODGNU_SHARED_LIBS= mb ''
MASTER_SITES= ${MASTER_SITES_MATCHBOX:=libmatchbox/1.9/}
WANTLIB= X11 Xau Xdmcp Xext Xft Xrender expat fontconfig freetype \
glib-2.0 gmodule-2.0 gobject-2.0 m pcre z pthread-stubs \
pango-1.0 pangoft2-1.0 pangoxft-1.0 xcb jpeg png
MODULES= devel/gettext
LIB_DEPENDS= devel/pango \
graphics/jpeg \
graphics/png
USE_LIBTOOL= Yes
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS+= --enable-jpeg \
--enable-pango
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/libpng" \
LDFLAGS="-L${LOCALBASE}/lib"
.include <bsd.port.mk>

View File

@ -1,5 +0,0 @@
MD5 (matchbox/libmatchbox-1.9.tar.bz2) = n3PnUVzEZ5FxpdsYDcE0Ow==
RMD160 (matchbox/libmatchbox-1.9.tar.bz2) = XHLRqG3h1rT/vge2qArHBdJjP7M=
SHA1 (matchbox/libmatchbox-1.9.tar.bz2) = eCCycjWBwg25LYo24addSgxXV5o=
SHA256 (matchbox/libmatchbox-1.9.tar.bz2) = 2wHiGOjQlUBFnI98VpjBWc2Ew9W4yql2O/Dlo19u3wA=
SIZE (matchbox/libmatchbox-1.9.tar.bz2) = 316575

View File

@ -1,26 +0,0 @@
$OpenBSD: patch-libmb_mbpixbuf_c,v 1.1 2011/07/08 20:38:01 naddy Exp $
Fix build with png-1.5.
--- libmb/mbpixbuf.c.orig Tue Jul 5 23:25:58 2011
+++ libmb/mbpixbuf.c Tue Jul 5 23:27:08 2011
@@ -247,7 +247,7 @@ _load_png_file( const char *file,
return NULL;
}
- if ( setjmp( png_ptr->jmpbuf ) ) {
+ if ( setjmp( png_jmpbuf( png_ptr ) ) ) {
png_destroy_read_struct( &png_ptr, &info_ptr, NULL);
fclose(fd);
return NULL;
@@ -269,8 +269,8 @@ _load_png_file( const char *file,
( color_type == PNG_COLOR_TYPE_GRAY_ALPHA ))
png_set_gray_to_rgb(png_ptr);
- if ( info_ptr->color_type == PNG_COLOR_TYPE_RGB_ALPHA
- || info_ptr->color_type == PNG_COLOR_TYPE_GRAY_ALPHA
+ if ( png_get_color_type ( png_ptr, info_ptr ) == PNG_COLOR_TYPE_RGB_ALPHA
+ || png_get_color_type ( png_ptr, info_ptr ) == PNG_COLOR_TYPE_GRAY_ALPHA
)
*has_alpha = 1;
else

View File

@ -1,3 +0,0 @@
libmatchbox is a small basic library that provides a large amount of
shared functionality to the various matchbox libraries. It provides
image processing, font abstraction, a tray app toolkit and more.

View File

@ -1,2 +0,0 @@
@comment $OpenBSD: PFRAG.shared,v 1.2 2005/12/26 16:45:43 naddy Exp $
@lib lib/libmb.so.${LIBmb_VERSION}

View File

@ -1,16 +0,0 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2005/06/17 02:57:30 jolan Exp $
%%SHARED%%
include/libmb/
include/libmb/hash.h
include/libmb/mb.h
include/libmb/mbconfig.h
include/libmb/mbdotdesktop.h
include/libmb/mbexp.h
include/libmb/mbmenu.h
include/libmb/mbpixbuf.h
include/libmb/mbtray.h
include/libmb/mbutil.h
lib/libmb.a
lib/libmb.la
lib/pkgconfig/
lib/pkgconfig/libmb.pc

View File

@ -1,18 +0,0 @@
# $OpenBSD: Makefile,v 1.8 2010/11/22 08:37:03 espie Exp $
COMMENT= matchbox shared icons and configuration data
DISTNAME= matchbox-common-0.9.1
REVISION= 1
MASTER_SITES= ${MASTER_SITES_MATCHBOX:=matchbox-common/0.9/}
BUILD_DEPENDS= x11/matchbox/libmatchbox
CONFIGURE_STYLE=gnu
CONFIGURE_ARGS+=--enable-pda-folders
post-build:
@perl -pi -e 's,/etc,${SYSCONFDIR},g' ${WRKSRC}/matchbox-session
.include <bsd.port.mk>

View File

@ -1,5 +0,0 @@
MD5 (matchbox/matchbox-common-0.9.1.tar.bz2) = joug7hcKmseP3Fg7AMz3aw==
RMD160 (matchbox/matchbox-common-0.9.1.tar.bz2) = tMbtQNpF9VEpuzHQXg5Dwnh9AQQ=
SHA1 (matchbox/matchbox-common-0.9.1.tar.bz2) = HYrbAXtgD2xYqM7918n0WX8h5LU=
SHA256 (matchbox/matchbox-common-0.9.1.tar.bz2) = UkmVuYmcwQ0Ex5ZPuI/4ohmYZcqX6NSYir2NbCooYZk=
SIZE (matchbox/matchbox-common-0.9.1.tar.bz2) = 86365

View File

@ -1,2 +0,0 @@
matchbox-common is a package containing shared icons and configuration
data.

View File

@ -1,25 +0,0 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2005/06/17 02:57:30 jolan Exp $
bin/matchbox-session
share/icons/
share/icons/blondie/
share/icons/blondie/48x48/
share/icons/blondie/48x48/apps/
share/icons/blondie/48x48/apps/mbfolder.png
share/icons/blondie/48x48/apps/mbfolderprev.png
share/matchbox/
share/matchbox/vfolders/
share/matchbox/vfolders/Applications.directory
share/matchbox/vfolders/Games.directory
share/matchbox/vfolders/Other.directory
share/matchbox/vfolders/Root.directory
share/matchbox/vfolders/Root.order
share/matchbox/vfolders/Settings.directory
share/matchbox/vfolders/Utilities.directory
share/pixmaps/
share/pixmaps/mbadd.png
share/pixmaps/mbdown.png
share/pixmaps/mbfolder.png
share/pixmaps/mbfolderprev.png
share/pixmaps/mbnoapp.png
share/pixmaps/mbremove.png
share/pixmaps/mbup.png

View File

@ -1,29 +0,0 @@
# $OpenBSD: Makefile,v 1.16 2011/09/16 12:29:16 espie Exp $
COMMENT= pda style application launcher or item browser
DISTNAME= matchbox-desktop-2.0
REVISION= 4
MASTER_SITES= ${MASTER_SITES_MATCHBOX:=matchbox-desktop/2.0/}
WANTLIB += X11 Xau Xcomposite Xcursor Xdamage Xdmcp Xext Xfixes
WANTLIB += Xi Xinerama Xrandr Xrender atk-1.0 c cairo expat fontconfig
WANTLIB += freetype gio-2.0 glib-2.0 gmodule-2.0 gobject-2.0
WANTLIB += m pango-1.0 pangocairo-1.0 pangoft2-1.0 pixman-1 png
WANTLIB += z pthread-stubs xcb startup-notification-1 gdk_pixbuf-2.0
WANTLIB += gdk-x11-2.0 gtk-x11-2.0
MODULES= devel/gettext
LIB_DEPENDS= devel/startup-notification \
x11/gtk+2
RUN_DEPENDS= x11/matchbox/matchbox-common
USE_LIBTOOL= Yes
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS+= -enable-startup-notification
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/libpng" \
LDFLAGS="-L${LOCALBASE}/lib"
.include <bsd.port.mk>

View File

@ -1,5 +0,0 @@
MD5 (matchbox/matchbox-desktop-2.0.tar.bz2) = sKSkcTAnLiratOn+tDpsnA==
RMD160 (matchbox/matchbox-desktop-2.0.tar.bz2) = oD7h0G5p68VIKSq9ANm/HP3l6xM=
SHA1 (matchbox/matchbox-desktop-2.0.tar.bz2) = AZNAflxkyJTXn8L1WjJAfTYS93M=
SHA256 (matchbox/matchbox-desktop-2.0.tar.bz2) = vjP/C8ipse7mrzYKURjkcOaaYpLsyeFU7G80n85cX3U=
SIZE (matchbox/matchbox-desktop-2.0.tar.bz2) = 125752

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-install-sh,v 1.1.1.1 2005/06/17 02:57:31 jolan Exp $
--- install-sh.orig Thu Dec 9 09:27:15 2004
+++ install-sh Mon Jun 6 21:47:13 2005
@@ -207,7 +207,7 @@ do
fi
# This sed command emulates the dirname command.
- dstdir=`echo "$dst" | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
+ dstdir=`echo "$dst" | sed -e 's,/$,,g' -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
# Make sure that the destination directory exists.

View File

@ -1,3 +0,0 @@
matchbox-desktop is a PDA style application launcher or 'item browser'.
Its functionality can be extended by means of dynamically loadable
plugins.

View File

@ -1,2 +0,0 @@
@comment $OpenBSD: PLIST,v 1.3 2008/11/11 22:41:06 jasper Exp $
@bin bin/matchbox-desktop

View File

@ -1,21 +0,0 @@
# $OpenBSD: Makefile,v 1.15 2010/11/22 08:37:03 espie Exp $
COMMENT= on-screen virtual keyboard
DISTNAME= matchbox-keyboard-0.1
REVISION= 6
MASTER_SITES= ${MASTER_SITES_MATCHBOX:=matchbox-keyboard/0.1/}
LIB_DEPENDS= x11/matchbox/libfakekey
RUN_DEPENDS= x11/matchbox/matchbox-common \
devel/desktop-file-utils
WANTLIB= X11 Xau Xdmcp Xext Xft Xrender Xtst c expat fontconfig freetype z \
pthread-stubs xcb fakekey
CONFIGURE_STYLE=gnu
CONFIGURE_ARGS+=--enable-nls
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/libpng" \
LDFLAGS="-L${LOCALBASE}/lib"
.include <bsd.port.mk>

View File

@ -1,5 +0,0 @@
MD5 (matchbox/matchbox-keyboard-0.1.tar.bz2) = UJQDIdWf7iOziklBEAq/JQ==
RMD160 (matchbox/matchbox-keyboard-0.1.tar.bz2) = iO0RXvfwti/nys2oIv97UjYBTYU=
SHA1 (matchbox/matchbox-keyboard-0.1.tar.bz2) = 6/Uwj4ypPhk8PnnQ+4MEOW9Hi68=
SHA256 (matchbox/matchbox-keyboard-0.1.tar.bz2) = aCYU+jaCxL0x4mtvduBLtXnC5w2/BgCD4gB39Ok/tLM=
SIZE (matchbox/matchbox-keyboard-0.1.tar.bz2) = 103222

View File

@ -1,15 +0,0 @@
$OpenBSD: patch-Makefile_in,v 1.3 2008/11/11 22:43:03 jasper Exp $
--- Makefile.in.orig Tue Feb 28 19:48:45 2006
+++ Makefile.in Tue Nov 11 14:38:58 2008
@@ -176,9 +176,9 @@ sysconfdir = @sysconfdir@
target_alias = @target_alias@
SUBDIRS = src layouts $(am__append_1)
EXTRA_DIST = matchbox-keyboard.desktop matchbox-keyboard.png
-desktopdir = $(datadir)/applications/inputmethods
+desktopdir = $(datadir)/applications/
desktop_DATA = matchbox-keyboard.desktop
-pixmapsdir = $(datadir)/pixmaps/
+pixmapsdir = $(datadir)/pixmaps
pixmaps_DATA = matchbox-keyboard.png
all: config.h
$(MAKE) $(AM_MAKEFLAGS) all-recursive

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-src_matchbox-keyboard-layout_c,v 1.1 2010/09/03 16:06:23 sthen Exp $
--- src/matchbox-keyboard-layout.c.orig Fri Sep 3 17:01:59 2010
+++ src/matchbox-keyboard-layout.c Fri Sep 3 17:02:09 2010
@@ -44,7 +44,7 @@ void
mb_kbd_layout_append_row(MBKeyboardLayout *layout,
MBKeyboardRow *row)
{
- layout->rows = util_list_append(layout->rows, (pointer)row);
+ layout->rows = util_list_append(layout->rows, (mb_pointer)row);
}
List*

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-src_matchbox-keyboard-row_c,v 1.1 2010/09/03 16:06:23 sthen Exp $
--- src/matchbox-keyboard-row.c.orig Fri Sep 3 17:01:59 2010
+++ src/matchbox-keyboard-row.c Fri Sep 3 17:02:12 2010
@@ -138,7 +138,7 @@ mb_kbd_row_base_width(MBKeyboardRow *row)
void
mb_kbd_row_append_key(MBKeyboardRow *row, MBKeyboardKey *key)
{
- row->keys = util_list_append(row->keys, (pointer)key);
+ row->keys = util_list_append(row->keys, (mb_pointer)key);
mb_kbd_key_set_row(key, row);
}

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-src_matchbox-keyboard_c,v 1.1 2010/09/03 16:06:23 sthen Exp $
--- src/matchbox-keyboard.c.orig Fri Sep 3 17:01:35 2010
+++ src/matchbox-keyboard.c Fri Sep 3 17:02:14 2010
@@ -234,7 +234,7 @@ mb_kbd_locate_key(MBKeyboard *kb, int x, int y)
void
mb_kbd_add_layout(MBKeyboard *kb, MBKeyboardLayout *layout)
{
- kb->layouts = util_list_append(kb->layouts, (pointer)layout);
+ kb->layouts = util_list_append(kb->layouts, (mb_pointer)layout);
}
MBKeyboardLayout*

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-src_matchbox-keyboard_h,v 1.1 2010/09/03 16:06:23 sthen Exp $
--- src/matchbox-keyboard.h.orig Fri Sep 3 17:01:32 2010
+++ src/matchbox-keyboard.h Fri Sep 3 17:02:17 2010
@@ -55,7 +55,7 @@
#define MARK() DBG("mark")
-typedef void* pointer;
+typedef void* mb_pointer;
typedef unsigned char uchar ;
typedef Bool boolean ;

View File

@ -1,2 +0,0 @@
matchbox-keyboard is an on-screen 'virtual' or 'software' keyboard,
designed for touch-screen devices running X.

View File

@ -1,14 +0,0 @@
@comment $OpenBSD: PLIST,v 1.4 2009/12/21 20:46:02 ajacoutot Exp $
@bin bin/matchbox-keyboard
share/applications/matchbox-keyboard.desktop
share/matchbox-keyboard/
share/matchbox-keyboard/keyboard-dvorak.xml
share/matchbox-keyboard/keyboard-extended.xml
share/matchbox-keyboard/keyboard-fi.xml
share/matchbox-keyboard/keyboard-numpad.xml
share/matchbox-keyboard/keyboard-ru.xml
share/matchbox-keyboard/keyboard-us.xml
share/matchbox-keyboard/keyboard.xml
share/pixmaps/matchbox-keyboard.png
@exec %D/bin/update-desktop-database
@unexec-delete %D/bin/update-desktop-database

View File

@ -1,24 +0,0 @@
# $OpenBSD: Makefile,v 1.5 2010/11/22 08:37:03 espie Exp $
# XXX: Provide a Zaurus frontend
COMMENT= graphical wrapper around Xnest(1) on PDA size
DISTNAME= matchbox-nest-0.3
REVISION= 0
MASTER_SITES= ${MASTER_SITES_MATCHBOX:=matchbox-nest/0.3/}
WANTLIB= X11 Xau Xdmcp Xext Xft Xrender Xtst c expat fontconfig \
freetype glib-2.0 gmodule-2.0 gobject-2.0 jpeg m pango-1.0 \
pangoft2-1.0 pangoxft-1.0 png z pthread-stubs xcb mb
MODULES= devel/gettext
LIB_DEPENDS= x11/matchbox/libmatchbox
CONFIGURE_STYLE= gnu
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/libpng -I${X11BASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
CFLAGS+= -I${LOCALBASE}/include/libpng -I${X11BASE}/include
.include <bsd.port.mk>

View File

@ -1,5 +0,0 @@
MD5 (matchbox/matchbox-nest-0.3.tar.bz2) = +NRpqOHToFTf9YpsgUl8OQ==
RMD160 (matchbox/matchbox-nest-0.3.tar.bz2) = 45YU46qR8lrrd9Eh8iQxCVAaQ0I=
SHA1 (matchbox/matchbox-nest-0.3.tar.bz2) = GQ/dFZ0Z/psr8I92JBd2rwq/JlQ=
SHA256 (matchbox/matchbox-nest-0.3.tar.bz2) = nxpLgYumfNPW3SAOOOpI8krNt4R8WIAcL3GKiqbyfVk=
SIZE (matchbox/matchbox-nest-0.3.tar.bz2) = 275456

View File

@ -1,3 +0,0 @@
Matchbox-nest is a graphical wrapper around xnest. You can make Xnest
look like a particular device's display and set up buttons on that
device.

View File

@ -1,6 +0,0 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2008/11/11 22:45:23 jasper Exp $
@bin bin/matchbox-nest
share/matchbox-nest/
share/matchbox-nest/dot.png
share/matchbox-nest/ipaq3800.png
share/matchbox-nest/ipaq3800.xml

View File

@ -1,22 +0,0 @@
# $OpenBSD: Makefile,v 1.9 2011/09/16 12:29:16 espie Exp $
COMMENT= tray configuration utility
DISTNAME= matchbox-panel-manager-0.1
REVISION= 4
MASTER_SITES= ${MASTER_SITES_MATCHBOX:=matchbox-panel-manager/0.1/}
WANTLIB += X11 Xau Xcomposite Xcursor Xdamage Xdmcp Xext Xfixes
WANTLIB += Xi Xinerama Xrandr Xrender atk-1.0 c cairo expat fontconfig
WANTLIB += freetype gio-2.0 glib-2.0 gmodule-2.0 gobject-2.0
WANTLIB += m pango-1.0 pangocairo-1.0 pangoft2-1.0 pixman-1 png
WANTLIB += z pthread-stubs xcb gdk_pixbuf-2.0 gdk-x11-2.0 gtk-x11-2.0
MODULES= devel/gettext
RUN_DEPENDS= devel/desktop-file-utils
LIB_DEPENDS= x11/gtk+2
CONFIGURE_STYLE= gnu
.include <bsd.port.mk>

View File

@ -1,5 +0,0 @@
MD5 (matchbox/matchbox-panel-manager-0.1.tar.bz2) = DqewOr17kO2mAbhlioWftg==
RMD160 (matchbox/matchbox-panel-manager-0.1.tar.bz2) = oHzOMNzzWhfI8nmfPSTGRmQzQzc=
SHA1 (matchbox/matchbox-panel-manager-0.1.tar.bz2) = gSRvWe81yIk6I/6mo96mc/gF0wk=
SHA256 (matchbox/matchbox-panel-manager-0.1.tar.bz2) = MhNqqvZv8AgxWEdnB/aape4Si8SzvWKivp+dstxYBLY=
SIZE (matchbox/matchbox-panel-manager-0.1.tar.bz2) = 64068

View File

@ -1 +0,0 @@
Utility to manage and alter the Matchbox panel configuration settings.

View File

@ -1,7 +0,0 @@
@comment $OpenBSD: PLIST,v 1.2 2009/12/21 20:46:02 ajacoutot Exp $
@bin bin/matchbox-panel-manager
share/applications/mb-panel-manager.desktop
share/pixmaps/
share/pixmaps/mbpanelmgr.png
@exec %D/bin/update-desktop-database
@unexec-delete %D/bin/update-desktop-database

View File

@ -1,34 +0,0 @@
# $OpenBSD: Makefile,v 1.24 2010/11/22 08:37:03 espie Exp $
# XXX hardcoded apm list
COMMENT= window bar for holding application launchers
DISTNAME= matchbox-panel-0.9.3
REVISION= 6
MASTER_SITES= ${MASTER_SITES_MATCHBOX:=matchbox-panel/0.9/}
LIB_DEPENDS= x11/matchbox/libmatchbox
RUN_DEPENDS= x11/matchbox/matchbox-common \
devel/desktop-file-utils
MODULES= devel/gettext
WANTLIB= X11 Xext Xft Xrender c fontconfig freetype m z \
glib-2.0>=600 gmodule-2.0>=600 gobject-2.0>=600 jpeg \
pango-1.0 pangoft2-1.0 pangoxft-1.0 png Xau Xdmcp expat \
pthread-stubs xcb mb
CONFIGURE_STYLE=gnu
CONFIGURE_ARGS+=--enable-nls
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/libpng" \
HAVEGETTEXT="yes" \
INTLIBS="-liconv -lintl" \
LDFLAGS="-L${LOCALBASE}/lib"
.include <bsd.port.mk>
.for m in ${MACHINE_ARCH} ${MACHINE}
.if ${APM_ARCHS:L:M$m}
PKG_ARGS+=-DAPM=1
.else
PKG_ARGS+=-DAPM=0
.endif
.endfor

View File

@ -1,5 +0,0 @@
MD5 (matchbox/matchbox-panel-0.9.3.tar.bz2) = VtGAdjbzkZ4i5RiWq3zNLg==
RMD160 (matchbox/matchbox-panel-0.9.3.tar.bz2) = apHQEMdbPu0cCwr3nUjl1B1aSvI=
SHA1 (matchbox/matchbox-panel-0.9.3.tar.bz2) = xUoMHzX83Ig+Up7N7BI5d8YyUWA=
SHA256 (matchbox/matchbox-panel-0.9.3.tar.bz2) = MZtlbi8fJTOdZYAqMTbzEWkUH9VNHKkTH/Sq2mKyXOY=
SIZE (matchbox/matchbox-panel-0.9.3.tar.bz2) = 162477

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-applets_Makefile_in,v 1.3 2008/04/23 22:18:27 jasper Exp $
--- applets/Makefile.in.orig Tue Mar 7 19:46:57 2006
+++ applets/Makefile.in Thu Apr 24 00:02:20 2008
@@ -239,7 +239,7 @@ INCLUDES = -DDATADIR=\"$(DATADIR)\" -DPKGDATADIR=\"$(P
@WANT_ACPI_TRUE@mb_applet_battery_SOURCES = mb-applet-battery.c
@WANT_APM_TRUE@mb_applet_battery_SOURCES = mb-applet-battery.c
@WANT_ACPI_TRUE@mb_applet_battery_LDADD = $(LIBMB_LIBS) $(SN_LIBS)
-@WANT_APM_TRUE@mb_applet_battery_LDADD = $(LIBMB_LIBS) $(SN_LIBS) -lapm
+@WANT_APM_TRUE@mb_applet_battery_LDADD = $(LIBMB_LIBS) $(SN_LIBS)
LDADD = $(LIBMB_LIBS) $(SN_LIBS)
mb_applet_clock_SOURCES = mb-applet-clock.c
mb_applet_menu_launcher_SOURCES = mb-applet-menu-launcher.c

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-applets_dotdesktop_mb-launcher-term_desktop,v 1.1.1.1 2005/06/17 02:57:30 jolan Exp $
--- applets/dotdesktop/mb-launcher-term.desktop.orig Sun Mar 20 11:43:31 2005
+++ applets/dotdesktop/mb-launcher-term.desktop Thu Jun 16 13:15:03 2005
@@ -2,7 +2,7 @@
Name=Term Launcher
Comment=Panel based Terminal launcher
# the '-o -1' makes monolaunch dock to the left
-Exec=mb-applet-launcher -o -1 -l mbterm.png mb-applet-xterm-wrapper.sh
+Exec=mb-applet-launcher -o -1 -l mbterm.png xterm
Type=PanelApp
Icon=mbterm.png
Categories=Panel;Utility;MB

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-configure,v 1.2 2008/04/23 22:18:27 jasper Exp $
--- configure.orig Tue Mar 7 19:46:56 2006
+++ configure Thu Apr 24 00:02:20 2008
@@ -6519,7 +6519,7 @@ _ACEOF
fi
-for ac_header in apmvar.h
+for ac_header in machine/apmvar.h
do
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
if eval "test \"\${$as_ac_Header+set}\" = set"; then

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-install-sh,v 1.3 2008/04/23 22:18:27 jasper Exp $
--- install-sh.orig Wed Nov 2 01:30:12 2005
+++ install-sh Thu Apr 24 00:02:20 2008
@@ -213,7 +213,7 @@ do
fi
# This sed command emulates the dirname command.
- dstdir=`echo "$dst" | sed -e 's,/*$,,;s,[^/]*$,,;s,/*$,,;s,^$,.,'`
+ dstdir=`echo "$dst" | sed -e 's,/$,,g' -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
# Make sure that the destination directory exists.

View File

@ -1,3 +0,0 @@
matchbox-panel is a flexible always present window bar for holding
application launchers and small applet style applications. A number of
applets are included in the module.

View File

@ -1,3 +0,0 @@
@comment $OpenBSD: PFRAG.APM,v 1.2 2008/07/11 17:46:56 ajacoutot Exp $
@bin bin/mb-applet-battery
share/applications/mb-applet-battery.desktop

View File

@ -1,41 +0,0 @@
@comment $OpenBSD: PLIST,v 1.6 2009/12/21 20:46:02 ajacoutot Exp $
%%APM%%
@bin bin/matchbox-panel
@bin bin/mb-applet-clock
@bin bin/mb-applet-launcher
@bin bin/mb-applet-menu-launcher
@comment @bin bin/mb-applet-system-monitor
@comment bin/mb-applet-xterm-wrapper.sh
share/applications/mb-applet-clock.desktop
share/applications/mb-applet-menu-launcher.desktop
@comment share/applications/mb-applet-system-monitor.desktop
share/applications/mb-launcher-term.desktop
share/locale/cs/LC_MESSAGES/matchbox-panel.mo
share/locale/de/LC_MESSAGES/matchbox-panel.mo
share/locale/en_GB/
share/locale/en_GB/LC_MESSAGES/
share/locale/en_GB/LC_MESSAGES/matchbox-panel.mo
share/locale/es_ES/
share/locale/es_ES/LC_MESSAGES/
share/locale/es_ES/LC_MESSAGES/matchbox-panel.mo
share/locale/fi_FI/
share/locale/fi_FI/LC_MESSAGES/
share/locale/fi_FI/LC_MESSAGES/matchbox-panel.mo
share/locale/fr_FR/
share/locale/fr_FR/LC_MESSAGES/
share/locale/fr_FR/LC_MESSAGES/matchbox-panel.mo
share/locale/zh_TW/LC_MESSAGES/matchbox-panel.mo
share/pixmaps/broken-0.png
share/pixmaps/mbmenu.png
share/pixmaps/mbterm.png
share/pixmaps/miniapm-power.png
share/pixmaps/miniapm.png
share/pixmaps/minisys.png
share/pixmaps/minitime.png
share/pixmaps/no-link-0.png
share/pixmaps/signal-1-40.png
share/pixmaps/signal-41-60.png
share/pixmaps/signal-61-80.png
share/pixmaps/signal-81-100.png
@exec %D/bin/update-desktop-database
@unexec-delete %D/bin/update-desktop-database

View File

@ -1,14 +0,0 @@
# $OpenBSD: Makefile,v 1.4 2010/11/22 08:37:03 espie Exp $
COMMENT= extra themes for matchbox
DISTNAME= matchbox-themes-extra-0.3
REVISION= 0
MASTER_SITES= ${MASTER_SITES_MATCHBOX:=/matchbox-themes-extra/0.3/}
RUN_DEPENDS= x11/matchbox/matchbox-window-manager
CONFIGURE_STYLE=gnu
.include <bsd.port.mk>

View File

@ -1,5 +0,0 @@
MD5 (matchbox/matchbox-themes-extra-0.3.tar.bz2) = BDEmKPSiH0EFvOElHqCANQ==
RMD160 (matchbox/matchbox-themes-extra-0.3.tar.bz2) = LCcNOp1Zuo8Ed4O7JTYCuFe7YeU=
SHA1 (matchbox/matchbox-themes-extra-0.3.tar.bz2) = 2etvdbtB0wHb3U9D3n/wyp7VlW4=
SHA256 (matchbox/matchbox-themes-extra-0.3.tar.bz2) = mKHIaVhCsM1/MuZ7DvkRj9DzLbUpfz8IcGxwbe6Pxr4=
SIZE (matchbox/matchbox-themes-extra-0.3.tar.bz2) = 639435

View File

@ -1 +0,0 @@
Additional themes for Matchbox.

View File

@ -1,205 +0,0 @@
@comment $OpenBSD: PLIST,v 1.2 2009/03/23 18:39:48 ajacoutot Exp $
share/icons/
share/icons/Industrial/
share/icons/Industrial/48x48/
share/icons/Industrial/48x48/apps/
share/icons/Industrial/48x48/apps/broken-0.png
share/icons/Industrial/48x48/apps/dillo.png
share/icons/Industrial/48x48/apps/gpe-bluetooth.png
share/icons/Industrial/48x48/apps/gpe-calendar.png
share/icons/Industrial/48x48/apps/gpe-contacts.png
share/icons/Industrial/48x48/apps/gpe-edit.png
share/icons/Industrial/48x48/apps/gpe-irc.png
share/icons/Industrial/48x48/apps/gpe-sketchbook.png
share/icons/Industrial/48x48/apps/gpe-timesheet.png
share/icons/Industrial/48x48/apps/gpe-today.png
share/icons/Industrial/48x48/apps/gpe-todo.png
share/icons/Industrial/48x48/apps/mbdesktop.png
share/icons/Industrial/48x48/apps/mbfolder.png
share/icons/Industrial/48x48/apps/mbfolderprev.png
share/icons/Industrial/48x48/apps/mbmoviefile.png
share/icons/Industrial/48x48/apps/mbmoviefolder.png
share/icons/Industrial/48x48/apps/mbmusicfolder.png
share/icons/Industrial/48x48/apps/mbnoapp.png
share/icons/Industrial/48x48/apps/mbpicturefolder.png
share/icons/Industrial/48x48/apps/minimo.png
share/icons/Industrial/48x48/apps/no-link-0.png
share/icons/Industrial/48x48/apps/signal-1-40.png
share/icons/Industrial/48x48/apps/signal-41-60.png
share/icons/Industrial/48x48/apps/signal-61-80.png
share/icons/Industrial/48x48/apps/signal-81-100.png
share/icons/expose/
share/icons/expose/48x48/
share/icons/expose/48x48/apps/
share/icons/expose/48x48/apps/mbdesktop.png
share/icons/expose/48x48/apps/mbfolder.png
share/icons/expose/48x48/apps/mbmenu.png
share/icons/expose/48x48/apps/volume-max.png
share/icons/expose/48x48/apps/volume-med.png
share/icons/expose/48x48/apps/volume-min.png
share/icons/expose/48x48/apps/volume-mute.png
share/icons/expose/48x48/apps/volume-zero.png
share/icons/mbcrystal/
share/icons/mbcrystal/48x48/
share/icons/mbcrystal/48x48/apps/
share/icons/mbcrystal/48x48/apps/dillo.png
share/icons/mbcrystal/48x48/apps/figment.png
share/icons/mbcrystal/48x48/apps/gpe-calculator.png
share/icons/mbcrystal/48x48/apps/gpe-calendar.png
share/icons/mbcrystal/48x48/apps/gpe-contacts.png
share/icons/mbcrystal/48x48/apps/gpe-sketchbook.png
share/icons/mbcrystal/48x48/apps/gpe-terminal.png
share/icons/mbcrystal/48x48/apps/gpe-timesheet.png
share/icons/mbcrystal/48x48/apps/gpe-today.png
share/icons/mbcrystal/48x48/apps/gpe-todo.png
share/icons/mbcrystal/48x48/apps/mbadd.png
share/icons/mbcrystal/48x48/apps/mbdesktop.png
share/icons/mbcrystal/48x48/apps/mbdown.png
share/icons/mbcrystal/48x48/apps/mbfolder-util.png
share/icons/mbcrystal/48x48/apps/mbfolder.png
share/icons/mbcrystal/48x48/apps/mbfolderprev.png
share/icons/mbcrystal/48x48/apps/mbmenu.png
share/icons/mbcrystal/48x48/apps/mbnoapp.png
share/icons/mbcrystal/48x48/apps/mbremove.png
share/icons/mbcrystal/48x48/apps/mbup.png
share/icons/mbcrystal/48x48/apps/minimo.png
share/themes/
share/themes/Industrial/
share/themes/Industrial/matchbox/
share/themes/Industrial/matchbox/19x17-closebuttonup.png
share/themes/Industrial/matchbox/bgtile.png
share/themes/Industrial/matchbox/bottom-left-6x6.png
share/themes/Industrial/matchbox/bottom-right-6x6.png
share/themes/Industrial/matchbox/theme.desktop
share/themes/Industrial/matchbox/theme.xml
share/themes/Industrial/matchbox/title-bg-tile-16x23.png
share/themes/Industrial/matchbox/title-left-6x23.png
share/themes/Industrial/matchbox/title-right-6x23.png
share/themes/expose/
share/themes/expose/background/
share/themes/expose/background/default.png
share/themes/expose/gtk-2.0/
share/themes/expose/gtk-2.0/arrow_down1.png
share/themes/expose/gtk-2.0/arrow_down2.png
share/themes/expose/gtk-2.0/arrow_left1.png
share/themes/expose/gtk-2.0/arrow_left2.png
share/themes/expose/gtk-2.0/arrow_right1.png
share/themes/expose/gtk-2.0/arrow_right2.png
share/themes/expose/gtk-2.0/arrow_up1.png
share/themes/expose/gtk-2.0/arrow_up2.png
share/themes/expose/gtk-2.0/background.png
share/themes/expose/gtk-2.0/bc-dark.xpm
share/themes/expose/gtk-2.0/bc-light.xpm
share/themes/expose/gtk-2.0/bc.xpm
share/themes/expose/gtk-2.0/blank.png
share/themes/expose/gtk-2.0/button1.png
share/themes/expose/gtk-2.0/button2.png
share/themes/expose/gtk-2.0/button3.png
share/themes/expose/gtk-2.0/button4.png
share/themes/expose/gtk-2.0/check1.png
share/themes/expose/gtk-2.0/check2.png
share/themes/expose/gtk-2.0/default.png
share/themes/expose/gtk-2.0/gtkrc
share/themes/expose/gtk-2.0/icons/
share/themes/expose/gtk-2.0/icons/cdplayer-eject.png
share/themes/expose/gtk-2.0/icons/gtk-add.png
share/themes/expose/gtk-2.0/icons/gtk-cancel.png
share/themes/expose/gtk-2.0/icons/gtk-cdrom.png
share/themes/expose/gtk-2.0/icons/gtk-close.png
share/themes/expose/gtk-2.0/icons/gtk-copy.png
share/themes/expose/gtk-2.0/icons/gtk-cut.png
share/themes/expose/gtk-2.0/icons/gtk-delete.png
share/themes/expose/gtk-2.0/icons/gtk-dialog-error.png
share/themes/expose/gtk-2.0/icons/gtk-dialog-info.png
share/themes/expose/gtk-2.0/icons/gtk-dialog-question.png
share/themes/expose/gtk-2.0/icons/gtk-dialog-warning.png
share/themes/expose/gtk-2.0/icons/gtk-find-and-replace.png
share/themes/expose/gtk-2.0/icons/gtk-find.png
share/themes/expose/gtk-2.0/icons/gtk-go-back.png
share/themes/expose/gtk-2.0/icons/gtk-go-down.png
share/themes/expose/gtk-2.0/icons/gtk-go-forward.png
share/themes/expose/gtk-2.0/icons/gtk-go-up.png
share/themes/expose/gtk-2.0/icons/gtk-goto-bottom.png
share/themes/expose/gtk-2.0/icons/gtk-goto-first.png
share/themes/expose/gtk-2.0/icons/gtk-goto-last.png
share/themes/expose/gtk-2.0/icons/gtk-goto-top.png
share/themes/expose/gtk-2.0/icons/gtk-help.png
share/themes/expose/gtk-2.0/icons/gtk-home.png
share/themes/expose/gtk-2.0/icons/gtk-index.png
share/themes/expose/gtk-2.0/icons/gtk-jump-to.png
share/themes/expose/gtk-2.0/icons/gtk-new.png
share/themes/expose/gtk-2.0/icons/gtk-ok.png
share/themes/expose/gtk-2.0/icons/gtk-open.png
share/themes/expose/gtk-2.0/icons/gtk-paste.png
share/themes/expose/gtk-2.0/icons/gtk-preferences.png
share/themes/expose/gtk-2.0/icons/gtk-print-preview.png
share/themes/expose/gtk-2.0/icons/gtk-print.png
share/themes/expose/gtk-2.0/icons/gtk-quit.png
share/themes/expose/gtk-2.0/icons/gtk-redo.png
share/themes/expose/gtk-2.0/icons/gtk-refresh.png
share/themes/expose/gtk-2.0/icons/gtk-revert.png
share/themes/expose/gtk-2.0/icons/gtk-save-as.png
share/themes/expose/gtk-2.0/icons/gtk-save.png
share/themes/expose/gtk-2.0/icons/gtk-select-color.png
share/themes/expose/gtk-2.0/icons/gtk-select-font.png
share/themes/expose/gtk-2.0/icons/gtk-stop.png
share/themes/expose/gtk-2.0/icons/gtk-undo.png
share/themes/expose/gtk-2.0/icons/gtk-zoom-100.png
share/themes/expose/gtk-2.0/icons/gtk-zoom-fit.png
share/themes/expose/gtk-2.0/icons/gtk-zoom-in.png
share/themes/expose/gtk-2.0/icons/gtk-zoom-out.png
share/themes/expose/gtk-2.0/icons/iconrc
share/themes/expose/gtk-2.0/icons/panel-find.png
share/themes/expose/gtk-2.0/icons/panel-lockscreen.png
share/themes/expose/gtk-2.0/icons/panel-screenshot.png
share/themes/expose/gtk-2.0/icons/stock_multimedia.png
share/themes/expose/gtk-2.0/in.png
share/themes/expose/gtk-2.0/obutton1.png
share/themes/expose/gtk-2.0/obutton2.png
share/themes/expose/gtk-2.0/option1.png
share/themes/expose/gtk-2.0/option2.png
share/themes/expose/gtk-2.0/radio1.png
share/themes/expose/gtk-2.0/radio2.png
share/themes/expose/gtk-2.0/spin1.png
share/themes/expose/gtk-2.0/spin2.png
share/themes/expose/gtk-2.0/spin3.png
share/themes/expose/gtk-2.0/trough.png
share/themes/expose/gtk-2.0/up.png
share/themes/expose/matchbox/
share/themes/expose/matchbox/bottom-left.png
share/themes/expose/matchbox/bottom-right.png
share/themes/expose/matchbox/bottom.png
share/themes/expose/matchbox/button-close.png
share/themes/expose/matchbox/button-inactive.png
share/themes/expose/matchbox/left-edge.png
share/themes/expose/matchbox/left-side.png
share/themes/expose/matchbox/menubg.png
share/themes/expose/matchbox/right-edge.png
share/themes/expose/matchbox/right-side.png
share/themes/expose/matchbox/theme.desktop
share/themes/expose/matchbox/theme.xml
share/themes/expose/matchbox/title-bar.png
share/themes/mbcrystal/
share/themes/mbcrystal/background/
share/themes/mbcrystal/background/default.jpg
share/themes/mbcrystal/gtkrc-2.0/
share/themes/mbcrystal/gtkrc-2.0/gtkrc
share/themes/mbcrystal/matchbox/
share/themes/mbcrystal/matchbox/bottom-tile.png
share/themes/mbcrystal/matchbox/bottomleft.png
share/themes/mbcrystal/matchbox/bottomright.png
share/themes/mbcrystal/matchbox/buttsmallclosedown.png
share/themes/mbcrystal/matchbox/buttsmallmaxdown.png
share/themes/mbcrystal/matchbox/buttsmallmindown.png
share/themes/mbcrystal/matchbox/close.png
share/themes/mbcrystal/matchbox/dialog-side.png
share/themes/mbcrystal/matchbox/minimise.png
share/themes/mbcrystal/matchbox/next.png
share/themes/mbcrystal/matchbox/noappicon.png
share/themes/mbcrystal/matchbox/panelbg.png
share/themes/mbcrystal/matchbox/prev.png
share/themes/mbcrystal/matchbox/theme.desktop
share/themes/mbcrystal/matchbox/theme.xml
share/themes/mbcrystal/matchbox/topleft.png
share/themes/mbcrystal/matchbox/topright.png
share/themes/mbcrystal/matchbox/toptile.png

View File

@ -1,28 +0,0 @@
# $OpenBSD: Makefile,v 1.15 2010/11/22 08:37:03 espie Exp $
COMMENT= window manager suitable for low-resolution screens
DISTNAME= matchbox-window-manager-1.2
REVISION= 1
MASTER_SITES= ${MASTER_SITES_MATCHBOX:=matchbox-window-manager/1.2/}
WANTLIB= ICE SM X11 Xau Xcursor Xdmcp Xext Xfixes Xft Xrender \
c expat fontconfig freetype glib-2.0 gmodule-2.0 gobject-2.0 \
jpeg m pango-1.0 pangoft2-1.0 pangoxft-1.0 png z \
pthread-stubs xcb startup-notification-1 mb
MODULES= devel/gettext
RUN_DEPENDS= x11/matchbox/matchbox-common
LIB_DEPENDS= devel/startup-notification \
x11/matchbox/libmatchbox
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS+= --enable-expat \
--enable-session \
--enable-startup-notification
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/libpng -I${X11BASE}/include " \
LDFLAGS="-L${LOCALBASE}/lib"
CFLAGS+= -I${LOCALBASE}/include/libpng -I${X11BASE}/include
.include <bsd.port.mk>

View File

@ -1,5 +0,0 @@
MD5 (matchbox/matchbox-window-manager-1.2.tar.bz2) = PhWNz1eCO1XJJtlbJFUA+w==
RMD160 (matchbox/matchbox-window-manager-1.2.tar.bz2) = UTChEPeIl7Ci1z9ZoFAgoIu1mdQ=
SHA1 (matchbox/matchbox-window-manager-1.2.tar.bz2) = TozgO1TzY6hdvI8ZJdS4AwNrzUY=
SHA256 (matchbox/matchbox-window-manager-1.2.tar.bz2) = gaI6SveXzzUHWf1axzh5cBWmbdXbovPZ88aQhQbBzv8=
SIZE (matchbox/matchbox-window-manager-1.2.tar.bz2) = 208813

View File

@ -1,55 +0,0 @@
$OpenBSD: patch-data_Makefile_in,v 1.4 2008/11/11 22:42:17 jasper Exp $
--- data/Makefile.in.orig Thu Apr 12 18:40:34 2007
+++ data/Makefile.in Sun Nov 9 22:02:27 2008
@@ -57,7 +57,7 @@ am__vpath_adj = case $$p in \
*) f=$$p;; \
esac;
am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
-am__installdirs = "$(DESTDIR)$(confdir)" "$(DESTDIR)$(defaultsdir)"
+am__installdirs = "$(DESTDIR)$(sampledir)" "$(DESTDIR)$(defaultsdir)"
confDATA_INSTALL = $(INSTALL_DATA)
defaultsDATA_INSTALL = $(INSTALL_DATA)
DATA = $(conf_DATA) $(defaults_DATA)
@@ -182,6 +182,7 @@ target_alias = @target_alias@
@ENABLE_SCHEMAS_FALSE@SUBDIRS = themes
@ENABLE_SCHEMAS_TRUE@SUBDIRS = themes schemas
confdir = $(sysconfdir)/matchbox
+sampledir = $(datadir)/examples/matchbox
conf_DATA = kbdconfig
defaultsdir = $(datadir)/matchbox
@WANT_STANDALONE_FALSE@defaults_DATA = mbnoapp.xpm
@@ -222,20 +223,20 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4
uninstall-info-am:
install-confDATA: $(conf_DATA)
@$(NORMAL_INSTALL)
- test -z "$(confdir)" || $(mkdir_p) "$(DESTDIR)$(confdir)"
+ test -z "$(sampledir)" || $(mkdir_p) "$(DESTDIR)$(sampledir)"
@list='$(conf_DATA)'; for p in $$list; do \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
f=$(am__strip_dir) \
- echo " $(confDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(confdir)/$$f'"; \
- $(confDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(confdir)/$$f"; \
+ echo " $(confDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(sampledir)/$$f'"; \
+ $(confDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(sampledir)/$$f"; \
done
uninstall-confDATA:
@$(NORMAL_UNINSTALL)
@list='$(conf_DATA)'; for p in $$list; do \
f=$(am__strip_dir) \
- echo " rm -f '$(DESTDIR)$(confdir)/$$f'"; \
- rm -f "$(DESTDIR)$(confdir)/$$f"; \
+ echo " rm -f '$(DESTDIR)$(sampledir)/$$f'"; \
+ rm -f "$(DESTDIR)$(sampledir)/$$f"; \
done
install-defaultsDATA: $(defaults_DATA)
@$(NORMAL_INSTALL)
@@ -434,7 +435,7 @@ check: check-recursive
all-am: Makefile $(DATA)
installdirs: installdirs-recursive
installdirs-am:
- for dir in "$(DESTDIR)$(confdir)" "$(DESTDIR)$(defaultsdir)"; do \
+ for dir in "$(DESTDIR)$(sampledir)" "$(DESTDIR)$(defaultsdir)"; do \
test -z "$$dir" || $(mkdir_p) "$$dir"; \
done
install: install-recursive

View File

@ -1,2 +0,0 @@
matchbox-window-manager is a pretty much unique X window manager with a
classic PDA management policy.

View File

@ -1,46 +0,0 @@
@comment $OpenBSD: PLIST,v 1.4 2009/03/23 18:39:48 ajacoutot Exp $
@bin bin/matchbox-remote
@bin bin/matchbox-window-manager
share/examples/matchbox/
@sample ${SYSCONFDIR}/matchbox/
share/examples/matchbox/kbdconfig
@sample ${SYSCONFDIR}/matchbox/kbdconfig
share/matchbox/mbnoapp.xpm
share/themes/
share/themes/Default/
share/themes/Default/matchbox/
share/themes/Default/matchbox/acceptbutton.xpm
share/themes/Default/matchbox/closebutton.xpm
share/themes/Default/matchbox/menubutton.xpm
share/themes/Default/matchbox/theme.desktop
share/themes/Default/matchbox/theme.xml
share/themes/MBOpus/
share/themes/MBOpus/matchbox/
share/themes/MBOpus/matchbox/closebutton.png
share/themes/MBOpus/matchbox/panelbg.png
share/themes/MBOpus/matchbox/theme.desktop
share/themes/MBOpus/matchbox/theme.xml
share/themes/blondie/
share/themes/blondie/matchbox/
share/themes/blondie/matchbox/accept.png
share/themes/blondie/matchbox/close-small.png
share/themes/blondie/matchbox/close.png
share/themes/blondie/matchbox/dialogbottomleft.png
share/themes/blondie/matchbox/dialogbottomright.png
share/themes/blondie/matchbox/dialogbottomtile.png
share/themes/blondie/matchbox/dialogtopleft.png
share/themes/blondie/matchbox/dialogtopleft2.png
share/themes/blondie/matchbox/dialogtopright.png
share/themes/blondie/matchbox/dialogtopright2.png
share/themes/blondie/matchbox/dialogtoptile.png
share/themes/blondie/matchbox/dialogtoptile2.png
share/themes/blondie/matchbox/hide.png
share/themes/blondie/matchbox/menu.png
share/themes/blondie/matchbox/next.png
share/themes/blondie/matchbox/prev.png
share/themes/blondie/matchbox/que.png
share/themes/blondie/matchbox/theme.desktop
share/themes/blondie/matchbox/theme.xml
share/themes/blondie/matchbox/titleleft.png
share/themes/blondie/matchbox/titleright.png
share/themes/blondie/matchbox/titlestrip.png