From owner-freebsd-ports Tue Sep 25 19:50:21 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 3402937B419 for ; Tue, 25 Sep 2001 19:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f8Q2o1086074; Tue, 25 Sep 2001 19:50:01 -0700 (PDT) (envelope-from gnats) Received: from cc92687-a.wlgrv1.pa.home.com (cc92687-a.wlgrv1.pa.home.com [24.5.63.190]) by hub.freebsd.org (Postfix) with ESMTP id 8CBAC37B418 for ; Tue, 25 Sep 2001 19:41:47 -0700 (PDT) Received: (from root@localhost) by cc92687-a.wlgrv1.pa.home.com (8.11.6/8.11.6) id f8Q2fkf75525; Tue, 25 Sep 2001 22:41:46 -0400 (EDT) (envelope-from pat) Message-Id: <200109260241.f8Q2fkf75525@cc92687-a.wlgrv1.pa.home.com> Date: Tue, 25 Sep 2001 22:41:46 -0400 (EDT) From: Patrick Li Reply-To: Patrick Li To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/30832: New port: misc/gkrellmaflag 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: 30832 >Category: ports >Synopsis: New port: misc/gkrellmaflag >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: Tue Sep 25 19:50:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Patrick Li >Release: FreeBSD 4.4-STABLE i386 >Organization: N/A >Environment: System: FreeBSD bottlenek 4.4-STABLE FreeBSD 4.4-STABLE #0: Fri Sep 21 14:27:29 EDT 2001 root@:/usr/src/sys/compile/BOTTLENEK i386 >Description: A GKrellM Plugin that displays a waving American flag as a memorial for the victims of the 9-11 attacks WWW: http://www.geocities.com/saintdead/earth_anim.html >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: # # gkrellmaflag # gkrellmaflag/Makefile # gkrellmaflag/distinfo # gkrellmaflag/files # gkrellmaflag/files/patch-Makefile # gkrellmaflag/pkg-plist # gkrellmaflag/pkg-comment # gkrellmaflag/pkg-descr # echo c - gkrellmaflag mkdir -p gkrellmaflag > /dev/null 2>&1 echo x - gkrellmaflag/Makefile sed 's/^X//' >gkrellmaflag/Makefile << 'END-of-gkrellmaflag/Makefile' X# New ports collection makefile for: gkrellmaflag X# Date Created: Tue Sep 25 20:01:10 EDT 2001 X# Whom: Patrick Li X# X# $FreeBSD$ X# X XPORTNAME= aflag XPORTVERSION= 0.1 XCATEGORIES= misc XMASTER_SITES= http://www.geocities.com/saintdead/ XPKGNAMEPREFIX= gkrellm XDISTNAME= ${PORTNAME}_anim-${PORTVERSION} X XMAINTAINER= pat@databits.net X XBUILD_DEPENDS= ${X11BASE}/include/gkrellm/gkrellm.h:${PORTSDIR}/sysutils/gkrellm XRUN_DEPENDS= gkrellm:${PORTSDIR}/sysutils/gkrellm X XWRKSRC= ${WRKDIR}/${PORTNAME} XUSE_X_PREFIX= yes XUSE_GTK= yes XUSE_IMLIB= yes XMAKE_ENV= PTHREAD_LIBS="${PTHREAD_LIBS}" \ X PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" XALL_TARGET= ${PORTNAME}_anim.so X Xdo-install: X @${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME}_anim.so \ X ${PREFIX}/libexec/gkrellm/plugins X X.include END-of-gkrellmaflag/Makefile echo x - gkrellmaflag/distinfo sed 's/^X//' >gkrellmaflag/distinfo << 'END-of-gkrellmaflag/distinfo' XMD5 (aflag_anim-0.1.tar.gz) = 9418c060326d1a7cb1ff7e4b9e12461a END-of-gkrellmaflag/distinfo echo c - gkrellmaflag/files mkdir -p gkrellmaflag/files > /dev/null 2>&1 echo x - gkrellmaflag/files/patch-Makefile sed 's/^X//' >gkrellmaflag/files/patch-Makefile << 'END-of-gkrellmaflag/files/patch-Makefile' X--- Makefile.orig Tue Sep 25 20:07:08 2001 X+++ Makefile Tue Sep 25 20:13:38 2001 X@@ -1,21 +1,20 @@ X-GTK_INCLUDE = `gtk-config --cflags` X-GTK_LIB = `gtk-config --libs` X+GTK_INCLUDE = `${GTK_CONFIG} --cflags` X+GTK_LIB = `${GTK_CONFIG} --libs` X X-IMLIB_INCLUDE = `imlib-config --cflags-gdk` X-IMLIB_LIB = `imlib-config --libs-gdk` X-THREAD_LIB = -lpthread X+IMLIB_INCLUDE = `${IMLIB_CONFIG} --cflags-gdk` X+IMLIB_LIB = `${IMLIB_CONFIG} --libs-gdk` X INSTALLDIR = $(HOME)/.gkrellm/plugins X X X-FLAGS = -O2 -Wall -fPIC $(GTK_INCLUDE) $(IMLIB_INCLUDE) X-LIBS = $(GTK_LIB) $(IMLIB_LIB) $(THREAD_LIB) X+CFLAGS += -Wall -fPIC $(GTK_INCLUDE) $(IMLIB_INCLUDE) ${PTHREAD_CFLAGS} X+LIBS = $(GTK_LIB) $(IMLIB_LIB) ${PTHREAD_LIBS} X LFLAGS = -shared X X-CC = gcc $(CFLAGS) $(FLAGS) X+CC += $(CFLAGS) X X OBJS = aflag_anim.o X X-earth_anim.so: $(OBJS) X+aflag_anim.so: $(OBJS) X $(CC) $(OBJS) -o aflag_anim.so $(LFLAGS) $(LIBS) X X clean: END-of-gkrellmaflag/files/patch-Makefile echo x - gkrellmaflag/pkg-plist sed 's/^X//' >gkrellmaflag/pkg-plist << 'END-of-gkrellmaflag/pkg-plist' Xlibexec/gkrellm/plugins/aflag_anim.so END-of-gkrellmaflag/pkg-plist echo x - gkrellmaflag/pkg-comment sed 's/^X//' >gkrellmaflag/pkg-comment << 'END-of-gkrellmaflag/pkg-comment' XA GKrellM Plugin that displays a waving American flag END-of-gkrellmaflag/pkg-comment echo x - gkrellmaflag/pkg-descr sed 's/^X//' >gkrellmaflag/pkg-descr << 'END-of-gkrellmaflag/pkg-descr' XA GKrellM Plugin that displays a waving American flag Xas a memorial for the victims of the 9-11 attacks X XWWW: http://www.geocities.com/saintdead/earth_anim.html END-of-gkrellmaflag/pkg-descr exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message