1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

a gtk+ clone of xmessage. displays a given text in a X11 window

PR:		12696
Submitted by:	Dominik Brettnacher <domi@saargate.de>
This commit is contained in:
Satoshi Taoka 1999-09-09 02:22:48 +00:00
parent 1efd02c09f
commit 7723caa4c7
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=21467
6 changed files with 46 additions and 0 deletions

19
x11/gmessage/Makefile Normal file
View File

@ -0,0 +1,19 @@
# New ports collection makefile for: gmessage
# Version required: 0.2
# Date created: Sun Jul 18 1999
# Whom: domi@saargate.de
#
# $FreeBSD$
#
DISTNAME= gmessage-0.2
CATEGORIES= x11
MASTER_SITES= http://www.math.uni-goettingen.de/dadler/gmessage/
MAINTAINER= domi@saargate.de
LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12
USE_X_PREFIX= yes
.include <bsd.port.mk>

1
x11/gmessage/distinfo Normal file
View File

@ -0,0 +1 @@
MD5 (gmessage-0.2.tar.gz) = c19e1b29ca92658459f16d14754e19ab

View File

@ -0,0 +1,20 @@
--- Makefile.orig Sun Jul 18 17:55:35 1999
+++ Makefile Sun Jul 18 17:57:42 1999
@@ -1,6 +1,6 @@
CC = gcc
-CFLAGS = `gtk-config --cflags`
-LDLIBS = `gtk-config --libs`
+CFLAGS = `gtk12-config --cflags`
+LDLIBS = `gtk12-config --libs`
all: gmessage
@@ -8,7 +8,7 @@
$(CC) $(CFLAGS) gmessage.c -o gmessage $(OBJS) $(LDLIBS)
install: gmessage
- cp ./gmessage /usr/local/bin
+ install -m 0555 -o root -g wheel -s gmessage /usr/X11R6/bin
clean:
$(RM) *.o core gmessage

1
x11/gmessage/pkg-comment Normal file
View File

@ -0,0 +1 @@
a gtk+ clone of xmessage. displays a given text in a X11 window

4
x11/gmessage/pkg-descr Normal file
View File

@ -0,0 +1,4 @@
gmessage is a gtk+ clone of xmessage. It displays a given text in a X11 GTK
window. you can optionally give a timeout.
WWW: http://www.math.uni-goettingen.de/dadler/gmessage/

1
x11/gmessage/pkg-plist Normal file
View File

@ -0,0 +1 @@
bin/gmessage