Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 12 Apr 2016 15:06:58 +0000 (UTC)
From:      Mathieu Arnold <mat@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r413140 - in head/x11-clocks/eyeclock: . files
Message-ID:  <201604121506.u3CF6wNf032474@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mat
Date: Tue Apr 12 15:06:58 2016
New Revision: 413140
URL: https://svnweb.freebsd.org/changeset/ports/413140

Log:
  Unbreak.
  
  PR:		208724
  Submitted by:	tkato432 yahoo com
  Sponsored by:	Absolight

Modified:
  head/x11-clocks/eyeclock/Makefile   (contents, props changed)
  head/x11-clocks/eyeclock/files/patch-Makefile   (contents, props changed)
  head/x11-clocks/eyeclock/files/patch-main.c   (contents, props changed)
  head/x11-clocks/eyeclock/pkg-descr   (contents, props changed)

Modified: head/x11-clocks/eyeclock/Makefile
==============================================================================
--- head/x11-clocks/eyeclock/Makefile	Tue Apr 12 15:06:52 2016	(r413139)
+++ head/x11-clocks/eyeclock/Makefile	Tue Apr 12 15:06:58 2016	(r413140)
@@ -3,21 +3,21 @@
 
 PORTNAME=	eyeclock
 PORTVERSION=	2.0
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	x11-clocks
-MASTER_SITES=	http://ftp.vector.co.jp/pack/unix/personal/tokei/
+MASTER_SITES=	http://ftp.vector.co.jp/12/89/1347/
 DISTNAME=	eyeclk20
 
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	Clock with eyes following the mouse pointer
 
-BROKEN=		unfetchable
-
 WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
 MAKE_ENV=	X11BASE=${LOCALBASE}
 USE_XORG=	x11 xau xdmcp xpm xt ice
 USES=		tar:tgz
 
+DESKTOP_ENTRIES="EyeClock" "" "" "eyeclock" "" ""
+
 post-patch:
 	@${REINPLACE_CMD} -e "s#gcc#${CC}#" ${WRKSRC}/Makefile
 

Modified: head/x11-clocks/eyeclock/files/patch-Makefile
==============================================================================
--- head/x11-clocks/eyeclock/files/patch-Makefile	Tue Apr 12 15:06:52 2016	(r413139)
+++ head/x11-clocks/eyeclock/files/patch-Makefile	Tue Apr 12 15:06:58 2016	(r413140)
@@ -1,5 +1,5 @@
---- Makefile.orig	Sat Dec 25 03:18:57 1999
-+++ Makefile	Sun Dec 26 16:33:49 1999
+--- Makefile.orig	1999-12-25 09:18:57 UTC
++++ Makefile
 @@ -15,8 +15,8 @@
  ###############################################################################
  
@@ -11,7 +11,7 @@
  BINDIR  = ${PREFIX}/bin
  LIBDIR  = ${PREFIX}/lib/X11/EyeClock
  RESDIR  = ${PREFIX}/lib/X11/app-defaults
-@@ -26,15 +26,15 @@
+@@ -26,15 +26,15 @@ VERSION = EyeClock-2.0
  
  # Choose a default face from below lines.
  
@@ -31,7 +31,7 @@
  
  # Choose icon pixmap from below lines.
  
-@@ -93,14 +93,15 @@
+@@ -93,14 +93,15 @@ clean :
  backup :
  		cp COPYRIGHT* *.jpn CHANGE EyeClock* Makefile *.h *.c *.man bak
  
@@ -51,7 +51,7 @@
  umeharaclock :
  		ln -s eyeclock umeharaclock
  
-@@ -131,7 +132,7 @@
+@@ -131,7 +132,7 @@ octopusclock :
  clearclock :
  		rm -f ${BINDIR}/eyeclock
  		rm -f ${BINDIR}/daemonclock

Modified: head/x11-clocks/eyeclock/files/patch-main.c
==============================================================================
--- head/x11-clocks/eyeclock/files/patch-main.c	Tue Apr 12 15:06:52 2016	(r413139)
+++ head/x11-clocks/eyeclock/files/patch-main.c	Tue Apr 12 15:06:58 2016	(r413140)
@@ -1,5 +1,5 @@
---- main.c.orig	Sun Dec 26 16:34:55 1999
-+++ main.c	Sun Dec 26 16:37:01 1999
+--- main.c.orig	1999-12-25 09:18:56 UTC
++++ main.c
 @@ -76,7 +76,7 @@
  /*===========================================================================*/
  
@@ -9,7 +9,7 @@
  
  /*===========================================================================*/
  /* Number ヴィジェットのヴィジェットごとの名前                               */
-@@ -616,9 +616,9 @@
+@@ -616,9 +616,9 @@ static void die(Widget w)
    Display * display;
    int i;
  
@@ -22,7 +22,7 @@
  
    if (toplevel)
      if (XtIsRealized(toplevel)) {
-@@ -650,8 +650,8 @@
+@@ -650,8 +650,8 @@ static void restore(Widget w, XEvent * e
    unsigned int width;
    unsigned int height;
  
@@ -33,7 +33,7 @@
  
    if (width && height)
      XtVaSetValues(toplevel, XtNwidth, width, XtNheight, height, NULL);
-@@ -730,23 +730,23 @@
+@@ -730,23 +730,23 @@ int main(int argc, char * argv[])
    }
  
    /* Clock ヴィジェットの作成 */
@@ -61,7 +61,7 @@
  
    /* ポインタのフォーカスを有効にする */
    XtVaSetValues(toplevel, XtNinput, True, NULL);
-@@ -788,7 +788,7 @@
+@@ -788,7 +788,7 @@ int main(int argc, char * argv[])
    XSetWMProtocols(display, XtWindow(toplevel), &wm_delete_window, 1);
  
    /* 時計をスタートさせる */

Modified: head/x11-clocks/eyeclock/pkg-descr
==============================================================================
--- head/x11-clocks/eyeclock/pkg-descr	Tue Apr 12 15:06:52 2016	(r413139)
+++ head/x11-clocks/eyeclock/pkg-descr	Tue Apr 12 15:06:58 2016	(r413140)
@@ -7,3 +7,5 @@ This port installs below clocks.
 boyclock, daemonclock, eyeclock, girlclock, henohenoclock,
 margueriteclock, octopusclock, punpunclock, silicagelclock,
 taroclock, umeharaclock.
+
+WWW: http://kozos.jp/myfreesoft/



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