diff options
author | joerg <joerg@FreeBSD.org> | 1996-05-06 19:45:42 +0800 |
---|---|---|
committer | joerg <joerg@FreeBSD.org> | 1996-05-06 19:45:42 +0800 |
commit | dbe8d85385ebcab8f34dfd2a842d419ace7c5d56 (patch) | |
tree | 148f40e3c8b43a6229533b0e427550f200deb14c /deskutils/xpostit | |
parent | ea250bf4600bb70e81b165ba424320b1c496abbb (diff) | |
download | freebsd-ports-graphics-dbe8d85385ebcab8f34dfd2a842d419ace7c5d56.tar.gz freebsd-ports-graphics-dbe8d85385ebcab8f34dfd2a842d419ace7c5d56.tar.zst freebsd-ports-graphics-dbe8d85385ebcab8f34dfd2a842d419ace7c5d56.zip |
XPostIt -- Stick small Post-it notes onto your X11 screen.
Diffstat (limited to 'deskutils/xpostit')
-rw-r--r-- | deskutils/xpostit/Makefile | 24 | ||||
-rw-r--r-- | deskutils/xpostit/distinfo | 1 | ||||
-rw-r--r-- | deskutils/xpostit/files/patch-aa | 40 | ||||
-rw-r--r-- | deskutils/xpostit/pkg-comment | 1 | ||||
-rw-r--r-- | deskutils/xpostit/pkg-descr | 23 | ||||
-rw-r--r-- | deskutils/xpostit/pkg-plist | 4 |
6 files changed, 93 insertions, 0 deletions
diff --git a/deskutils/xpostit/Makefile b/deskutils/xpostit/Makefile new file mode 100644 index 00000000000..acd6bd04800 --- /dev/null +++ b/deskutils/xpostit/Makefile @@ -0,0 +1,24 @@ +# New ports collection makefile for: xpostit +# Version required: 3.3.1 +# Date created: 6 May 1996 +# Whom: joerg +# +# $Id$ +# + +DISTNAME= xpostit3.3.1 +EXTRACT_SUFX= .tar.Z +WRKSRC= work/xpostit +CATEGORIES+= x11 +# +# Not all servers archie could find actually still have it. Alas, some +# servers only have the comp.sources.x version, with its distfile named +# `part01.gz'. +# +MASTER_SITES= ftp://rs104.hrz.th-darmstadt.de/pub/X11/R5contrib/ + +MAINTAINER= joerg@FreeBSD.ORG + +USE_IMAKE= yes + +.include <bsd.port.mk> diff --git a/deskutils/xpostit/distinfo b/deskutils/xpostit/distinfo new file mode 100644 index 00000000000..170bad58a8a --- /dev/null +++ b/deskutils/xpostit/distinfo @@ -0,0 +1 @@ +MD5 (xpostit3.3.1.tar.Z) = 9fa0b297118054ea3242e0ae00cf2345 diff --git a/deskutils/xpostit/files/patch-aa b/deskutils/xpostit/files/patch-aa new file mode 100644 index 00000000000..3a45504b038 --- /dev/null +++ b/deskutils/xpostit/files/patch-aa @@ -0,0 +1,40 @@ +--- plaid.c.orig Thu Dec 10 17:40:26 1992 ++++ plaid.c Mon May 6 13:23:17 1996 +@@ -60,6 +60,7 @@ + { + Arg args[4]; + register int nargs; ++ Dimension width, height; + + /* + * Create the plaid widget. +@@ -78,20 +79,22 @@ + * Get the width and height of the widget. + */ + nargs = 0; +- SetArg(XtNwidth, NULL); +- SetArg(XtNheight, NULL); ++ SetArg(XtNwidth, &width); ++ SetArg(XtNheight, &height); + XtGetValues(plaidwidget, args, nargs); + + /* + * If the user didn't set them, then we + * should set them to the defaults. + */ +- if ((args[0].value == 0) || (args[1].value == 0)) { +- if (args[0].value == 0) +- XtSetArg(args[0], XtNwidth, DefaultPlaidWidth); ++ if (width == 0 || height == 0) { ++ nargs = 0; + +- if (args[1].value == 0) +- XtSetArg(args[1], XtNheight, DefaultPlaidHeight); ++ if (width == 0) ++ SetArg(XtNwidth, DefaultPlaidWidth); ++ ++ if (height == 0) ++ SetArg(XtNheight, DefaultPlaidHeight); + + XtSetValues(plaidwidget, args, nargs); + } diff --git a/deskutils/xpostit/pkg-comment b/deskutils/xpostit/pkg-comment new file mode 100644 index 00000000000..9e9fe4516ed --- /dev/null +++ b/deskutils/xpostit/pkg-comment @@ -0,0 +1 @@ +PostIt (R) messages onto your X11 screen diff --git a/deskutils/xpostit/pkg-descr b/deskutils/xpostit/pkg-descr new file mode 100644 index 00000000000..d8fe3a61340 --- /dev/null +++ b/deskutils/xpostit/pkg-descr @@ -0,0 +1,23 @@ +Copyright 1991 by David A. Curry + +Permission to use, copy, modify, distribute, and sell this software and its +documentation for any purpose is hereby granted without fee, provided that +the above copyright notice appear in all copies and that both that copyright +notice and this permission notice appear in supporting documentation. The +author makes no representations about the suitability of this software for +any purpose. It is provided "as is" without express or implied warranty. + +------------------------------------------------------------------------ + +This is XPostIt Version 3.3.1 for X11 Releases 4 and 5. XPostIt allows +you to create small notes to yourself in windows on the screen, and save +them in disk files. This is generally neater than having numerous real +Post-it notes stuck all around the edges of your monitor. + +------------------------------------------------------------------------ + +Dave Curry +Purdue University +Engineering Computer Network +West Lafayette, IN 47907 +davy@ecn.purdue.edu diff --git a/deskutils/xpostit/pkg-plist b/deskutils/xpostit/pkg-plist new file mode 100644 index 00000000000..fccb2d5c745 --- /dev/null +++ b/deskutils/xpostit/pkg-plist @@ -0,0 +1,4 @@ +bin/xpostit +lib/X11/app-defaults/XPostit +lib/X11/app-defaults/XPostit-color +man/man1/xpostit.1.gz |