diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-09-10 17:46:27 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-09-10 17:46:27 +0000 |
commit | fb8c4cf310fc6a66ecddbe48c1b77a183baa6141 (patch) | |
tree | 179b6d7697d589a3888e34ab007a4d76082e89ee /games-board/sjeng | |
parent | Changes to make the eclass more flexible (diff) | |
download | historical-fb8c4cf310fc6a66ecddbe48c1b77a183baa6141.tar.gz historical-fb8c4cf310fc6a66ecddbe48c1b77a183baa6141.tar.bz2 historical-fb8c4cf310fc6a66ecddbe48c1b77a183baa6141.zip |
board board games
Diffstat (limited to 'games-board/sjeng')
-rw-r--r-- | games-board/sjeng/ChangeLog | 19 | ||||
-rw-r--r-- | games-board/sjeng/Manifest | 3 | ||||
-rw-r--r-- | games-board/sjeng/files/digest-sjeng-11.2 | 1 | ||||
-rw-r--r-- | games-board/sjeng/sjeng-11.2.ebuild | 25 |
4 files changed, 48 insertions, 0 deletions
diff --git a/games-board/sjeng/ChangeLog b/games-board/sjeng/ChangeLog new file mode 100644 index 000000000000..47927e49c62f --- /dev/null +++ b/games-board/sjeng/ChangeLog @@ -0,0 +1,19 @@ +# ChangeLog for app-games/sjeng +# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-board/sjeng/ChangeLog,v 1.1 2003/09/10 17:46:27 vapier Exp $ + + 02 Aug 2003; Chris Gianelloni <wolf31o2@gentoo.org> sjeng-11.2.ebuild: + Fixed to use mirror://sourceforge + +*sjeng-11.2 (5 May 2002) + + 17 jul 2002; Jose Alberto Suárez López <bass@gentoo.org> sjeng-11.2.ebuild : + Added LICENSE, KEYWORDS, SLOT. + + 5 May 2002; Ryan Phillips <rphillips@gentoo.org> ChangeLog : + + Added initial ChangeLog which should be updated whenever the package is + updated in any way. This changelog is targetted to users. This means that the + comments should well explained and written in clean English. The details about + writing correct changelogs are explained in the skel.ChangeLog file which you + can find in the root directory of the portage repository. diff --git a/games-board/sjeng/Manifest b/games-board/sjeng/Manifest new file mode 100644 index 000000000000..c9221b3f4ac6 --- /dev/null +++ b/games-board/sjeng/Manifest @@ -0,0 +1,3 @@ +MD5 4a53b312c28e9f5d064f3877001f903f ChangeLog 902 +MD5 a61546dd26451f93ad3655d931689cd4 sjeng-11.2.ebuild 643 +MD5 642c55324abefa7826ee7985ceb5d3ec files/digest-sjeng-11.2 67 diff --git a/games-board/sjeng/files/digest-sjeng-11.2 b/games-board/sjeng/files/digest-sjeng-11.2 new file mode 100644 index 000000000000..2ef8cb9b8742 --- /dev/null +++ b/games-board/sjeng/files/digest-sjeng-11.2 @@ -0,0 +1 @@ +MD5 6561e740b7af703c16701304697d2870 Sjeng-Free-11.2.tar.gz 174019 diff --git a/games-board/sjeng/sjeng-11.2.ebuild b/games-board/sjeng/sjeng-11.2.ebuild new file mode 100644 index 000000000000..e9a416eec5f1 --- /dev/null +++ b/games-board/sjeng/sjeng-11.2.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-board/sjeng/sjeng-11.2.ebuild,v 1.1 2003/09/10 17:46:27 vapier Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Console based chess interface" +SRC_URI="mirror://sourceforge/sjeng/Sjeng-Free-${PV}.tar.gz" +HOMEPAGE="http://sjeng.sourceforge.net/" +KEYWORDS="x86" +SLOT="0" +LICENSE="GPL-2" + +src_compile() { + cd ${WORKDIR}/Sjeng-Free-${PV} + ./configure \ + --host=${CHOST} \ + --prefix=/usr + emake || die +} +src_install () { + cd ${WORKDIR}/Sjeng-Free-${PV} + make \ + prefix=${D}/usr \ + install || die +} |