diff options
author | 2009-01-04 21:23:25 +0000 | |
---|---|---|
committer | 2009-01-04 21:23:25 +0000 | |
commit | 2b0ad298a9e5dd95e2b97519dce14851d6b7c580 (patch) | |
tree | 0e5f3ec5f47400a130fcc5353529d497b6074995 /net-irc | |
parent | Fix for bug 253777. (diff) | |
download | gentoo-2-2b0ad298a9e5dd95e2b97519dce14851d6b7c580.tar.gz gentoo-2-2b0ad298a9e5dd95e2b97519dce14851d6b7c580.tar.bz2 gentoo-2-2b0ad298a9e5dd95e2b97519dce14851d6b7c580.zip |
Add installation of sql script
(Portage version: 2.2_rc20/cvs/Linux 2.6.28 i686)
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/anope/ChangeLog | 8 | ||||
-rw-r--r-- | net-irc/anope/anope-1.8.0_rc1.ebuild | 11 |
2 files changed, 15 insertions, 4 deletions
diff --git a/net-irc/anope/ChangeLog b/net-irc/anope/ChangeLog index fb58f1577832..13c94a29ca94 100644 --- a/net-irc/anope/ChangeLog +++ b/net-irc/anope/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-irc/anope -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/anope/ChangeLog,v 1.13 2008/12/14 18:51:28 gurligebis Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/anope/ChangeLog,v 1.14 2009/01/04 21:23:25 gurligebis Exp $ + + 04 Jan 2009; Bjarke Istrup Pedersen <gurligebis@gentoo.org> + anope-1.8.0_rc1.ebuild: + Add installation sql script *anope-1.8.0_rc1 (14 Dec 2008) diff --git a/net-irc/anope/anope-1.8.0_rc1.ebuild b/net-irc/anope/anope-1.8.0_rc1.ebuild index 07c0477c9c14..befef610afc7 100644 --- a/net-irc/anope/anope-1.8.0_rc1.ebuild +++ b/net-irc/anope/anope-1.8.0_rc1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 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/anope/anope-1.8.0_rc1.ebuild,v 1.1 2008/12/14 18:51:28 gurligebis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/anope/anope-1.8.0_rc1.ebuild,v 1.2 2009/01/04 21:23:25 gurligebis Exp $ inherit eutils versionator @@ -130,6 +130,8 @@ src_install() { fowners anope:anope ${INSTALL_DIR}/data/languages/tr dodoc Changes Changes.conf Changes.lang Changes.mysql docs/* + + use mysql && dodoc data/tables.sql } pkg_preinst() { @@ -149,4 +151,9 @@ pkg_postinst() { ewarn "Be sure to read Changes.mysql to update your MySQL" ewarn "tables or anope will break after restart" ewarn "!!! ATTENTION !!!" + + if use mysql; then + einfo "The mysql script for updating the tables is located in the" + einfo "/usr/share/doc/${P} directory" + fi } |