blob: d1d1807c581b43f55448fcd10661279b9810e481 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/wscr/wscr-1.2.ebuild,v 1.9 2005/06/01 01:03:21 wormo Exp $
DESCRIPTION="A Lightweight and Fast Anagram Solver"
HOMEPAGE="http://hood.sjfn.nb.ca/~eddie/wscr.html"
SRC_URI="ftp://hood.sjfn.nb.ca/pub/eddie/${P}.tar.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="x86 alpha ~sparc ~mips ~ppc"
IUSE=""
DEPEND="virtual/libc"
RDEPEND="virtual/libc sys-apps/miscfiles"
src_compile() {
sed -i 's#"/usr/dict/words";#"/usr/share/dict/words";#' wscr.h
sed -i 's#\($(CC) $(FLAGS)\)#\1 ${CFLAGS}#g' Makefile
emake || die
}
src_install() {
dobin wscr
doman wscr.6
dodoc README
}
|