diff options
author | Jeroen Roovers <jer@gentoo.org> | 2007-10-09 17:24:09 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2007-10-09 17:24:09 +0000 |
commit | f327607786e7c405a032a1896bfb8d2b8c584851 (patch) | |
tree | fc80818e72716883686182d228b08e5f2fe1e87c /sys-process/fcron/fcron-3.0.3.ebuild | |
parent | stable ppc, bug #193947 (diff) | |
download | historical-f327607786e7c405a032a1896bfb8d2b8c584851.tar.gz historical-f327607786e7c405a032a1896bfb8d2b8c584851.tar.bz2 historical-f327607786e7c405a032a1896bfb8d2b8c584851.zip |
Stable for HPPA (bug #195241). Fix quoting issues caught by new repoman.
Package-Manager: portage-2.1.3.12
Diffstat (limited to 'sys-process/fcron/fcron-3.0.3.ebuild')
-rw-r--r-- | sys-process/fcron/fcron-3.0.3.ebuild | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys-process/fcron/fcron-3.0.3.ebuild b/sys-process/fcron/fcron-3.0.3.ebuild index 619a098b88cc..3d6ea1df65ec 100644 --- a/sys-process/fcron/fcron-3.0.3.ebuild +++ b/sys-process/fcron/fcron-3.0.3.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/sys-process/fcron/fcron-3.0.3.ebuild,v 1.2 2007/10/09 16:34:37 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/fcron/fcron-3.0.3.ebuild,v 1.3 2007/10/09 17:24:09 jer Exp $ inherit cron pam eutils @@ -10,7 +10,7 @@ HOMEPAGE="http://fcron.free.fr/" SRC_URI="http://fcron.free.fr/archives/${MY_P}.src.tar.gz" LICENSE="GPL-2" -KEYWORDS="~amd64 ~hppa ~ppc ~sparc x86 ~x86-fbsd" +KEYWORDS="~amd64 hppa ~ppc ~sparc x86 ~x86-fbsd" IUSE="debug doc pam selinux" DEPEND="doc? ( >=app-text/docbook-dsssl-stylesheets-1.77 ) @@ -40,7 +40,7 @@ pkg_setup() { src_unpack() { unpack ${A} - cd ${S} + cd "${S}" # respect LDFLAGS sed -i "s:\(@LIBS@\):\$(LDFLAGS) \1:" Makefile.in || die "sed failed" @@ -113,10 +113,10 @@ src_install() { # install /etc/crontab and /etc/fcrontab insopts -m0640 -o ${rootuser:-root} -g ${rootgroup:-root} insinto /etc - doins ${FILESDIR}/crontab ${FILESDIR}/fcrontab + doins "${FILESDIR}"/crontab "${FILESDIR}"/fcrontab # install init script - newinitd ${FILESDIR}/fcron.init fcron + newinitd "${FILESDIR}"/fcron.init fcron # install the very handy check_system_crontabs script dosbin script/check_system_crontabs @@ -124,7 +124,7 @@ src_install() { # doc stuff dodoc MANIFEST VERSION newdoc files/fcron.conf fcron.conf.sample - dodoc ${FILESDIR}/crontab + dodoc "${FILESDIR}"/crontab dodoc doc/en/txt/{readme,thanks,faq,todo,relnotes,changes}.txt rm -f doc/en/man/*.3 # ugly hack for bitstring.3 manpage doman doc/en/man/*.[0-9] |