blob: 2a57fbae94f39cce2cee8706e03892024a4b29be (
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-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/wscr/wscr-1.2-r1.ebuild,v 1.3 2011/11/28 11:33:39 phajdan.jr Exp $
inherit toolchain-funcs
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="~alpha amd64 ~mips ~ppc ~sparc x86"
IUSE=""
RDEPEND="sys-apps/miscfiles"
src_compile() {
sed -i 's#"/usr/dict/words";#"/usr/share/dict/words";#' wscr.h
emake CC="$(tc-getCC)" FLAGS="${CFLAGS} ${LDFLAGS}" || die
}
src_install() {
dobin wscr || die "dobin failed"
doman wscr.6
dodoc README
}
|