Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 16 May 2002 12:12:15 +0700
From:      Alexey Dokuchaev <danfe@regency.nsu.ru>
To:        FreeBSD-gnats-submit@freebsd.org, freebsd-ports@freebsd.org
Subject:   Re: ports/38135: NEW PORT: sysutils/wmflame for WindowMaker or AfterStep
Message-ID:  <20020516121215.A40358@regency.nsu.ru>
In-Reply-To: <200205160510.g4G5A1V82062@freefall.freebsd.org>; from FreeBSD-gnats-submit@freebsd.org on Wed, May 15, 2002 at 10:10:01PM -0700
References:  <200205160500.g4G50s790425@regency.nsu.ru> <200205160510.g4G5A1V82062@freefall.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On Wed, May 15, 2002 at 10:10:01PM -0700, FreeBSD-gnats-submit@freebsd.org wrote:
> 
> http://www.freebsd.org/cgi/query-pr.cgi?pr=38135
> 
> >Category:       ports
> >Responsible:    freebsd-ports
> >Synopsis:       NEW PORT: sysutils/wmflame for WindowMaker or AfterStep
> >Arrival-Date:   Wed May 15 22:10:01 PDT 2002
> 

Actually, I've come up with a more generic Makefile, and thus rerolled
the shar:

# 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:
#
#	.
#	./files
#	./files/patch-aa
#	./Makefile
#	./pkg-comment
#	./pkg-descr
#	./distinfo
#	./pkg-plist
#
echo c - .
mkdir -p . > /dev/null 2>&1
echo c - ./files
mkdir -p ./files > /dev/null 2>&1
echo x - ./files/patch-aa
sed 's/^X//' >./files/patch-aa << 'END-of-./files/patch-aa'
X--- Makefile.orig	Tue Jun 15 17:11:20 1999
X+++ Makefile	Thu May 16 11:38:12 2002
X@@ -1,21 +1,20 @@
X-INCDIR	=	-I/usr/X11R6/include
X-LIBDIR	=	-L/usr/X11R6/lib
X-LIBS	=	-lXpm -lXext -lX11
X-OBJS	=	wmflame.o ../wmgeneral/wmgeneral.o 
X+CC ?= gcc
X+CFLAGS += -c -Wall
X+INCDIR = -I${X11BASE}/include
X+LIBDIR = -L${X11BASE}/lib
X+LIBS   = -lXpm -lXext -lX11
X+OBJS =  wmflame.o ../wmgeneral/wmgeneral.o
X 
X .c.o:
X-	cc -c -g -O3 -Wall -D$(shell echo `uname -s`) $< -o $*.o $(INCDIR)
X-
X-all: wmflame
X+	${CC} ${CFLAGS} ${INCDIR} -D${shell echo `uname -s`} $< -o $*.o
X 
X wmflame: $(OBJS)
X-	cc -o wmflame $^ $(LIBDIR) $(LIBS)
X+	${CC} -o wmflame $^ ${LIBDIR} ${LIBS}
X+
X+all: wmflame
X 
X clean:
X-	for i in $(OBJS) ; do \
X+	for i in ${OBJS}; do \
X 		rm -f $$i; \
X 	done
X-	rm -f wmflame
X-
X-install:
X-	mv wmflame /usr/local/bin
X+	rm -f wmflame core
END-of-./files/patch-aa
echo x - ./Makefile
sed 's/^X//' >./Makefile << 'END-of-./Makefile'
X# New ports collection makefile for:	wmflame
X# Date created:				16 May 2002
X# Whom:					Alexey Dokuchaev <danfe@regency.nsu.ru>
X#
X# $FreeBSD: ports/sysutils/wmflame/Makefile,v 1.6 2001/11/27 15:06:17 jedgar Exp $
X#
X
XPORTNAME=	wmflame
XPORTVERSION=	0.60
XCATEGORIES=	sysutils
XMASTER_SITES=	http://web.novalis.org/programs/
X
XMAINTAINER=	ports@FreeBSD.org
X
XUSE_GMAKE=	yes
XWRKSRC=		${WRKDIR}/${PORTNAME}.app/${PORTNAME}
XUSE_X_PREFIX=	yes
XUSE_XPM=	yes
X
Xdo-install:
X	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
X
X.include <bsd.port.mk>
END-of-./Makefile
echo x - ./pkg-comment
sed 's/^X//' >./pkg-comment << 'END-of-./pkg-comment'
XWindowMaker dockapp that shows load average as a flame
END-of-./pkg-comment
echo x - ./pkg-descr
sed 's/^X//' >./pkg-descr << 'END-of-./pkg-descr'
XWindowMaker dockapp showing load average as a flame.
XAllows user to change lots of flame characteristics.
X
XWWW: http://web.novalis.org/
END-of-./pkg-descr
echo x - ./distinfo
sed 's/^X//' >./distinfo << 'END-of-./distinfo'
XMD5 (wmflame-0.60.tar.gz) = a9de2b284d95cc9933ce9ba869a6fa67
END-of-./distinfo
echo x - ./pkg-plist
sed 's/^X//' >./pkg-plist << 'END-of-./pkg-plist'
Xbin/wmflame
END-of-./pkg-plist
exit



To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020516121215.A40358>