diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-08-05 18:46:45 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-08-05 18:46:45 +0000 |
commit | 4e48c3d7082657f69d85d4976930713fd3040de6 (patch) | |
tree | b3e58462b0e602697013dc8ac21dbe761ed23e5e /app-text/diction | |
parent | fix license (diff) | |
download | gentoo-2-4e48c3d7082657f69d85d4976930713fd3040de6.tar.gz gentoo-2-4e48c3d7082657f69d85d4976930713fd3040de6.tar.bz2 gentoo-2-4e48c3d7082657f69d85d4976930713fd3040de6.zip |
fix license
Diffstat (limited to 'app-text/diction')
-rw-r--r-- | app-text/diction/diction-1.02.ebuild | 23 |
1 files changed, 9 insertions, 14 deletions
diff --git a/app-text/diction/diction-1.02.ebuild b/app-text/diction/diction-1.02.ebuild index 69c702ef1bd2..22a360602ecb 100644 --- a/app-text/diction/diction-1.02.ebuild +++ b/app-text/diction/diction-1.02.ebuild @@ -1,27 +1,22 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/app-text/diction/diction-1.02.ebuild,v 1.5 2003/07/11 20:35:22 aliz Exp $ +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/diction/diction-1.02.ebuild,v 1.6 2003/08/05 18:44:28 vapier Exp $ -inherit eutils - -S=${WORKDIR}/${P} -DESCRIPTION="Diction and style checkers for english and german texts." -SRC_URI="http://ftp.gnu.org/gnu/diction/diction-1.02.tar.gz" +DESCRIPTION="Diction and style checkers for english and german texts" HOMEPAGE="http://www.fsf.org/software/diction/diction.html" +SRC_URI="http://ftp.gnu.org/gnu/diction/${P}.tar.gz" -SLOT="0" -IUSE="" LICENSE="GPL-2" +SLOT="0" KEYWORDS="x86" DEPEND="sys-devel/gettext" src_compile() { - ./configure --prefix=/usr ||die - emake || die - + ./configure --prefix=/usr ||die + emake || die } -src_install () { - make prefix=${D}/usr install +src_install() { + make prefix=${D}/usr install } |