1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00

XPostIt -- Stick small Post-it notes onto your X11 screen.

This commit is contained in:
Joerg Wunsch 1996-05-06 11:45:42 +00:00
parent ad350a399e
commit ecc7ab71ca
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=3070
6 changed files with 93 additions and 0 deletions

View File

@ -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>

View File

@ -0,0 +1 @@
MD5 (xpostit3.3.1.tar.Z) = 9fa0b297118054ea3242e0ae00cf2345

View File

@ -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);
}

View File

@ -0,0 +1 @@
PostIt (R) messages onto your X11 screen

View File

@ -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

View File

@ -0,0 +1,4 @@
bin/xpostit
lib/X11/app-defaults/XPostit
lib/X11/app-defaults/XPostit-color
man/man1/xpostit.1.gz