diff options
author | Matthias Schwarzott <zzam@gentoo.org> | 2007-11-27 10:53:54 +0000 |
---|---|---|
committer | Matthias Schwarzott <zzam@gentoo.org> | 2007-11-27 10:53:54 +0000 |
commit | 5b797d738b718641f5918d06857bc897d549cc40 (patch) | |
tree | a51b07291e02dcb4d6d1231fa126cb3c1a564aa8 /media-tv/tvbrowser | |
parent | Fixed quoting. (diff) | |
download | gentoo-2-5b797d738b718641f5918d06857bc897d549cc40.tar.gz gentoo-2-5b797d738b718641f5918d06857bc897d549cc40.tar.bz2 gentoo-2-5b797d738b718641f5918d06857bc897d549cc40.zip |
Fixed quoting.
(Portage version: 2.1.4_rc3)
Diffstat (limited to 'media-tv/tvbrowser')
-rw-r--r-- | media-tv/tvbrowser/ChangeLog | 6 | ||||
-rw-r--r-- | media-tv/tvbrowser/tvbrowser-2.1.ebuild | 24 | ||||
-rw-r--r-- | media-tv/tvbrowser/tvbrowser-2.2.1.ebuild | 24 | ||||
-rw-r--r-- | media-tv/tvbrowser/tvbrowser-2.5-r1.ebuild | 36 | ||||
-rw-r--r-- | media-tv/tvbrowser/tvbrowser-2.5.ebuild | 34 |
5 files changed, 64 insertions, 60 deletions
diff --git a/media-tv/tvbrowser/ChangeLog b/media-tv/tvbrowser/ChangeLog index 206a8c22e9ec..0633c379339d 100644 --- a/media-tv/tvbrowser/ChangeLog +++ b/media-tv/tvbrowser/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-tv/tvbrowser # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-tv/tvbrowser/ChangeLog,v 1.19 2007/11/15 01:03:01 betelgeuse Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-tv/tvbrowser/ChangeLog,v 1.20 2007/11/27 10:53:54 zzam Exp $ + + 27 Nov 2007; Matthias Schwarzott <zzam@gentoo.org> tvbrowser-2.1.ebuild, + tvbrowser-2.2.1.ebuild, tvbrowser-2.5.ebuild, tvbrowser-2.5-r1.ebuild: + Fixed quoting. 15 Nov 2007; Petteri Räty <betelgeuse@gentoo.org> tvbrowser-2.5.2.ebuild, tvbrowser-2.5.3.ebuild: diff --git a/media-tv/tvbrowser/tvbrowser-2.1.ebuild b/media-tv/tvbrowser/tvbrowser-2.1.ebuild index 61499f43d90d..da5519295e03 100644 --- a/media-tv/tvbrowser/tvbrowser-2.1.ebuild +++ b/media-tv/tvbrowser/tvbrowser-2.1.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/media-tv/tvbrowser/tvbrowser-2.1.ebuild,v 1.6 2007/07/22 09:01:22 dberkholz Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-tv/tvbrowser/tvbrowser-2.1.ebuild,v 1.7 2007/11/27 10:53:54 zzam Exp $ WANT_AUTOCONF="latest" WANT_AUTOMAKE="latest" @@ -43,7 +43,7 @@ IUSE="doc jikes themes source" src_unpack() { unpack ${A} - epatch ${FILESDIR}/${P}-makefiles.patch + epatch "${FILESDIR}"/${P}-makefiles.patch local J_ARCH case "${ARCH}" in @@ -52,10 +52,10 @@ src_unpack() { *) die "not supported arch for this ebuild" ;; esac - sed -i ${S}/deployment/x11/src/Makefile.am \ + sed -i "${S}"/deployment/x11/src/Makefile.am \ -e "s-/lib/i386/-/lib/${J_ARCH}/-" - cd ${S}/lib + cd "${S}"/lib rm *.jar java-pkg_jar-from junit @@ -64,7 +64,7 @@ src_unpack() { java-pkg_jar-from bsh bsh.jar bsh-2.0b1.jar java-pkg_jar-from skinlf - cd ${S}/deployment/x11 + cd "${S}"/deployment/x11 rm configure eautoreconf @@ -74,12 +74,12 @@ src_compile() { local antflags="runtime-linux" use doc && antflags="${antflags} public-doc" use jikes && antflags="${antflags} -Dbuild.compiler=jikes" - cd ${S} + cd "${S}" mkdir public ant ${antflags} || die "compilation failed !" # second part: systray-module - cd ${S}/deployment/x11 + cd "${S}"/deployment/x11 append-flags -fPIC econf || die "econf failed" emake || die "emake failed" @@ -97,11 +97,11 @@ src_install() { todir="${todir}-${SLOT}" fi - cp -a imgs ${D}/${todir} - cp -a plugins ${D}/${todir} - cp linux.properties ${D}/${todir} + cp -a imgs "${D}"/${todir} + cp -a plugins "${D}"/${todir} + cp linux.properties "${D}"/${todir} - cp libDesktopIndicator.so ${D}/${todir} + cp libDesktopIndicator.so "${D}"/${todir} mkdir "${D}/usr/share/${PN}-themepacks" cp themepacks/themepack.zip "${D}/usr/share/${PN}-themepacks" @@ -111,7 +111,7 @@ src_install() { unpack allthemepacks.zip fi - mkdir ${D}/${todir}/bin + mkdir "${D}"/${todir}/bin echo "#!/bin/bash" > "${D}/${todir}/bin/tvbrowser.sh" echo "cd ${todir}" >> "${D}/${todir}/bin/tvbrowser.sh" diff --git a/media-tv/tvbrowser/tvbrowser-2.2.1.ebuild b/media-tv/tvbrowser/tvbrowser-2.2.1.ebuild index bb7fe51f2c81..38426c335695 100644 --- a/media-tv/tvbrowser/tvbrowser-2.2.1.ebuild +++ b/media-tv/tvbrowser/tvbrowser-2.2.1.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/media-tv/tvbrowser/tvbrowser-2.2.1.ebuild,v 1.7 2007/07/22 09:01:22 dberkholz Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-tv/tvbrowser/tvbrowser-2.2.1.ebuild,v 1.8 2007/11/27 10:53:54 zzam Exp $ WANT_AUTOCONF="latest" WANT_AUTOMAKE="latest" @@ -45,7 +45,7 @@ IUSE="doc themes source" src_unpack() { unpack ${P}-src.zip - epatch ${FILESDIR}/${P}-makefiles.patch + epatch "${FILESDIR}"/${P}-makefiles.patch local J_ARCH case "${ARCH}" in @@ -54,10 +54,10 @@ src_unpack() { *) die "not supported arch for this ebuild" ;; esac - sed -i ${S}/deployment/x11/src/Makefile.am \ + sed -i "${S}"/deployment/x11/src/Makefile.am \ -e "s-/lib/i386/-/lib/${J_ARCH}/-" - cd ${S}/lib + cd "${S}"/lib rm *.jar java-pkg_jar-from junit @@ -68,7 +68,7 @@ src_unpack() { java-pkg_jar-from skinlf java-pkg_jar-from l2fprod-common l2fprod-common-tasks.jar - cd ${S}/deployment/x11 + cd "${S}"/deployment/x11 rm src/libDesktopIndicator.so rm configure @@ -81,12 +81,12 @@ src_unpack() { src_compile() { local antflags="runtime-linux" use doc && antflags="${antflags} public-doc" - cd ${S} + cd "${S}" mkdir public eant ${antflags} # second part: DesktopIndicator - cd ${S}/deployment/x11 + cd "${S}"/deployment/x11 append-flags -fPIC econf || die "econf failed" emake || die "emake failed" @@ -104,10 +104,10 @@ src_install() { todir="${todir}-${SLOT}" fi - cp -a imgs ${D}/${todir} - cp -a icons ${D}/${todir} - cp -a plugins ${D}/${todir} - cp linux.properties ${D}/${todir} + cp -a imgs "${D}"/${todir} + cp -a icons "${D}"/${todir} + cp -a plugins "${D}"/${todir} + cp linux.properties "${D}"/${todir} insinto "/usr/share/${PN}/themepacks" doins themepacks/themepack.zip @@ -121,7 +121,7 @@ src_install() { --jar ${todir}/lib/tvbrowser.jar \ --pwd ${todir} - cp ${S}/deployment/x11/src/libDesktopIndicator.so ${D}/${todir} + cp "${S}"/deployment/x11/src/libDesktopIndicator.so "${D}"/${todir} } pkg_postinst() { diff --git a/media-tv/tvbrowser/tvbrowser-2.5-r1.ebuild b/media-tv/tvbrowser/tvbrowser-2.5-r1.ebuild index c90139708421..00e666855b57 100644 --- a/media-tv/tvbrowser/tvbrowser-2.5-r1.ebuild +++ b/media-tv/tvbrowser/tvbrowser-2.5-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/media-tv/tvbrowser/tvbrowser-2.5-r1.ebuild,v 1.2 2007/07/22 09:01:22 dberkholz Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-tv/tvbrowser/tvbrowser-2.5-r1.ebuild,v 1.3 2007/11/27 10:53:54 zzam Exp $ WANT_AUTOCONF="latest" WANT_AUTOMAKE="latest" @@ -47,17 +47,17 @@ IUSE="doc themes source" src_unpack() { unpack ${P}-src.zip - cd ${S} - epatch ${FILESDIR}/${P}-makefiles.patch - epatch ${FILESDIR}/${P}_noWin32.patch - epatch ${FILESDIR}/${P}_buildxml.patch + cd "${S}" + epatch "${FILESDIR}"/${P}-makefiles.patch + epatch "${FILESDIR}"/${P}_noWin32.patch + epatch "${FILESDIR}"/${P}_buildxml.patch #fix bug #170363 - epatch ${FILESDIR}/${P}_Localizer.patch + epatch "${FILESDIR}"/${P}_Localizer.patch # missing commons-compress, gdata-calendar, gdata-client - rm -r ${S}/src/calendarexportplugin - rm -r ${S}/src/bbcbackstagedataservice + rm -r "${S}"/src/calendarexportplugin + rm -r "${S}"/src/bbcbackstagedataservice local J_ARCH case "${ARCH}" in @@ -66,10 +66,10 @@ src_unpack() { *) die "not supported arch for this ebuild" ;; esac - sed -i ${S}/deployment/x11/src/Makefile.am \ + sed -i "${S}"/deployment/x11/src/Makefile.am \ -e "s-/lib/i386/-/lib/${J_ARCH}/-" - cd ${S}/lib + cd "${S}"/lib rm *.jar java-pkg_jar-from junit @@ -81,7 +81,7 @@ src_unpack() { java-pkg_jar-from l2fprod-common l2fprod-common-tasks.jar #fix bug #170364 - cd ${S}/deployment/x11 + cd "${S}"/deployment/x11 chmod u+x configure rm src/libDesktopIndicator.so @@ -94,12 +94,12 @@ src_unpack() { src_compile() { local antflags="runtime-linux" use doc && antflags="${antflags} public-doc" - cd ${S} + cd "${S}" mkdir public eant ${antflags} # second part: DesktopIndicator - cd ${S}/deployment/x11 + cd "${S}"/deployment/x11 append-flags -fPIC econf || die "econf failed" emake || die "emake failed" @@ -117,10 +117,10 @@ src_install() { todir="${todir}-${SLOT}" fi - cp -a imgs ${D}/${todir} - cp -a icons ${D}/${todir} - cp -a plugins ${D}/${todir} - cp linux.properties ${D}/${todir} + cp -a imgs "${D}"/${todir} + cp -a icons "${D}"/${todir} + cp -a plugins "${D}"/${todir} + cp linux.properties "${D}"/${todir} insinto "/usr/share/${PN}/themepacks" doins themepacks/themepack.zip @@ -135,7 +135,7 @@ src_install() { --pwd ${todir} \ --java_args "-Djava.library.path=${todir} -Dpropertiesfile=${todir}/linux.properties" - cp ${S}/deployment/x11/src/libDesktopIndicator.so ${D}/${todir} + cp "${S}"/deployment/x11/src/libDesktopIndicator.so "${D}"/${todir} } pkg_postinst() { diff --git a/media-tv/tvbrowser/tvbrowser-2.5.ebuild b/media-tv/tvbrowser/tvbrowser-2.5.ebuild index 5e441c71fd2f..819da778ea71 100644 --- a/media-tv/tvbrowser/tvbrowser-2.5.ebuild +++ b/media-tv/tvbrowser/tvbrowser-2.5.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/media-tv/tvbrowser/tvbrowser-2.5.ebuild,v 1.3 2007/07/22 09:01:22 dberkholz Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-tv/tvbrowser/tvbrowser-2.5.ebuild,v 1.4 2007/11/27 10:53:54 zzam Exp $ WANT_AUTOCONF="latest" WANT_AUTOMAKE="latest" @@ -47,14 +47,14 @@ IUSE="doc themes source" src_unpack() { unpack ${P}-src.zip - cd ${S} - epatch ${FILESDIR}/${P}-makefiles.patch - epatch ${FILESDIR}/${P}_noWin32.patch - epatch ${FILESDIR}/${P}_buildxml.patch + cd "${S}" + epatch "${FILESDIR}"/${P}-makefiles.patch + epatch "${FILESDIR}"/${P}_noWin32.patch + epatch "${FILESDIR}"/${P}_buildxml.patch # missing commons-compress, gdata-calendar, gdata-client - rm -r ${S}/src/calendarexportplugin - rm -r ${S}/src/bbcbackstagedataservice + rm -r "${S}"/src/calendarexportplugin + rm -r "${S}"/src/bbcbackstagedataservice local J_ARCH case "${ARCH}" in @@ -63,10 +63,10 @@ src_unpack() { *) die "not supported arch for this ebuild" ;; esac - sed -i ${S}/deployment/x11/src/Makefile.am \ + sed -i "${S}"/deployment/x11/src/Makefile.am \ -e "s-/lib/i386/-/lib/${J_ARCH}/-" - cd ${S}/lib + cd "${S}"/lib rm *.jar java-pkg_jar-from junit @@ -77,7 +77,7 @@ src_unpack() { java-pkg_jar-from skinlf java-pkg_jar-from l2fprod-common l2fprod-common-tasks.jar - cd ${S}/deployment/x11 + cd "${S}"/deployment/x11 rm src/libDesktopIndicator.so rm configure @@ -90,12 +90,12 @@ src_unpack() { src_compile() { local antflags="runtime-linux" use doc && antflags="${antflags} public-doc" - cd ${S} + cd "${S}" mkdir public eant ${antflags} # second part: DesktopIndicator - cd ${S}/deployment/x11 + cd "${S}"/deployment/x11 append-flags -fPIC econf || die "econf failed" emake || die "emake failed" @@ -113,10 +113,10 @@ src_install() { todir="${todir}-${SLOT}" fi - cp -a imgs ${D}/${todir} - cp -a icons ${D}/${todir} - cp -a plugins ${D}/${todir} - cp linux.properties ${D}/${todir} + cp -a imgs "${D}"/${todir} + cp -a icons "${D}"/${todir} + cp -a plugins "${D}"/${todir} + cp linux.properties "${D}"/${todir} insinto "/usr/share/${PN}/themepacks" doins themepacks/themepack.zip @@ -130,7 +130,7 @@ src_install() { --jar ${todir}/lib/tvbrowser.jar \ --pwd ${todir} - cp ${S}/deployment/x11/src/libDesktopIndicator.so ${D}/${todir} + cp "${S}"/deployment/x11/src/libDesktopIndicator.so "${D}"/${todir} } pkg_postinst() { |