diff options
author | Alexis Ballier <aballier@gentoo.org> | 2007-10-30 17:57:36 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2007-10-30 17:57:36 +0000 |
commit | e61b7d245b0815ef8110026d5a9606c863895012 (patch) | |
tree | 1fa4d87a4bd7b09e54c0acc4c4feacbdcf095b0c /dev-tex | |
parent | version bump, bug #153028, thanks to Gerard Vermeulen for the ebuild and wltj... (diff) | |
download | gentoo-2-e61b7d245b0815ef8110026d5a9606c863895012.tar.gz gentoo-2-e61b7d245b0815ef8110026d5a9606c863895012.tar.bz2 gentoo-2-e61b7d245b0815ef8110026d5a9606c863895012.zip |
quote variables
(Portage version: 2.1.3.16)
Diffstat (limited to 'dev-tex')
-rw-r--r-- | dev-tex/tex4ht/ChangeLog | 6 | ||||
-rw-r--r-- | dev-tex/tex4ht/tex4ht-20050406_p1623-r1.ebuild | 18 | ||||
-rw-r--r-- | dev-tex/tex4ht/tex4ht-20050701_p1825.ebuild | 18 |
3 files changed, 23 insertions, 19 deletions
diff --git a/dev-tex/tex4ht/ChangeLog b/dev-tex/tex4ht/ChangeLog index f666b3677132..a33c2715b093 100644 --- a/dev-tex/tex4ht/ChangeLog +++ b/dev-tex/tex4ht/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-tex/tex4ht # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/tex4ht/ChangeLog,v 1.12 2007/10/30 17:51:23 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tex/tex4ht/ChangeLog,v 1.13 2007/10/30 17:57:36 aballier Exp $ + + 30 Oct 2007; Alexis Ballier <aballier@gentoo.org> + tex4ht-20050406_p1623-r1.ebuild, tex4ht-20050701_p1825.ebuild: + quote variables *tex4ht-20071024_p0140 (30 Oct 2007) diff --git a/dev-tex/tex4ht/tex4ht-20050406_p1623-r1.ebuild b/dev-tex/tex4ht/tex4ht-20050406_p1623-r1.ebuild index ef6bec412543..7e224cc18d5a 100644 --- a/dev-tex/tex4ht/tex4ht-20050406_p1623-r1.ebuild +++ b/dev-tex/tex4ht/tex4ht-20050406_p1623-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/tex4ht/tex4ht-20050406_p1623-r1.ebuild,v 1.6 2007/03/13 08:00:20 nattfodd Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tex/tex4ht/tex4ht-20050406_p1623-r1.ebuild,v 1.7 2007/10/30 17:57:36 aballier Exp $ inherit latex-package toolchain-funcs @@ -27,7 +27,7 @@ S="${WORKDIR}/${MY_P}" src_unpack() { unpack ${A} - cd ${S}/texmf/tex4ht/base/unix + cd "${S}/texmf/tex4ht/base/unix" sed -i -e \ 's#~/tex4ht.dir#/usr/share#' tex4ht.env || die sed -i -e \ @@ -37,7 +37,7 @@ src_unpack() { src_compile() { - cd ${S}/src/ + cd "${S}/src/" einfo "Compiling postprocessor sources..." for f in tex4ht t4ht htcmd ; do $(tc-getCC) -o $f $f.c \ @@ -51,26 +51,26 @@ src_compile() { src_install () { # install the binaries - dobin ${S}/src/tex4ht ${S}/src/t4ht ${S}/src/htcmd - dobin ${S}/bin/unix/* + dobin "${S}/src/tex4ht" "${S}/src/t4ht" "${S}/src/htcmd" + dobin "${S}"/bin/unix/* # install the .4ht scripts insinto /usr/share/texmf/tex/generic/tex4ht - doins ${S}/texmf/tex/generic/tex4ht/* + doins "${S}"/texmf/tex/generic/tex4ht/* # install the special htf fonts dodir /usr/share/texmf/tex4ht - cp -pPR ${S}/texmf/tex4ht/ht-fonts ${D}/usr/share/texmf/tex4ht + cp -pPR "${S}/texmf/tex4ht/ht-fonts" "${D}/usr/share/texmf/tex4ht" # install the env file insinto /usr/share/texmf/tex4ht/base - newins ${S}/texmf/tex4ht/base/unix/tex4ht.env tex4ht.env + newins "${S}/texmf/tex4ht/base/unix/tex4ht.env" tex4ht.env # this dir is 700 in the zip fperms 755 /usr/share/texmf/tex4ht/ht-fonts if has_tetex_3 ; then insinto /etc/texmf/texmf.d - doins ${FILESDIR}/50tex4ht.cnf + doins "${FILESDIR}/50tex4ht.cnf" fi } diff --git a/dev-tex/tex4ht/tex4ht-20050701_p1825.ebuild b/dev-tex/tex4ht/tex4ht-20050701_p1825.ebuild index 8b737b751724..2fd6312d258c 100644 --- a/dev-tex/tex4ht/tex4ht-20050701_p1825.ebuild +++ b/dev-tex/tex4ht/tex4ht-20050701_p1825.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/tex4ht/tex4ht-20050701_p1825.ebuild,v 1.4 2007/03/13 08:00:20 nattfodd Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tex/tex4ht/tex4ht-20050701_p1825.ebuild,v 1.5 2007/10/30 17:57:36 aballier Exp $ inherit latex-package toolchain-funcs @@ -28,7 +28,7 @@ S="${WORKDIR}/${MY_P}" src_unpack() { unpack ${A} - cd ${S}/texmf/tex4ht/base/unix + cd "${S}/texmf/tex4ht/base/unix" sed -i -e \ 's#~/tex4ht.dir#/usr/share#' tex4ht.env || die sed -i -e \ @@ -38,7 +38,7 @@ src_unpack() { src_compile() { - cd ${S}/src/ + cd "${S}/src/" einfo "Compiling postprocessor sources..." for f in tex4ht t4ht htcmd ; do $(tc-getCC) -o $f $f.c \ @@ -52,23 +52,23 @@ src_compile() { src_install () { # install the binaries - dobin ${S}/src/tex4ht ${S}/src/t4ht ${S}/src/htcmd - dobin ${S}/bin/unix/* + dobin "${S}/src/tex4ht" "${S}/src/t4ht" "${S}/src/htcmd" + dobin "${S}"/bin/unix/* # install the .4ht scripts insinto /usr/share/texmf/tex/generic/tex4ht - doins ${S}/texmf/tex/generic/tex4ht/* + doins "${S}"/texmf/tex/generic/tex4ht/* # install the special htf fonts dodir /usr/share/texmf/tex4ht - cp -pPR ${S}/texmf/tex4ht/ht-fonts ${D}/usr/share/texmf/tex4ht + cp -pPR "${S}/texmf/tex4ht/ht-fonts" "${D}/usr/share/texmf/tex4ht" # install the env file insinto /usr/share/texmf/tex4ht/base - newins ${S}/texmf/tex4ht/base/unix/tex4ht.env tex4ht.env + newins "${S}/texmf/tex4ht/base/unix/tex4ht.env" tex4ht.env if has_tetex_3 ; then insinto /etc/texmf/texmf.d - doins ${FILESDIR}/50tex4ht.cnf || die + doins "${FILESDIR}/50tex4ht.cnf" || die fi } |