From owner-freebsd-ports Thu Jul 5 16:40:57 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 95A5737B50D for ; Thu, 5 Jul 2001 16:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f65Ne4T57453; Thu, 5 Jul 2001 16:40:04 -0700 (PDT) (envelope-from gnats) Received: from wlgrv1.pa.home.com (cc92687-a.wlgrv1.pa.home.com [24.5.63.190]) by hub.freebsd.org (Postfix) with ESMTP id CFF5137B401 for ; Thu, 5 Jul 2001 16:33:56 -0700 (PDT) (envelope-from pat@wlgrv1.pa.home.com) Received: (from root@localhost) by wlgrv1.pa.home.com (8.11.4/8.11.4) id f65NXuV41697; Thu, 5 Jul 2001 19:33:56 -0400 (EDT) (envelope-from pat) Message-Id: <200107052333.f65NXuV41697@wlgrv1.pa.home.com> Date: Thu, 5 Jul 2001 19:33:56 -0400 (EDT) From: pat@databits.net Reply-To: pat@databits.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/28745: New port x11/wmcliphist Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 28745 >Category: ports >Synopsis: New port x11/wmcliphist >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Jul 05 16:40:04 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Patrick Li >Release: FreeBSD 4.3-STABLE i386 >Organization: N/A >Environment: System: FreeBSD bottlenek 4.3-STABLE FreeBSD 4.3-STABLE #0: Wed Jul 4 05:55:31 EDT 2001 pat@bottlenek:/usr/src/sys/compile/BOTTLENEK i386 >Description: wmcliphist is a clipboard history dockapp that keeps history of clipboard operations and allows you to put previously copied items back to the clipboard for pasting to other applications. >How-To-Repeat: N/A >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # wmcliphist # wmcliphist/Makefile # wmcliphist/distinfo # wmcliphist/pkg-comment # wmcliphist/pkg-descr # wmcliphist/pkg-plist # wmcliphist/files # wmcliphist/files/patch-Makefile # echo c - wmcliphist mkdir -p wmcliphist > /dev/null 2>&1 echo x - wmcliphist/Makefile sed 's/^X//' >wmcliphist/Makefile << 'END-of-wmcliphist/Makefile' X# New ports collection makefile for: wmcliphist X# Date created: Thu Jul 5 14:43:55 EDT 2001 X# Whom: Patrick Li X# X# $FreeBSD$ X# X XPORTNAME= wmcliphist XPORTVERSION= 0.2 XCATEGORIES= x11 windowmaker XMASTER_SITES= http://linux.nawebu.cz/wmcliphist/ X XMAINTAINER= pat@databits.net X XUSE_X_PREFIX= yes XUSE_XPM= yes XUSE_GTK= yes X Xdo-install: X @${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin X.ifndef(NOPORTDOCS) X @${INSTALL} -d -o ${SHAREOWN} -g ${SHAREGRP} -m ${SHAREMODE} \ X ${PREFIX}/share/doc/${PORTNAME} X @${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/${PORTNAME} X.endif #NOPORTDOCS X X.include END-of-wmcliphist/Makefile echo x - wmcliphist/distinfo sed 's/^X//' >wmcliphist/distinfo << 'END-of-wmcliphist/distinfo' XMD5 (wmcliphist-0.2.tar.gz) = d8d7d6ec26e958c95651c7dd9c7b5d07 END-of-wmcliphist/distinfo echo x - wmcliphist/pkg-comment sed 's/^X//' >wmcliphist/pkg-comment << 'END-of-wmcliphist/pkg-comment' XClipboard history management dockapp for Window Maker END-of-wmcliphist/pkg-comment echo x - wmcliphist/pkg-descr sed 's/^X//' >wmcliphist/pkg-descr << 'END-of-wmcliphist/pkg-descr' Xwmcliphist is a clipboard history dockapp that Xkeeps history of clipboard operations and allows Xyou to put previously copied items back to the Xclipboard for pasting to other applications. X XWWW: http://linux.nawebu.cz/wmcliphist/ XAuthor: Michal Krause X X- Patrick Li END-of-wmcliphist/pkg-descr echo x - wmcliphist/pkg-plist sed 's/^X//' >wmcliphist/pkg-plist << 'END-of-wmcliphist/pkg-plist' Xbin/wmcliphist X%%PORTDOCS%%share/doc/wmcliphist/README X%%PORTDOCS%%@dirrm share/doc/wmcliphist END-of-wmcliphist/pkg-plist echo c - wmcliphist/files mkdir -p wmcliphist/files > /dev/null 2>&1 echo x - wmcliphist/files/patch-Makefile sed 's/^X//' >wmcliphist/files/patch-Makefile << 'END-of-wmcliphist/files/patch-Makefile' X--- Makefile.orig Tue Mar 20 18:27:15 2001 X+++ Makefile Thu Jul 5 15:58:20 2001 X@@ -1,13 +1,14 @@ X CC = gcc X-CFLAGS = -Wall -g -ansi `gtk-config --cflags` -I. -Ifoodock X-LFLAGS = `gtk-config --libs` X+CFLAGS += -Wall -g -ansi `${GTK_CONFIG} --cflags` $(INCDIR) X+LFLAGS = `${GTK_CONFIG} --libs` X+INCDIR = -I. -Ifoodock -I${X11BASE}/include X OBJECTS = wmcliphist.o X TARGET = wmcliphist X X all: $(TARGET) X X wmcliphist: $(OBJECTS) foodock/foodock.o X- $(CC) $(LFLAGS) -o $@ $(OBJECTS) foodock/foodock.o X+ $(CC) $(CFLAGS) $(LFLAGS) -o $@ $(OBJECTS) foodock.o X X wmcliphist.o: wmcliphist.c icon.xpm foodock/foodock.h X END-of-wmcliphist/files/patch-Makefile exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message