diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2004-09-13 18:29:05 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2004-09-13 18:29:05 +0000 |
commit | b76197978a8c0e4c401fd852c1db0c927bfd46ce (patch) | |
tree | e38cc0880f0593807d699831f2894bff4db230e7 /dev-db/mtop | |
parent | Stable on sparc wrt #63123 (Manifest recommit) (diff) | |
download | gentoo-2-b76197978a8c0e4c401fd852c1db0c927bfd46ce.tar.gz gentoo-2-b76197978a8c0e4c401fd852c1db0c927bfd46ce.tar.bz2 gentoo-2-b76197978a8c0e4c401fd852c1db0c927bfd46ce.zip |
Bug #7684. Ebuild submitted by Minati jean michel <magnet@suidzer0.org>.
Diffstat (limited to 'dev-db/mtop')
-rw-r--r-- | dev-db/mtop/ChangeLog | 9 | ||||
-rw-r--r-- | dev-db/mtop/Manifest | 4 | ||||
-rw-r--r-- | dev-db/mtop/files/digest-mtop-0.6.6 | 1 | ||||
-rw-r--r-- | dev-db/mtop/metadata.xml | 5 | ||||
-rw-r--r-- | dev-db/mtop/mtop-0.6.6.ebuild | 29 |
5 files changed, 48 insertions, 0 deletions
diff --git a/dev-db/mtop/ChangeLog b/dev-db/mtop/ChangeLog new file mode 100644 index 000000000000..b4363f015cc7 --- /dev/null +++ b/dev-db/mtop/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for dev-db/mtop +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/mtop/ChangeLog,v 1.1 2004/09/13 18:29:05 robbat2 Exp $ + +*mtop-0.6.6 (13 Sep 2004) + + 13 Sep 2004; Robin H. Johnson <robbat2@gentoo.org> +mtop-0.6.6.ebuild: + Bug #7684. Ebuild submitted by Minati jean michel <magnet@suidzer0.org>. + diff --git a/dev-db/mtop/Manifest b/dev-db/mtop/Manifest new file mode 100644 index 000000000000..b68f710dddd7 --- /dev/null +++ b/dev-db/mtop/Manifest @@ -0,0 +1,4 @@ +MD5 b5800581545b34d07f3438aa75faa2ad mtop-0.6.6.ebuild 769 +MD5 0b943d0690f7299fb9423b085a8e0f05 files/digest-mtop-0.6.4 61 +MD5 224251b948aa27536ad3c3a842af7efc files/digest-mtop-0.6.5 61 +MD5 c6c3f43a75962f05aa2139baeb6a1da5 files/digest-mtop-0.6.6 61 diff --git a/dev-db/mtop/files/digest-mtop-0.6.6 b/dev-db/mtop/files/digest-mtop-0.6.6 new file mode 100644 index 000000000000..a4db21cc5815 --- /dev/null +++ b/dev-db/mtop/files/digest-mtop-0.6.6 @@ -0,0 +1 @@ +MD5 f1beb021351f937a74cb0e9d3fcedae7 mtop-0.6.6.tar.gz 48161 diff --git a/dev-db/mtop/metadata.xml b/dev-db/mtop/metadata.xml new file mode 100644 index 000000000000..dbfe84ca36cf --- /dev/null +++ b/dev-db/mtop/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>mysql-bugs</herd> +</pkgmetadata> diff --git a/dev-db/mtop/mtop-0.6.6.ebuild b/dev-db/mtop/mtop-0.6.6.ebuild new file mode 100644 index 000000000000..efdebbe07674 --- /dev/null +++ b/dev-db/mtop/mtop-0.6.6.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header : $ + +inherit perl-module + +DESCRIPTION="Mysql top monitors a MySQL server" +HOMEPAGE="http://mtop.sourceforge.net" +SRC_URI="mirror://sourceforge/mtop/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND="dev-perl/Curses + dev-perl/DBI + dev-perl/DBD-mysql + dev-perl/libnet" + +src_compile() { + perl-module_src_prep || die "Perl module preparation failed." + perl-module_src_compile || die "Perl module compilation failed." + perl-module_src_test || die "Perl module tests failed." +} + +src_install() { + perl-module_src_install || die "Perl module installation failed." + dodoc ChangeLog COPYING README README.devel +} + |