From owner-freebsd-ports Sun Jun 18 2:50: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BA16F37B968 for ; Sun, 18 Jun 2000 02:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA05366; Sun, 18 Jun 2000 02:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from granger.mail.mindspring.net (granger.mail.mindspring.net [207.69.200.148]) by hub.freebsd.org (Postfix) with ESMTP id 16F4837B957 for ; Sun, 18 Jun 2000 02:48:25 -0700 (PDT) (envelope-from kbyanc@kronos.alcnet.com) Received: from gateway.posi.net (user-33qtieh.dialup.mindspring.com [199.174.201.209]) by granger.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id FAA00807 for ; Sun, 18 Jun 2000 05:48:09 -0400 (EDT) Received: from laptop.corp.ONElist.com (laptop [10.0.0.20]) by gateway.posi.net (8.9.3/8.9.3) with ESMTP id CAA08280 for ; Sun, 18 Jun 2000 02:47:36 -0700 (PDT) (envelope-from kbyanc@gateway.posi.net) Received: (from kbyanc@localhost) by laptop.corp.ONElist.com (8.9.3/8.9.3) id CAA79779; Sun, 18 Jun 2000 02:25:53 -0700 (PDT) (envelope-from kbyanc@mail.posi.net) Message-Id: <200006180925.CAA79779@laptop.corp.ONElist.com> Date: Sun, 18 Jun 2000 02:25:53 -0700 (PDT) From: kbyanc@posi.net Reply-To: kbyanc@posi.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/19361: new port: x11/erun Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 19361 >Category: ports >Synopsis: new port: x11/erun >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: Sun Jun 18 02:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Kelly Yancey >Release: FreeBSD 4.0-STABLE i386 >Organization: >Environment: >Description: # 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: # # x11/erun # x11/erun/Makefile # x11/erun/pkg # x11/erun/pkg/PLIST # x11/erun/pkg/DESCR # x11/erun/pkg/COMMENT # x11/erun/files # x11/erun/files/md5 # x11/erun/patches # x11/erun/patches/patch-aa # echo c - x11/erun mkdir -p x11/erun > /dev/null 2>&1 echo x - x11/erun/Makefile sed 's/^X//' >x11/erun/Makefile << 'END-of-x11/erun/Makefile' X# New ports collection makefile for: E-Run 1.2 X# Date created: 17 June 2000 X# Whom: Kelly Yancey X# X# $FreeBSD$ X# X XPORTNAME= E-Run XPORTVERSION= 1.2 XCATEGORIES= x11 XMASTER_SITES= http://void.mapopolis.com/~jacob/c0de/ X XMAINTAINER= kbyanc@posi.net X XLIB_DEPENDS= epplet.1:${PORTSDIR}/x11-wm/epplets X XWRKSRC= ${WRKDIR}/${PORTNAME} X XUSE_X_PREFIX= yes X X.include END-of-x11/erun/Makefile echo c - x11/erun/pkg mkdir -p x11/erun/pkg > /dev/null 2>&1 echo x - x11/erun/pkg/PLIST sed 's/^X//' >x11/erun/pkg/PLIST << 'END-of-x11/erun/pkg/PLIST' Xbin/E-Run.epplet END-of-x11/erun/pkg/PLIST echo x - x11/erun/pkg/DESCR sed 's/^X//' >x11/erun/pkg/DESCR << 'END-of-x11/erun/pkg/DESCR' XThis epplet provides a small text entry field for launching programs. X X -Kelly X kbyanc@posi.net END-of-x11/erun/pkg/DESCR echo x - x11/erun/pkg/COMMENT sed 's/^X//' >x11/erun/pkg/COMMENT << 'END-of-x11/erun/pkg/COMMENT' XA simple epplet for launching arbitrary programs END-of-x11/erun/pkg/COMMENT echo c - x11/erun/files mkdir -p x11/erun/files > /dev/null 2>&1 echo x - x11/erun/files/md5 sed 's/^X//' >x11/erun/files/md5 << 'END-of-x11/erun/files/md5' XMD5 (E-Run-1.2.tar.gz) = 2f57ef2f32bd545bd0522cd0f7613f2b END-of-x11/erun/files/md5 echo c - x11/erun/patches mkdir -p x11/erun/patches > /dev/null 2>&1 echo x - x11/erun/patches/patch-aa sed 's/^X//' >x11/erun/patches/patch-aa << 'END-of-x11/erun/patches/patch-aa' X--- Makefile.orig Tue Dec 14 11:14:20 1999 X+++ Makefile Sun Jun 18 01:38:17 2000 X@@ -1,12 +1,17 @@ X-CFLAGS = -O3 -g X-LINKFLAGS = -lepplet X+CFLAGS ?= -O3 -g X+LINKFLAGS = -lepplet -L/usr/X11R6/lib X+INCLUDEDIRS = -I/usr/X11R6/include X X-CC = gcc X+CFLAGS += $(INCLUDEDIRS) X+ X+CC ?= gcc X X EXEC_NAME = E-Run.epplet X EXEC_OBJECTS = E-Run.o X X-INSTALL_DIR = /usr/local/bin X+PREFIX ?= /usr/local X+INSTALL_DIR = ${PREFIX}/bin X+INSTALL_PROGRAM ?= install -c -m 755 X X all: $(EXEC_OBJECTS) X $(CC) -o $(EXEC_NAME) $(EXEC_OBJECTS) $(LINKFLAGS) X@@ -15,4 +20,4 @@ X rm -f $(EXEC_OBJECTS) $(EXEC_NAME) *~ X X install: X- install -o root -m 0555 $(EXEC_NAME) $(INSTALL_DIR) X+ $(INSTALL_PROGRAM) $(EXEC_NAME) $(INSTALL_DIR) END-of-x11/erun/patches/patch-aa exit >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message