OpenPKG CVS Repository
http://cvs.openpkg.org/
____________________________________________________________________________
Server: cvs.openpkg.org Name: Michael Schloh
Root: /e/openpkg/cvs Email: [EMAIL PROTECTED]
Module: openpkg-src openpkg-web openpkg$ Date: 15-Mar-2003 01:47:51
Branch: HEAD Handle: 2003031500474604
Added files:
openpkg-re/vcheck vc.xboard
openpkg-src/xboard xboard.spec
Modified files:
openpkg-web news.txt
Log:
new package: xboard 4.2.6 (Chess Graphical User Interface)
Summary:
Revision Changes Path
1.1 +9 -0 openpkg-re/vcheck/vc.xboard
1.1 +101 -0 openpkg-src/xboard/xboard.spec
1.3687 +1 -0 openpkg-web/news.txt
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-re/vcheck/vc.xboard
============================================================================
$ cvs diff -u -r0 -r1.1 vc.xboard
--- /dev/null 2003-03-15 01:47:47.000000000 +0100
+++ vc.xboard 2003-03-15 01:47:47.000000000 +0100
@@ -0,0 +1,9 @@
+config = {
+}
+
+prog xboard = {
+ version = 4.2.6
+ url = ftp://ftp.gnu.org/gnu/xboard/
+ regex = pth-(__VER__)\.tar\.gz
+}
+
@@ .
patch -p0 <<'@@ .'
Index: openpkg-src/xboard/xboard.spec
============================================================================
$ cvs diff -u -r0 -r1.1 xboard.spec
--- /dev/null 2003-03-15 01:47:51.000000000 +0100
+++ xboard.spec 2003-03-15 01:47:51.000000000 +0100
@@ -0,0 +1,101 @@
+##
+## xboard.spec -- OpenPKG RPM Specification
+## Copyright (c) 2000-2002 Cable & Wireless Deutschland GmbH
+## Copyright (c) 2000-2002 The OpenPKG Project <http://www.openpkg.org/>
+## Copyright (c) 2000-2002 Ralf S. Engelschall <[EMAIL PROTECTED]>
+##
+## Permission to use, copy, modify, and distribute this software for
+## any purpose with or without fee is hereby granted, provided that
+## the above copyright notice and this permission notice appear in all
+## copies.
+##
+## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
+## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
+## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
+## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
+## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+## SUCH DAMAGE.
+##
+
+# package information
+Name: xboard
+Summary: Chess Graphical User Interface
+URL: http://www.tim-mann.org/xboard.html
+Vendor: Tim Mann
+Packager: The OpenPKG Project
+Distribution: OpenPKG [EVAL]
+Group: Games
+License: GPL
+Version: 4.2.6
+Release: 20030315
+
+# list of sources
+Source0: ftp://ftp.gnu.org/gnu/xboard/xboard-%{version}.tar.gz
+
+# build information
+Prefix: %{l_prefix}
+BuildRoot: %{l_buildroot}
+BuildPreReq: OpenPKG, openpkg >= 20030103, X11, perl
+PreReq: OpenPKG, openpkg >= 20030103, X11, perl
+AutoReq: no
+AutoReqProv: no
+
+%description
+ The xboard graphical user interfaces for chess displays a
+ chessboard on the screen, accepts moves made with the mouse,
+ and loads and saves games in Portable Game Notation (PGN).
+ It serves as a front end for many different chess services
+ including chess engines and chess servers.
+
+%prep
+ %setup -q
+ chmod +w xboard.h
+ %{l_shtool} subst -e 's;gnuchessx;gnuchess xboard;1' xboard.h
+
+%build
+ CC="%{l_cc}" \
+ CFLAGS="%{l_cflags -O}" \
+ CXXFLAGS="%{l_cxxflags -O}" \
+ CPPFLAGS="%{l_cppflags}" \
+ LDFLAGS="%{l_ldflags}" \
+ ./configure \
+ --prefix=%{l_prefix} \
+ --sysconfdir=%{l_prefix}/etc/%{name} \
+ --localstatedir=%{l_prefix}/var/%{name} \
+ --oldincludedir=%{l_prefix}/include \
+ --x-includes=`%{l_prefix}/etc/rc --query x11_incdir` \
+ --x-libraries=`%{l_prefix}/etc/rc --query x11_libdir` \
+ --with-x \
+ --enable-xpm \
+ --enable-sigint
+ %{l_make} %{l_mflags -O}
+
+%install
+ rm -rf $RPM_BUILD_ROOT
+ %{l_shtool} mkdir -f -p -m 755 \
+ $RPM_BUILD_ROOT%{l_prefix}/bin/ \
+ $RPM_BUILD_ROOT%{l_prefix}/man/man6/ \
+ $RPM_BUILD_ROOT%{l_prefix}/var/%{name}
+ %{l_shtool} install -c -s -m 755 \
+ xboard zic2xpm $RPM_BUILD_ROOT%{l_prefix}/bin/
+ %{l_shtool} install -c -m 755 \
+ cmail pxboard $RPM_BUILD_ROOT%{l_prefix}/bin/
+ %{l_shtool} install -c -m 644 \
+ xboard.man $RPM_BUILD_ROOT%{l_prefix}/man/man6/xboard.6
+ %{l_shtool} install -c -m 644 \
+ cmail.man $RPM_BUILD_ROOT%{l_prefix}/man/man6/cmail.6
+ %{l_shtool} install -c -m 644 \
+ zic2xpm.man $RPM_BUILD_ROOT%{l_prefix}/man/man6/zic2xpm.6
+ %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std}
+
+%files -f files
+
+%clean
+ rm -rf $RPM_BUILD_ROOT
+
@@ .
patch -p0 <<'@@ .'
Index: openpkg-web/news.txt
============================================================================
$ cvs diff -u -r1.3686 -r1.3687 news.txt
--- openpkg-web/news.txt 14 Mar 2003 21:33:51 -0000 1.3686
+++ openpkg-web/news.txt 15 Mar 2003 00:47:47 -0000 1.3687
@@ -1,3 +1,4 @@
+15-Mar-2003: New package: P<xboard-4.2.6-20030315>
14-Mar-2003: Upgraded package: P<perl-www-20030314-20030314>
14-Mar-2003: Upgraded package: P<imagemagick-5.5.6.0-20030314>
14-Mar-2003: Upgraded package: P<delegate-8.5.1-20030314>
@@ .
______________________________________________________________________
The OpenPKG Project www.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]