diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-08-17 07:41:07 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-08-17 07:41:07 +0000 |
commit | dc57559be2c2ee4927e19cd13f762fc0b972bb16 (patch) | |
tree | 3183b48756b82641dc08bb4258c27137c146b286 /x11-wm | |
parent | f3577ab988181f7456df03e371a5a2443c43567e (diff) | |
download | ports-dc57559be2c2ee4927e19cd13f762fc0b972bb16.tar.gz ports-dc57559be2c2ee4927e19cd13f762fc0b972bb16.zip |
Notes
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/Makefile | 1 | ||||
-rw-r--r-- | x11-wm/peksystray/Makefile | 25 | ||||
-rw-r--r-- | x11-wm/peksystray/distinfo | 2 | ||||
-rw-r--r-- | x11-wm/peksystray/files/patch-src::peksystray.c | 40 | ||||
-rw-r--r-- | x11-wm/peksystray/pkg-descr | 5 |
5 files changed, 73 insertions, 0 deletions
diff --git a/x11-wm/Makefile b/x11-wm/Makefile index 007a1ed582d3..11893388cde4 100644 --- a/x11-wm/Makefile +++ b/x11-wm/Makefile @@ -71,6 +71,7 @@ SUBDIR += oroborus SUBDIR += pager SUBDIR += pawm + SUBDIR += peksystray SUBDIR += pekwm SUBDIR += phluid SUBDIR += piewm diff --git a/x11-wm/peksystray/Makefile b/x11-wm/peksystray/Makefile new file mode 100644 index 000000000000..f259007306c1 --- /dev/null +++ b/x11-wm/peksystray/Makefile @@ -0,0 +1,25 @@ +# New ports collection makefile for: PekSysTray +# Date created: 08 Jul 2004 +# Whom: Alexey Dokuchaev <danfe@regency.nsu.ru> +# +# $FreeBSD$ +# + +PORTNAME= peksystray +PORTVERSION= 0.2 +CATEGORIES= x11-wm +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= danfe@regency.nsu.ru +COMMENT= A system tray dockapp similar to the GNOME notification area applet + +GNU_CONFIGURE= yes +USE_X_PREFIX= yes + +PLIST_FILES= bin/peksystray + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${PREFIX}/bin + +.include <bsd.port.mk> diff --git a/x11-wm/peksystray/distinfo b/x11-wm/peksystray/distinfo new file mode 100644 index 000000000000..7062cbb776dd --- /dev/null +++ b/x11-wm/peksystray/distinfo @@ -0,0 +1,2 @@ +MD5 (peksystray-0.2.tar.gz) = ebc882971dddf4bac5bda77c232e7233 +SIZE (peksystray-0.2.tar.gz) = 67117 diff --git a/x11-wm/peksystray/files/patch-src::peksystray.c b/x11-wm/peksystray/files/patch-src::peksystray.c new file mode 100644 index 000000000000..913573db9d50 --- /dev/null +++ b/x11-wm/peksystray/files/patch-src::peksystray.c @@ -0,0 +1,40 @@ +--- src/peksystray.c.orig Thu Jul 8 13:01:08 2004 ++++ src/peksystray.c Thu Jul 8 13:02:21 2004 +@@ -66,22 +66,21 @@ + void + display_help () + { +- fprintf (stdout, " +-%s - version %s +-Copyright 2003, Mohammed Sameer <uniball@linux-egypt.org> +- +-Usage: %s [OPTIONS] +- +-Options: +- --help\t Display this help. +- --version\t Display version number and exit. +- --display DISPLAY\t The X display to connect to. +- --icon-size SIZE\t Icon size. Default is 16. +- --vertical\t Vertical layout. Default is horizontal. +- --border SIZE\t Border width. Default is 0; +- --multiple\t Open each icon in a separate window. Default is no. +- +-", PACKAGE, VERSION, PACKAGE); ++ fprintf (stdout, ++"\n%s - version %s\n" ++"Copyright 2003, Mohammed Sameer <uniball@linux-egypt.org>\n" ++"\n" ++"Usage: %s [OPTIONS]\n" ++"\n" ++"Options:\n" ++" --help\t Display this help.\n" ++" --version\t Display version number and exit.\n" ++" --display DISPLAY\t The X display to connect to.\n" ++" --icon-size SIZE\t Icon size. Default is 16.\n" ++" --vertical\t Vertical layout. Default is horizontal.\n" ++" --border SIZE\t Border width. Default is 0;\n" ++" --multiple\t Open each icon in a separate window. Default is no.\n" ++"\n", PACKAGE, VERSION, PACKAGE); + exit (0); + } + diff --git a/x11-wm/peksystray/pkg-descr b/x11-wm/peksystray/pkg-descr new file mode 100644 index 000000000000..d8f412bac830 --- /dev/null +++ b/x11-wm/peksystray/pkg-descr @@ -0,0 +1,5 @@ +PekSysTray is a system tray "notification area" dockapp similar to the GNOME +notification area applet. But it's designed for any window manager that +supports docking. + +WWW: http://sourceforge.net/projects/peksystray/ |