diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-03-06 05:35:42 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-03-06 05:35:42 +0000 |
commit | e1eff811069de2d945f5ba5e45288556bd0f3525 (patch) | |
tree | 8acc6c58f45d58ad2a0024862cf2c9733702ca63 /app-dicts/dictd-wn | |
parent | Changed src_install () to src_install() (diff) | |
download | gentoo-2-e1eff811069de2d945f5ba5e45288556bd0f3525.tar.gz gentoo-2-e1eff811069de2d945f5ba5e45288556bd0f3525.tar.bz2 gentoo-2-e1eff811069de2d945f5ba5e45288556bd0f3525.zip |
Changed src_install () to src_install()
Diffstat (limited to 'app-dicts/dictd-wn')
-rw-r--r-- | app-dicts/dictd-wn/dictd-wn-1.5-r1.ebuild | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/app-dicts/dictd-wn/dictd-wn-1.5-r1.ebuild b/app-dicts/dictd-wn/dictd-wn-1.5-r1.ebuild index 2c516104b318..eea7ba2ea87d 100644 --- a/app-dicts/dictd-wn/dictd-wn-1.5-r1.ebuild +++ b/app-dicts/dictd-wn/dictd-wn-1.5-r1.ebuild @@ -1,25 +1,21 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# Michael Conrad Tilstra <michael@gentoo.org> <tadpol@tadpol.org> -# $Header: /var/cvsroot/gentoo-x86/app-dicts/dictd-wn/dictd-wn-1.5-r1.ebuild,v 1.7 2004/02/22 18:23:44 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-dicts/dictd-wn/dictd-wn-1.5-r1.ebuild,v 1.8 2004/03/06 05:35:42 vapier Exp $ MY_P=${P/td/t}-pre -S=${WORKDIR} DESCRIPTION="WordNet for dict" +HOMEPAGE="http://www.dict.org/" SRC_URI="ftp://ftp.dict.org/pub/dict/pre/${MY_P}.tar.gz" -HOMEPAGE="http://www.dict.org" - -DEPEND=">=app-text/dictd-1.5.5" -SLOT="0" LICENSE="GPL-2" +SLOT="0" KEYWORDS="x86 ppc sparc amd64" -src_install () { - dodir /usr/lib/dict +DEPEND=">=app-text/dictd-1.5.5" + +S=${WORKDIR} + +src_install() { insinto /usr/lib/dict - doins wn.dict.dz - doins wn.index + doins wn.dict.dz wn.index || die } - -# vim: ai et sw=4 ts=4 |