diff options
author | Mark Loeser <halcy0n@gentoo.org> | 2009-10-18 01:09:34 +0000 |
---|---|---|
committer | Mark Loeser <halcy0n@gentoo.org> | 2009-10-18 01:09:34 +0000 |
commit | 02ad7ac1f5b15c20dc57c199e52f579907be5137 (patch) | |
tree | 174392e1242df792eaf233eac395afbc00e7a665 /app-dicts/ispell-pt-br | |
parent | QA fixes; remove useless dodoc LICENSE (diff) | |
download | historical-02ad7ac1f5b15c20dc57c199e52f579907be5137.tar.gz historical-02ad7ac1f5b15c20dc57c199e52f579907be5137.tar.bz2 historical-02ad7ac1f5b15c20dc57c199e52f579907be5137.zip |
QA fixes; unquoted variables
Package-Manager: portage-2.2_rc46/cvs/Linux i686
Diffstat (limited to 'app-dicts/ispell-pt-br')
-rw-r--r-- | app-dicts/ispell-pt-br/ChangeLog | 7 | ||||
-rw-r--r-- | app-dicts/ispell-pt-br/ispell-pt-br-2.4-r2.ebuild | 18 |
2 files changed, 14 insertions, 11 deletions
diff --git a/app-dicts/ispell-pt-br/ChangeLog b/app-dicts/ispell-pt-br/ChangeLog index 3283bf5e3436..152a8a627216 100644 --- a/app-dicts/ispell-pt-br/ChangeLog +++ b/app-dicts/ispell-pt-br/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-dicts/ispell-pt-br -# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/ispell-pt-br/ChangeLog,v 1.8 2009/03/18 17:42:38 ricmm Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-dicts/ispell-pt-br/ChangeLog,v 1.9 2009/10/18 01:02:39 halcy0n Exp $ + + 18 Oct 2009; Mark Loeser <halcy0n@gentoo.org> ispell-pt-br-2.4-r2.ebuild: + QA fixes; unquoted variables 18 Mar 2009; <ricmm@gentoo.org> ispell-pt-br-2.4-r2.ebuild: Drop down to ~mips due to unstable deps diff --git a/app-dicts/ispell-pt-br/ispell-pt-br-2.4-r2.ebuild b/app-dicts/ispell-pt-br/ispell-pt-br-2.4-r2.ebuild index 22dec3d655a3..64c21f70b38b 100644 --- a/app-dicts/ispell-pt-br/ispell-pt-br-2.4-r2.ebuild +++ b/app-dicts/ispell-pt-br/ispell-pt-br-2.4-r2.ebuild @@ -1,11 +1,11 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/ispell-pt-br/ispell-pt-br-2.4-r2.ebuild,v 1.9 2009/03/18 17:42:38 ricmm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-dicts/ispell-pt-br/ispell-pt-br-2.4-r2.ebuild,v 1.10 2009/10/18 01:02:39 halcy0n Exp $ inherit eutils MY_P="br.ispell-${PV}" -S=${WORKDIR}/${MY_P} +S="${WORKDIR}/${MY_P}" DESCRIPTION="A Brazilian portuguese dictionary for ispell" HOMEPAGE="http://www.ime.usp.br/~ueda/br.ispell" SRC_URI="http://www.ime.usp.br/~ueda/br.ispell/${MY_P}.tar.gz @@ -21,8 +21,8 @@ DEPEND="app-text/ispell src_unpack() { unpack ${A} - cd ${S} - epatch ${WORKDIR}/${P}-palavras-gentoo.diff + cd "${S}" + epatch "${WORKDIR}/${P}-palavras-gentoo.diff" } src_compile() { @@ -33,16 +33,16 @@ src_compile() { src_install() { emake \ - prefix=${D}usr \ - VDIR=${D}/usr/share/dict \ - HASHDIR=${D}usr/lib/ispell \ - MANDIR=${D}usr/share/man \ + prefix="${D}usr" \ + VDIR="${D}/usr/share/dict" \ + HASHDIR="${D}usr/lib/ispell" \ + MANDIR="${D}usr/share/man" \ install || die insinto /usr/lib/ispell newins br.aff pt_BR.aff newins br.hash pt_BR.hash - rm -f ${D}/usr/lib/ispell/br.* + rm -f "${D}"/usr/lib/ispell/br.* dodoc README } |