summaryrefslogtreecommitdiff
path: root/dev-db
diff options
context:
space:
mode:
authorDonny Davies <woodchip@gentoo.org>2002-04-27 16:58:10 +0000
committerDonny Davies <woodchip@gentoo.org>2002-04-27 16:58:10 +0000
commit0b9a2196990606d778a24c862faca1a3c7626877 (patch)
tree78d47fa81ed63f1e55961dab3e87621f2b48097f /dev-db
parentnew package contributed by Xavier Garcia <xavier@dospins.com>. (diff)
downloadgentoo-2-0b9a2196990606d778a24c862faca1a3c7626877.tar.gz
gentoo-2-0b9a2196990606d778a24c862faca1a3c7626877.tar.bz2
gentoo-2-0b9a2196990606d778a24c862faca1a3c7626877.zip
re-added this package back without the CAPS
Diffstat (limited to 'dev-db')
-rw-r--r--dev-db/phpmyadmin/ChangeLog25
-rw-r--r--dev-db/phpmyadmin/files/digest-phpmyadmin-2.2.51
-rw-r--r--dev-db/phpmyadmin/phpmyadmin-2.2.5.ebuild43
3 files changed, 69 insertions, 0 deletions
diff --git a/dev-db/phpmyadmin/ChangeLog b/dev-db/phpmyadmin/ChangeLog
new file mode 100644
index 000000000000..0af3a56e85c4
--- /dev/null
+++ b/dev-db/phpmyadmin/ChangeLog
@@ -0,0 +1,25 @@
+# ChangeLog for dev-db/phpmyadmin
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
+# $Header: /var/cvsroot/gentoo-x86/dev-db/phpmyadmin/ChangeLog,v 1.1 2002/04/27 16:58:10 woodchip Exp $
+
+*phpmyadmin-2.2.5 (27 Apr 2002)
+
+ 27 Apr 2002; Donny Davies <woodchip@gentoo.org> :
+
+ Re-added this package back without the CAPS in the name.
+
+*phpmyadmin-2.2.5 (10 Apr 2002)
+
+ 10 Apr 2002; Donny Davies <woodchip@gentoo.org> :
+
+ Updated to latest release and fixed to match the new apache layout.
+
+*phpmyadmin-2.2.0 (1 Feb 2002)
+
+ 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog :
+
+ Added initial ChangeLog which should be updated whenever the package is
+ updated in any way. This changelog is targetted to users. This means that the
+ comments should well explained and written in clean English. The details about
+ writing correct changelogs are explained in the skel.ChangeLog file which you
+ can find in the root directory of the portage repository.
diff --git a/dev-db/phpmyadmin/files/digest-phpmyadmin-2.2.5 b/dev-db/phpmyadmin/files/digest-phpmyadmin-2.2.5
new file mode 100644
index 000000000000..6fbdf34a7564
--- /dev/null
+++ b/dev-db/phpmyadmin/files/digest-phpmyadmin-2.2.5
@@ -0,0 +1 @@
+MD5 8c36cd3f85f6b313e0d3abb0b7a4da34 phpMyAdmin-2.2.5-php.tar.bz2 289449
diff --git a/dev-db/phpmyadmin/phpmyadmin-2.2.5.ebuild b/dev-db/phpmyadmin/phpmyadmin-2.2.5.ebuild
new file mode 100644
index 000000000000..27ae9390921a
--- /dev/null
+++ b/dev-db/phpmyadmin/phpmyadmin-2.2.5.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# $Header: /var/cvsroot/gentoo-x86/dev-db/phpmyadmin/phpmyadmin-2.2.5.ebuild,v 1.1 2002/04/27 16:58:10 woodchip Exp $
+
+MY_PN=phpMyAdmin
+
+S=${WORKDIR}/${MY_PN}-${PV}
+DESCRIPTION="Web-based administration for MySQL database in php"
+SRC_URI="http://prdownloads.sourceforge.net/${PN}/${MY_PN}-${PV}-php.tar.bz2"
+HOMEPAGE="http://phpmyadmin.sourceforge.net/"
+
+DEPEND=">=net-www/apache-1.3.24-r1 >=dev-db/mysql-3.23.38 >=dev-lang/php-4.1.2-r5"
+
+src_compile() { :; }
+
+src_install () {
+ insinto /home/httpd/htdocs/phpmyadmin
+ doins *.{php,html}
+
+ insinto /home/httpd/htdocs/phpmyadmin/images
+ doins images/*.{gif,png}
+
+ insinto /home/httpd/htdocs/phpmyadmin/scripts
+ doins scripts/*.sh
+
+ insinto /home/httpd/htdocs/phpmyadmin/lang
+ doins lang/*.{php,sh}
+
+ insinto /home/httpd/htdocs/phpmyadmin/libraries
+ doins libraries/*.{php,js}
+
+ insinto /home/httpd/htdocs/phpmyadmin/libraries/auth
+ doins libraries/auth/*.php
+
+ dodoc ANNOUNCE.txt CREDITS ChangeLog TODO Documentation.{txt,html} \
+ INSTALL LICENSE RELEASE-DATE*
+}
+
+pkg_postinst() {
+ einfo
+ einfo "Make sure you edit /home/httpd/htdocs/phpmyadmin/config.inc.php"
+ einfo
+}