Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 9 Jun 2024 14:08:13 GMT
From:      Cy Schubert <cy@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 4b6488142679 - main - astro/xphoon: Catch up to src bb421be6c117
Message-ID:  <202406091408.459E8Dh7070171@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by cy:

URL: https://cgit.FreeBSD.org/ports/commit/?id=4b6488142679ff15ddcfe1acec2be0e966b0267c

commit 4b6488142679ff15ddcfe1acec2be0e966b0267c
Author:     Cy Schubert <cy@FreeBSD.org>
AuthorDate: 2024-06-09 14:04:26 +0000
Commit:     Cy Schubert <cy@FreeBSD.org>
CommitDate: 2024-06-09 14:07:40 +0000

    astro/xphoon: Catch up to src bb421be6c117
    
    src bb421be6c117 moved ftime(3) to libutil. This resulted in this
    error:
    
    cc -o xphoon       -L/usr/local/lib   xphoon.o moon.o phase.o dtime.o
    -lXext -lX11 -lcompat -lm  -Wl,-rpath,/usr/local/lib
    ld: error: undefined symbol: ftime
    
    While at it take maintainership of this port.
    
    MFH:    2024Q2
---
 astro/xphoon/Makefile              | 4 ++--
 astro/xphoon/files/patch-Imakefile | 8 +++++---
 2 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/astro/xphoon/Makefile b/astro/xphoon/Makefile
index 1756ce477363..121d773bef26 100644
--- a/astro/xphoon/Makefile
+++ b/astro/xphoon/Makefile
@@ -1,10 +1,10 @@
 PORTNAME=	xphoon
 PORTVERSION=	20000613
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	astro
 MASTER_SITES=	SF
 
-MAINTAINER=	ports@FreeBSD.org
+MAINTAINER=	cy@FreeBSD.org
 COMMENT=	Set the root window to the moon in its current phase
 WWW=		https://xphoon.sourceforge.net/
 
diff --git a/astro/xphoon/files/patch-Imakefile b/astro/xphoon/files/patch-Imakefile
index d607d8420b3c..06c469e28984 100644
--- a/astro/xphoon/files/patch-Imakefile
+++ b/astro/xphoon/files/patch-Imakefile
@@ -1,11 +1,13 @@
---- Imakefile.orig	2000-06-13 21:55:44 UTC
-+++ Imakefile
+diff --git a/Imakefile.orig b/Imakefile
+index 96d7fd6..73497f4 100644
+--- a/Imakefile.orig
++++ b/Imakefile
 @@ -11,7 +11,7 @@
  
  
  INCLUDES =		-I. -I$(TOP) -I$(TOP)/X11 -I$(TOP)/X11/bitmaps
 -LOCAL_LIBRARIES =	$(XLIB)
-+LOCAL_LIBRARIES =	$(XLIB) -lcompat
++LOCAL_LIBRARIES =	$(XLIB) -lcompat -lutil
  DEPLIBS =		$(DEPXLIB)
  LDLIBS =		-lm
  



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