diff options
author | Dawid Węgliński <cla@gentoo.org> | 2009-06-06 21:38:09 +0000 |
---|---|---|
committer | Dawid Węgliński <cla@gentoo.org> | 2009-06-06 21:38:09 +0000 |
commit | a5177ab1e00b3372ab307cd008fb3219d5f8b250 (patch) | |
tree | 94501223a3c73256e7292f7a158914e904a53f5a /net-irc/onis | |
parent | Don't specify full path of installed doc files since PORTAGE_COMPRESS comes i... (diff) | |
download | gentoo-2-a5177ab1e00b3372ab307cd008fb3219d5f8b250.tar.gz gentoo-2-a5177ab1e00b3372ab307cd008fb3219d5f8b250.tar.bz2 gentoo-2-a5177ab1e00b3372ab307cd008fb3219d5f8b250.zip |
Don't specify full path of installed doc files since PORTAGE_COMPRESS comes into play (bug #272935)
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'net-irc/onis')
-rw-r--r-- | net-irc/onis/ChangeLog | 9 | ||||
-rw-r--r-- | net-irc/onis/onis-0.6.1.ebuild | 14 | ||||
-rw-r--r-- | net-irc/onis/onis-0.8.2.ebuild | 10 |
3 files changed, 19 insertions, 14 deletions
diff --git a/net-irc/onis/ChangeLog b/net-irc/onis/ChangeLog index d33edfa3bf75..f79e22b9e792 100644 --- a/net-irc/onis/ChangeLog +++ b/net-irc/onis/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-irc/onis -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/onis/ChangeLog,v 1.10 2007/05/06 12:39:41 genone Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/onis/ChangeLog,v 1.11 2009/06/06 21:38:09 cla Exp $ + + 06 Jun 2009; Dawid Węgliński <cla@gentoo.org> onis-0.6.1.ebuild, + onis-0.8.2.ebuild: + Don't specify full path of installed doc files since PORTAGE_COMPRESS comes + into play (bug #272935) 06 May 2007; Marius Mauch <genone@gentoo.org> onis-0.6.1.ebuild, onis-0.8.2.ebuild: diff --git a/net-irc/onis/onis-0.6.1.ebuild b/net-irc/onis/onis-0.6.1.ebuild index f367710bc1fd..95a2c2f1cd0b 100644 --- a/net-irc/onis/onis-0.6.1.ebuild +++ b/net-irc/onis/onis-0.6.1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/onis/onis-0.6.1.ebuild,v 1.5 2007/05/06 12:39:41 genone Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/onis/onis-0.6.1.ebuild,v 1.6 2009/06/06 21:38:09 cla Exp $ inherit eutils @@ -18,9 +18,9 @@ DEPEND="${RDEPEND} src_unpack() { unpack ${A} - cd ${S} + cd "${S}" - epatch ${FILESDIR}/0.6.0-nochdir.patch + epatch "${FILESDIR}"/0.6.0-nochdir.patch sed -i -e s:lang/:/usr/share/onis/lang/: config } @@ -31,10 +31,10 @@ src_install () { dobin onis dodir ${installprivlib} - cp -R lib/Onis ${D}/${installprivlib} + cp -R lib/Onis "${D}"/${installprivlib} dodir /usr/share/onis - cp -R lang reports/* ${D}/usr/share/onis + cp -R lang reports/* "${D}"/usr/share/onis dodoc CHANGELOG README THANKS config users.conf } @@ -42,6 +42,6 @@ src_install () { pkg_postinst() { elog elog "The onis themes have been installed in /usr/share/onis/*-theme" - elog "You can find a sample configuration at /usr/share/doc/${PF}/config.gz" + elog "You can find a compressed sample configuration at /usr/share/doc/${PF}/config" elog } diff --git a/net-irc/onis/onis-0.8.2.ebuild b/net-irc/onis/onis-0.8.2.ebuild index 34db18c72ef6..4758eab74a8e 100644 --- a/net-irc/onis/onis-0.8.2.ebuild +++ b/net-irc/onis/onis-0.8.2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/onis/onis-0.8.2.ebuild,v 1.2 2007/05/06 12:39:41 genone Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/onis/onis-0.8.2.ebuild,v 1.3 2009/06/06 21:38:09 cla Exp $ inherit eutils @@ -18,9 +18,9 @@ DEPEND="${RDEPEND} src_unpack() { unpack ${A} - cd ${S} + cd "${S}" - epatch ${FILESDIR}/0.6.0-nochdir.patch + epatch "${FILESDIR}"/0.6.0-nochdir.patch sed -i -e s:lang/:/usr/share/onis/lang/: onis.conf || die "sed failed" } @@ -42,6 +42,6 @@ src_install () { pkg_postinst() { elog elog "The onis themes have been installed in /usr/share/onis/*-theme" - elog "You can find a sample configuration at /usr/share/doc/${PF}/onis.conf.gz" + elog "You can find a compressed sample configuration at /usr/share/doc/${PF}/config" elog } |