diff options
author | Nathan Phillip Brink <binki@gentoo.org> | 2012-07-01 21:07:35 +0000 |
---|---|---|
committer | Nathan Phillip Brink <binki@gentoo.org> | 2012-07-01 21:07:35 +0000 |
commit | 90af1a4cd3d874764ffc54897959d7f012a3fe10 (patch) | |
tree | 6f6487b761bec23012da3dcb98f55569aff35633 /net-irc | |
parent | make use of transitive php dependency (from pear) to remove depend.php requir... (diff) | |
download | gentoo-2-90af1a4cd3d874764ffc54897959d7f012a3fe10.tar.gz gentoo-2-90af1a4cd3d874764ffc54897959d7f012a3fe10.tar.bz2 gentoo-2-90af1a4cd3d874764ffc54897959d7f012a3fe10.zip |
Ensure that /var/lib/anope/backups directory exists so that database backups succeed, fixing bug #410741.
(Portage version: 2.2.0_alpha114-r1/cvs/Linux x86_64)
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/anope/ChangeLog | 7 | ||||
-rw-r--r-- | net-irc/anope/anope-1.8.7.ebuild | 6 |
2 files changed, 8 insertions, 5 deletions
diff --git a/net-irc/anope/ChangeLog b/net-irc/anope/ChangeLog index 2c5c6e558f94..9a598e86bd7e 100644 --- a/net-irc/anope/ChangeLog +++ b/net-irc/anope/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-irc/anope # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/anope/ChangeLog,v 1.20 2012/01/12 00:35:32 binki Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/anope/ChangeLog,v 1.21 2012/07/01 21:07:35 binki Exp $ + + 01 Jul 2012; Nathan Phillip Brink <binki@gentoo.org> anope-1.8.7.ebuild: + Ensure that /var/lib/anope/backups directory exists so that database backups + succeed, fixing bug #410741. 12 Jan 2012; Nathan Phillip Brink <binki@gentoo.org> anope-1.8.7.ebuild, +files/anope-1.8.7-mariadb.patch: @@ -99,4 +103,3 @@ 29 Aug 2006; Bjarke Istrup Pedersen <gurligebis@gentoo.org> : Initial import. Based on ebuild by Björn Stiddien <keeper@anope.org>. - diff --git a/net-irc/anope/anope-1.8.7.ebuild b/net-irc/anope/anope-1.8.7.ebuild index d3c8d8584590..a1829fcf0191 100644 --- a/net-irc/anope/anope-1.8.7.ebuild +++ b/net-irc/anope/anope-1.8.7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/anope/anope-1.8.7.ebuild,v 1.2 2012/01/12 00:35:32 binki Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/anope/anope-1.8.7.ebuild,v 1.3 2012/07/01 21:07:35 binki Exp $ EAPI=4 @@ -66,8 +66,8 @@ src_configure() { } src_install() { - keepdir /var/{lib,log,run}/anope - fowners anope:anope /var/{lib,log,run}/anope + keepdir /var/{log,run}/anope /var/lib/anope/backups + fowners anope:anope /var/{lib,log,run}/anope /var/lib/anope/backups local baselibdir baselibdir="${D}/usr/$(get_libdir)/anope" |