Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
Fruit is a chess engine. If you seek maximum playing strength, Fruit is
your choice!
Fruit is vice world computer chess champion 2005 and one of the
strongest chess programs in the world.
Fruit has a unique playing style, making it a good addition to any
chess-engine collection.
Fruit comes with a customised opening book and has many features which
make it interesting especially for the engine enthusiast and serious
correspondence player.
+6
View File
@@ -0,0 +1,6 @@
===========================================================================
$NetBSD: MESSAGE,v 1.1.1.1 2006/10/02 20:05:20 rillig Exp $
To use games/fruit with xboard, you need to install games/polyglot.
===========================================================================
+22
View File
@@ -0,0 +1,22 @@
# $NetBSD: Makefile,v 1.6 2012/10/06 11:54:39 asau Exp $
#
DISTNAME= fruit_21_linux
PKGNAME= fruit-2.1
CATEGORIES= games
MASTER_SITES= http://arctrix.com/nas/chess/fruit/
EXTRACT_SUFX= .zip
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://arctrix.com/nas/chess/fruit/
COMMENT= Chess playing engine
BUILD_DIRS= src
USE_LANGUAGES= c++
INSTALLATION_DIRS= bin
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/fruit ${DESTDIR}${PREFIX}/bin/fruit
.include "../../mk/bsd.pkg.mk"
+2
View File
@@ -0,0 +1,2 @@
@comment $NetBSD: PLIST,v 1.1.1.1 2006/10/02 20:05:20 rillig Exp $
bin/fruit
+6
View File
@@ -0,0 +1,6 @@
$NetBSD: distinfo,v 1.1.1.1 2006/10/02 20:05:20 rillig Exp $
SHA1 (fruit_21_linux.zip) = 7bb23a7871ab3d6e152631dab86051dbba615c57
RMD160 (fruit_21_linux.zip) = 05fb30041ee85540769c1d0ed6a439caac0d8698
Size (fruit_21_linux.zip) = 716762 bytes
SHA1 (patch-aa) = b25d8bfa33c5bbb57a6016a255a089acb80f30bc
+41
View File
@@ -0,0 +1,41 @@
$NetBSD: patch-aa,v 1.1.1.1 2006/10/02 20:05:20 rillig Exp $
--- src/Makefile.orig 2005-06-17 09:41:34.000000000 +0200
+++ src/Makefile 2006-08-28 12:49:40.000000000 +0200
@@ -11,7 +11,7 @@ OBJS = attack.o board.o book.o eval.o fe
# rules
-all: $(EXE) .depend
+all: $(EXE)
clean:
$(RM) *.o .depend gmon.out
@@ -19,8 +19,7 @@ clean:
# general
CXX = g++
-CXXFLAGS = -pipe
-LDFLAGS = -lm
+LDFLAGS += -lm
# C++
@@ -32,17 +31,7 @@ CXXFLAGS += -O3 -fstrict-aliasing
CXXFLAGS += -fomit-frame-pointer
# CXXFLAGS += -march=athlon-xp # SELECT ME
-# strip
-
-LDFLAGS += -s
-
# dependencies
$(EXE): $(OBJS)
$(CXX) $(LDFLAGS) -o $@ $(OBJS)
-
-.depend:
- $(CXX) -MM $(OBJS:.o=.cpp) > $@
-
-include .depend
-