Index: branches/2020Q3/misc/wmjulia/Makefile =================================================================== --- branches/2020Q3/misc/wmjulia/Makefile (revision 549713) +++ branches/2020Q3/misc/wmjulia/Makefile (revision 549714) @@ -1,23 +1,26 @@ # Created by: Alexey Dokuchaev # $FreeBSD$ PORTNAME= wmjulia PORTVERSION= 0.40 PORTREVISION= 5 CATEGORIES= misc windowmaker afterstep MASTER_SITES= http://web.novalis.org/programs/ MAINTAINER= ports@FreeBSD.org COMMENT= Dockapp that creates an animated Julia set LICENSE= GPLv2 -PLIST_FILES= bin/wmjulia -WRKSRC= ${WRKDIR}/${PORTNAME}.app/${PORTNAME} USES= gmake xorg -USE_XORG= xpm xext +USE_XORG= x11 xext xpm +WRKSRC= ${WRKDIR}/${PORTNAME}.app +PLIST_FILES= bin/wmjulia + +MAKE_ARGS= -C ${PORTNAME} + do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin .include Index: branches/2020Q3/misc/wmjulia/files/patch-Makefile =================================================================== --- branches/2020Q3/misc/wmjulia/files/patch-Makefile (revision 549713) +++ branches/2020Q3/misc/wmjulia/files/patch-Makefile (nonexistent) @@ -1,36 +0,0 @@ ---- Makefile.orig Thu May 16 12:16:40 2002 -+++ Makefile Thu May 16 12:17:17 2002 -@@ -1,21 +1,20 @@ --INCDIR = -I/usr/X11R6/include --LIBDIR = -L/usr/X11R6/lib --LIBS = -lXpm -lXext -lX11 -lm --OBJS = wmjulia.o ../wmgeneral/wmgeneral.o -+CC ?= gcc -+CFLAGS += -c -Wall -+INCDIR = -I${LOCALBASE}/include -+LIBDIR = -L${LOCALBASE}/lib -+LIBS = -lXpm -lXext -lX11 -lm -+OBJS = wmjulia.o ../wmgeneral/wmgeneral.o - - .c.o: -- cc -c -g -O2 -Wall -D$(shell echo `uname -s`) $< -o $*.o $(INCDIR) -- --all: wmjulia -+ ${CC} ${CFLAGS} ${INCDIR} -D${shell echo `uname -s`} $< -o $*.o - - wmjulia: $(OBJS) -- cc -o wmjulia $^ $(LIBDIR) $(LIBS) -+ ${CC} -o wmjulia $^ ${LIBDIR} ${LIBS} -+ -+all: wmjulia - - clean: -- for i in $(OBJS) ; do \ -+ for i in ${OBJS}; do \ - rm -f $$i; \ - done -- rm -f wmjulia -- --install: -- mv wmjulia /usr/local/bin -+ rm -f wmjulia core Property changes on: branches/2020Q3/misc/wmjulia/files/patch-Makefile ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: branches/2020Q3/misc/wmjulia/files/patch-wmgeneral_wmgeneral.c =================================================================== --- branches/2020Q3/misc/wmjulia/files/patch-wmgeneral_wmgeneral.c (nonexistent) +++ branches/2020Q3/misc/wmjulia/files/patch-wmgeneral_wmgeneral.c (revision 549714) @@ -0,0 +1,12 @@ +--- wmgeneral/wmgeneral.c.orig 2020-09-23 12:34:09 UTC ++++ wmgeneral/wmgeneral.c +@@ -57,6 +57,9 @@ + /* X11 Variables */ + /*****************/ + ++Display *display; ++Window Root, iconwin, win; ++XpmIcon wmgen; + int screen; + int x_fd; + int d_depth; Property changes on: branches/2020Q3/misc/wmjulia/files/patch-wmgeneral_wmgeneral.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: branches/2020Q3/misc/wmjulia/files/patch-wmgeneral_wmgeneral.h =================================================================== --- branches/2020Q3/misc/wmjulia/files/patch-wmgeneral_wmgeneral.h (nonexistent) +++ branches/2020Q3/misc/wmjulia/files/patch-wmgeneral_wmgeneral.h (revision 549714) @@ -0,0 +1,15 @@ +--- wmgeneral/wmgeneral.h.orig 2020-09-23 12:34:16 UTC ++++ wmgeneral/wmgeneral.h +@@ -36,9 +36,9 @@ typedef struct { + /* Global variable */ + /*******************/ + +-Display *display; +-Window Root, iconwin, win; +-XpmIcon wmgen; ++extern Display *display; ++extern Window Root, iconwin, win; ++extern XpmIcon wmgen; + + /***********************/ + /* Function Prototypes */ Property changes on: branches/2020Q3/misc/wmjulia/files/patch-wmgeneral_wmgeneral.h ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: branches/2020Q3/misc/wmjulia/files/patch-wmjulia_Makefile =================================================================== --- branches/2020Q3/misc/wmjulia/files/patch-wmjulia_Makefile (nonexistent) +++ branches/2020Q3/misc/wmjulia/files/patch-wmjulia_Makefile (revision 549714) @@ -0,0 +1,36 @@ +--- wmjulia/Makefile.orig 1999-04-19 21:52:15 UTC ++++ wmjulia/Makefile +@@ -1,21 +1,20 @@ +-INCDIR = -I/usr/X11R6/include +-LIBDIR = -L/usr/X11R6/lib +-LIBS = -lXpm -lXext -lX11 -lm +-OBJS = wmjulia.o ../wmgeneral/wmgeneral.o ++CC ?= gcc ++CFLAGS += -c -Wall ++INCDIR = -I${LOCALBASE}/include ++LIBDIR = -L${LOCALBASE}/lib ++LIBS = -lXpm -lXext -lX11 -lm ++OBJS = wmjulia.o ../wmgeneral/wmgeneral.o + + .c.o: +- cc -c -g -O2 -Wall -D$(shell echo `uname -s`) $< -o $*.o $(INCDIR) ++ ${CC} ${CFLAGS} ${INCDIR} -D${shell echo `uname -s`} $< -o $*.o + +-all: wmjulia +- + wmjulia: $(OBJS) +- cc -o wmjulia $^ $(LIBDIR) $(LIBS) ++ ${CC} -o wmjulia $^ ${LIBDIR} ${LIBS} + ++all: wmjulia ++ + clean: +- for i in $(OBJS) ; do \ ++ for i in ${OBJS}; do \ + rm -f $$i; \ + done +- rm -f wmjulia +- +-install: +- mv wmjulia /usr/local/bin ++ rm -f wmjulia core Property changes on: branches/2020Q3/misc/wmjulia/files/patch-wmjulia_Makefile ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: branches/2020Q3 =================================================================== --- branches/2020Q3 (revision 549713) +++ branches/2020Q3 (revision 549714) Property changes on: branches/2020Q3 ___________________________________________________________________ Modified: svn:mergeinfo ## -0,0 +0,1 ## Merged /head:r549712