diff options
author | johans <johans@FreeBSD.org> | 2009-07-25 18:41:04 +0800 |
---|---|---|
committer | johans <johans@FreeBSD.org> | 2009-07-25 18:41:04 +0800 |
commit | 3397b6902cb361901d957dae363986bd787a0832 (patch) | |
tree | 48b4019598978a9adbc80daa68d9d0fcf582f161 /games | |
parent | 53afa6de2c4660edb6a0d1ae7ec3b3bb76dea7fb (diff) | |
download | freebsd-ports-gnome-3397b6902cb361901d957dae363986bd787a0832.tar.gz freebsd-ports-gnome-3397b6902cb361901d957dae363986bd787a0832.tar.zst freebsd-ports-gnome-3397b6902cb361901d957dae363986bd787a0832.zip |
- Fix build (remove unused html file)
- Claim maintainership
- Remove unneeded patchfiles
- Fix build dependencies
Diffstat (limited to 'games')
-rw-r--r-- | games/xboard/Makefile | 8 | ||||
-rw-r--r-- | games/xboard/files/patch-Makefile.in | 11 | ||||
-rw-r--r-- | games/xboard/files/patch-texi2man | 13 |
3 files changed, 3 insertions, 29 deletions
diff --git a/games/xboard/Makefile b/games/xboard/Makefile index 335d56684bbc..c6686f5df122 100644 --- a/games/xboard/Makefile +++ b/games/xboard/Makefile @@ -13,18 +13,15 @@ MASTER_SITES= http://www.tim-mann.org/xboard/ \ ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= xboard -MAINTAINER= ports@FreeBSD.org +MAINTAINER= johans@stack.nl COMMENT= X frontend for Crafty, GNUChess, Chess Servers, or e-mail chess -BROKEN= does not build - -BUILD_DEPENDS= texi2html:${PORTSDIR}/textproc/texi2html - USE_XORG= xt xpm xaw GNU_CONFIGURE= yes STRIP= MAN6= xboard.6 zic2xpm.6 INFO= xboard +USE_PERL5_BUILD=yes .if defined(WITH_XAW3D) CONFIGURE_ARGS+= "--with-Xaw3d" @@ -33,6 +30,7 @@ LIB_DEPENDS+= Xaw3d.${XAWVER}:${PORTSDIR}/x11-toolkits/Xaw3d pre-patch: @${REINPLACE_CMD} -e 's,$$(prefix)/share/info,@infodir@,' \ + -e 's, html dvi ps,,' \ ${WRKSRC}/Makefile.in .include <bsd.port.mk> diff --git a/games/xboard/files/patch-Makefile.in b/games/xboard/files/patch-Makefile.in deleted file mode 100644 index ca9f5bcb62e7..000000000000 --- a/games/xboard/files/patch-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.in.orig Sun Feb 29 17:40:14 2004 -+++ Makefile.in Sun Feb 29 17:40:20 2004 -@@ -60,7 +60,7 @@ - - default: xboard zic2xpm - --all: default pseudosource info FAQ html dvi ps -+all: default pseudosource info FAQ html - - install: installdirs default - $(INSTALL_PROGRAM) -s xboard $(bindir)/xboard diff --git a/games/xboard/files/patch-texi2man b/games/xboard/files/patch-texi2man deleted file mode 100644 index fb9d687e29fd..000000000000 --- a/games/xboard/files/patch-texi2man +++ /dev/null @@ -1,13 +0,0 @@ ---- texi2man.orig Fri Nov 28 22:34:53 2003 -+++ texi2man Sat May 29 14:55:49 2004 -@@ -170,8 +170,8 @@ - - if (/\@include (.*)/) { - my $INCL; -- open($INCL, $1) or open($INCL, "../$1") or die "$1: $!"; -- while (<$INCL>) { -+ open(INCL, $1) or open(INCL, "../$1") or die "$1: $!"; -+ while (<INCL>) { - parse(); - } - next; |