diff options
author | Alin Năstac <mrness@gentoo.org> | 2006-03-06 19:09:54 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2006-03-06 19:09:54 +0000 |
commit | f889692e31c60c24479d2a6f02bca7f7ef121fc6 (patch) | |
tree | 86fa9f1893db1855fa8227d6df51d18359b4f9b2 /net-proxy/http-replicator/http-replicator-3.0.ebuild | |
parent | Add ~sparc keyword (Bug #122726). (diff) | |
download | gentoo-2-f889692e31c60c24479d2a6f02bca7f7ef121fc6.tar.gz gentoo-2-f889692e31c60c24479d2a6f02bca7f7ef121fc6.tar.bz2 gentoo-2-f889692e31c60c24479d2a6f02bca7f7ef121fc6.zip |
quote strings containing env vars
(Portage version: 2.0.54)
Diffstat (limited to 'net-proxy/http-replicator/http-replicator-3.0.ebuild')
-rw-r--r-- | net-proxy/http-replicator/http-replicator-3.0.ebuild | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/net-proxy/http-replicator/http-replicator-3.0.ebuild b/net-proxy/http-replicator/http-replicator-3.0.ebuild index ac1a44761bb5..8c7246488dea 100644 --- a/net-proxy/http-replicator/http-replicator-3.0.ebuild +++ b/net-proxy/http-replicator/http-replicator-3.0.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/http-replicator/http-replicator-3.0.ebuild,v 1.12 2005/10/06 21:22:49 ferdy Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-proxy/http-replicator/http-replicator-3.0.ebuild,v 1.13 2006/03/06 19:09:54 mrness Exp $ DESCRIPTION="Proxy cache for Gentoo packages" HOMEPAGE="http://gertjan.freezope.org/replicator/" @@ -21,23 +21,23 @@ src_install(){ # Daemon and repcacheman into /usr/bin exeinto /usr/bin doexe http-replicator - newexe ${FILESDIR}/http-replicator-3.0-callrepcacheman-0.1 repcacheman + newexe "${FILESDIR}/http-replicator-3.0-callrepcacheman-0.1" repcacheman if has_version '>=sys-apps/portage-2.0.51'; then - newexe ${FILESDIR}/http-replicator-3.0-repcacheman-0.33 repcacheman.py + newexe "${FILESDIR}/http-replicator-3.0-repcacheman-0.33" repcacheman.py else - newexe ${FILESDIR}/http-replicator-3.0-repcacheman-0.21 repcacheman.py + newexe "${FILESDIR}/http-replicator-3.0-repcacheman-0.21" repcacheman.py fi # Config file into /etc/conf.d insinto /etc/conf.d - newins ${FILESDIR}/http-replicator-3.0.conf http-replicator + newins "${FILESDIR}/http-replicator-3.0.conf" http-replicator # Docs dodoc README debian/changelog # init.d scripts exeinto /etc/init.d - newexe ${FILESDIR}/http-replicator-3.0.init http-replicator + newexe "${FILESDIR}/http-replicator-3.0.init" http-replicator # Man Page - Not Gentooified yet doman http-replicator.1 |