diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-11-26 22:03:35 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-11-26 22:03:35 +0000 |
commit | ee483694922dfc3b1974b5660a8fbb7963803081 (patch) | |
tree | f8e5aeb9648cc2e558ef84a8f28c7e00571d4d0a /media-fonts/hkscs-ming/hkscs-ming-1.0_pre20030919-r1.ebuild | |
parent | Making the quote stripping global so that all quotes are removed. Thankfully ... (diff) | |
download | gentoo-2-ee483694922dfc3b1974b5660a8fbb7963803081.tar.gz gentoo-2-ee483694922dfc3b1974b5660a8fbb7963803081.tar.bz2 gentoo-2-ee483694922dfc3b1974b5660a8fbb7963803081.zip |
Declare linenumber a locak to shut up Timothy.
(Portage version: 2.1.2_rc2-r2)
Diffstat (limited to 'media-fonts/hkscs-ming/hkscs-ming-1.0_pre20030919-r1.ebuild')
-rw-r--r-- | media-fonts/hkscs-ming/hkscs-ming-1.0_pre20030919-r1.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/media-fonts/hkscs-ming/hkscs-ming-1.0_pre20030919-r1.ebuild b/media-fonts/hkscs-ming/hkscs-ming-1.0_pre20030919-r1.ebuild index 73fff3b3fa78..f43fb912c4c5 100644 --- a/media-fonts/hkscs-ming/hkscs-ming-1.0_pre20030919-r1.ebuild +++ b/media-fonts/hkscs-ming/hkscs-ming-1.0_pre20030919-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-fonts/hkscs-ming/hkscs-ming-1.0_pre20030919-r1.ebuild,v 1.9 2006/11/26 21:58:45 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-fonts/hkscs-ming/hkscs-ming-1.0_pre20030919-r1.ebuild,v 1.10 2006/11/26 22:03:35 flameeyes Exp $ inherit rpm font @@ -25,8 +25,8 @@ FONT_SUFFIX="ttf" src_unpack() { # complicated and convoluted unpack procedure - LINENUMBER=237 - cd "${S}"; tail -n +${LINENUMBER} "${DISTDIR}/${A}" | tar zxvf - || die "unpack failed" + local linenumber=237 + cd "${S}"; tail -n +${linenumber} "${DISTDIR}/${A}" | tar zxvf - || die "unpack failed" # then we rpm_unpack the fonts package rpm_unpack "${S}/package_rh/imfont-${RPM_V}-0.i386.rpm" |