svn commit: r507322 - in head/games/xdesktopwaves: . files

Fernando Apesteguía fernape at FreeBSD.org
Thu Jul 25 15:07:30 UTC 2019


Author: fernape
Date: Thu Jul 25 15:07:28 2019
New Revision: 507322
URL: https://svnweb.freebsd.org/changeset/ports/507322

Log:
  games/xdesktopwaves: update to 1.4
  
  * Add LICENSE.
  
  ChangeLog:
   * Added backdrop failure checking, and because this is not always reliable,
     also added an (emergency) exit button.
   * Adapted to new KDE versions.
   * Added support for Hygon Dhyana processor.
   * Fixed some minor portability flaws.

Added:
  head/games/xdesktopwaves/files/patch-Makefile   (contents, props changed)
Deleted:
  head/games/xdesktopwaves/files/patch-makefile
Modified:
  head/games/xdesktopwaves/Makefile
  head/games/xdesktopwaves/distinfo

Modified: head/games/xdesktopwaves/Makefile
==============================================================================
--- head/games/xdesktopwaves/Makefile	Thu Jul 25 14:51:24 2019	(r507321)
+++ head/games/xdesktopwaves/Makefile	Thu Jul 25 15:07:28 2019	(r507322)
@@ -2,13 +2,16 @@
 # $FreeBSD$
 
 PORTNAME=	xdesktopwaves
-PORTVERSION=	1.3
-PORTREVISION=	2
+PORTVERSION=	1.4
 CATEGORIES=	games
 MASTER_SITES=	SF
+MASTER_SITE_SUBDIR=	${PORTNAME}/${PORTNAME}/
 
 MAINTAINER=	ports at FreeBSD.org
 COMMENT=	Simulation of water waves on the desktop
+
+LICENSE=	GPLv2
+LICENSE_FILE=	${WRKSRC}/COPYING
 
 USE_XORG=	x11 xext
 

Modified: head/games/xdesktopwaves/distinfo
==============================================================================
--- head/games/xdesktopwaves/distinfo	Thu Jul 25 14:51:24 2019	(r507321)
+++ head/games/xdesktopwaves/distinfo	Thu Jul 25 15:07:28 2019	(r507322)
@@ -1,2 +1,3 @@
-SHA256 (xdesktopwaves-1.3.tar.gz) = 185a1fe56095610e95580713eec491ad1d93f4c89015ae612f214e1ccee51779
-SIZE (xdesktopwaves-1.3.tar.gz) = 49302
+TIMESTAMP = 1563982054
+SHA256 (xdesktopwaves-1.4.tar.gz) = 17ec7c6a865e8f5f8b370161b7379caeb4f7dc1b51ade220a31364c03d720ea3
+SIZE (xdesktopwaves-1.4.tar.gz) = 50259

Added: head/games/xdesktopwaves/files/patch-Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/xdesktopwaves/files/patch-Makefile	Thu Jul 25 15:07:28 2019	(r507322)
@@ -0,0 +1,39 @@
+--- Makefile.orig	2019-07-14 14:57:50 UTC
++++ Makefile
+@@ -11,19 +11,19 @@ XDW_MAX_OPTIMIZATION=2
+ 
+ #=========================== C compiler configuration ==========================
+ 
+-CC     = gcc
+-CFLAGS = -I/usr/X11R6/include -O2
++#CC     = gcc
++CFLAGS = -I$(LOCALBASE)/include
+ 
+ #============================= Linker configuration ============================
+ 
+-LINK   = gcc
+-LFLAGS = -L/usr/X11R6/lib64 -L/usr/X11R6/lib
++LINK   = $(CC)
++LFLAGS = -L$(LOCALBASE)/lib
+ LIBS   = -lm -lX11 -lXext
+ 
+ #============================ Installer configuration ==========================
+ 
+-BINDIR  = /usr/X11R6/bin
+-MAN1DIR = /usr/X11R6/man/man1
++BINDIR  = $(LOCALBASE)/bin
++MAN1DIR = $(LOCALBASE)/man/man1
+ INSTALL = install
+ RM      = rm -f -v
+ 
+@@ -41,8 +41,8 @@ clean:
+ 	$(RM) xdesktopwaves.o
+ 
+ install: xdesktopwaves xdesktopwaves.1
+-	$(INSTALL) -c -m 0755 -s xdesktopwaves $(BINDIR)/xdesktopwaves
+-	$(INSTALL) -c -m 0444 xdesktopwaves.1 $(MAN1DIR)/xdesktopwaves.1
++	$(INSTALL) -c -m 0755 -s xdesktopwaves ${DESTDIR}$(BINDIR)/xdesktopwaves
++	$(INSTALL) -c -m 0444 xdesktopwaves.1 ${DESTDIR}$(MAN1DIR)/xdesktopwaves.1
+ 
+ uninstall:
+ 	$(RM) $(BINDIR)/xdesktopwaves


More information about the svn-ports-all mailing list