diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2008-11-01 08:44:04 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2008-11-01 08:44:04 +0000 |
commit | 5d4bc9c1b41fd1d75c05fd00663276c224d8faf7 (patch) | |
tree | e9941eef8cd49291da7a22afa0e2af68c8adecaf /dev-db/mytop | |
parent | Version bump. (diff) | |
download | gentoo-2-5d4bc9c1b41fd1d75c05fd00663276c224d8faf7.tar.gz gentoo-2-5d4bc9c1b41fd1d75c05fd00663276c224d8faf7.tar.bz2 gentoo-2-5d4bc9c1b41fd1d75c05fd00663276c224d8faf7.zip |
Bug #176113, version bump.
(Portage version: 2.2_rc12/cvs/Linux 2.6.26-hardened-r4 x86_64)
Diffstat (limited to 'dev-db/mytop')
-rw-r--r-- | dev-db/mytop/ChangeLog | 9 | ||||
-rw-r--r-- | dev-db/mytop/mytop-1.6.ebuild | 26 |
2 files changed, 33 insertions, 2 deletions
diff --git a/dev-db/mytop/ChangeLog b/dev-db/mytop/ChangeLog index 030630997f55..4037118e43f1 100644 --- a/dev-db/mytop/ChangeLog +++ b/dev-db/mytop/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-db/mytop -# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mytop/ChangeLog,v 1.15 2006/12/10 17:09:25 vivo Exp $ +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/mytop/ChangeLog,v 1.16 2008/11/01 08:44:04 robbat2 Exp $ + +*mytop-1.6 (01 Nov 2008) + + 01 Nov 2008; Robin H. Johnson <robbat2@gentoo.org> +mytop-1.6.ebuild: + Bug #176113, version bump. 10 Dec 2006; Francesco Riosa <vivo@gentoo.org> mytop-1.4.ebuild: fix dev-db/mytop-1.4 - wrong perl-core/Getopt-Long dependency bug #157674, diff --git a/dev-db/mytop/mytop-1.6.ebuild b/dev-db/mytop/mytop-1.6.ebuild new file mode 100644 index 000000000000..339abff8e107 --- /dev/null +++ b/dev-db/mytop/mytop-1.6.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/mytop/mytop-1.6.ebuild,v 1.1 2008/11/01 08:44:04 robbat2 Exp $ + +inherit perl-app + +DESCRIPTION="mytop - a top clone for mysql" +HOMEPAGE="http://jeremy.zawodny.com/mysql/mytop/" +SRC_URI="http://jeremy.zawodny.com/mysql/mytop/${P}.tar.gz" + +LICENSE="|| ( Artistic GPL-2 )" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" +SLOT="0" +IUSE="" + +DEPEND="dev-perl/DBD-mysql + virtual/perl-Getopt-Long + dev-perl/TermReadKey + dev-perl/Term-ANSIColor + virtual/perl-Time-HiRes + >=sys-apps/sed-4" + +src_install() { + perl-module_src_install + sed -i "s|socket => '',|socket => '/var/run/mysqld/mysqld.sock',|g" ${D}/usr/bin/mytop +} |