diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-05-06 22:58:51 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-05-06 22:58:51 +0000 |
commit | 7383d8225e4f1db3d9e5aa5630a22055735a9326 (patch) | |
tree | 55de3139f9817d08a3f00bad55cb65f73f6f46e4 /games-board | |
parent | Stable on amd64, bug #90541. (diff) | |
download | gentoo-2-7383d8225e4f1db3d9e5aa5630a22055735a9326.tar.gz gentoo-2-7383d8225e4f1db3d9e5aa5630a22055735a9326.tar.bz2 gentoo-2-7383d8225e4f1db3d9e5aa5630a22055735a9326.zip |
old
Diffstat (limited to 'games-board')
-rw-r--r-- | games-board/xscrabble/files/digest-xscrabble-2.10 | 3 | ||||
-rw-r--r-- | games-board/xscrabble/xscrabble-2.10.ebuild | 50 |
2 files changed, 0 insertions, 53 deletions
diff --git a/games-board/xscrabble/files/digest-xscrabble-2.10 b/games-board/xscrabble/files/digest-xscrabble-2.10 deleted file mode 100644 index 151724409093..000000000000 --- a/games-board/xscrabble/files/digest-xscrabble-2.10 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 376531c836b62f81d2ac2281495b5030 xscrabble-2.10.tgz 83575 -MD5 be5e45715225ff524b5e7cdff164ed0d xscrabble_fr.tgz 810737 -MD5 791244c62c92fc2dfd1c524f1a25eb9f xscrabble_en.tgz 393527 diff --git a/games-board/xscrabble/xscrabble-2.10.ebuild b/games-board/xscrabble/xscrabble-2.10.ebuild deleted file mode 100644 index 15504434f933..000000000000 --- a/games-board/xscrabble/xscrabble-2.10.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/xscrabble/xscrabble-2.10.ebuild,v 1.6 2004/06/24 22:23:04 agriffis Exp $ - -inherit eutils games - -DESCRIPTION="An X11 clone of the well-known Scrabble" -HOMEPAGE="http://freshmeat.net/projects/xscrabble/?topic_id=80" -SRC_URI="ftp://ftp.ac-grenoble.fr/ge/educational_games/${P}.tgz - nls? ( ftp://ftp.ac-grenoble.fr/ge/educational_games/xscrabble_fr.tgz ) - ftp://ftp.ac-grenoble.fr/ge/educational_games/xscrabble_en.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86 amd64" -IUSE="nls" - -RDEPEND="virtual/x11" -DEPEND="${RDEPEND} - >=sys-apps/sed-4" - -src_unpack() { - unpack ${P}.tgz - - cp "${DISTDIR}/xscrabble_en.tgz" . - use nls && cp "${DISTDIR}/xscrabble_fr.tgz" . - - cd ${S} - epatch "${FILESDIR}/${PV}-path-fixes.patch" -} - -src_compile() { - ./build bin || die -} - -src_install() { - export DESTDIR="${D}" - ./build install || die - use nls && { ./build lang fr || die; } - ./build lang en || die - for f in ${D}/usr/X11R6/lib/X11/app-defaults/* ; do - if [ -f ${f} ] ; then - sed -i \ - -e "s:/usr/games/lib/scrabble/:${GAMES_DATADIR}/${PN}/:" ${f} \ - || die "sed ${f} failed" - fi - done - dodoc CHANGES README - prepgamesdirs -} |