From e2673b19ec29f5f1ec18aa6592cfa301c482aa5e Mon Sep 17 00:00:00 2001 From: Micha Glave Date: Thu, 2 Sep 2010 17:17:39 +0200 Subject: [PATCH] import drush 3.3 --- www-apps/drush/Manifest | 2 ++ www-apps/drush/drush-3.3.ebuild | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 www-apps/drush/Manifest create mode 100644 www-apps/drush/drush-3.3.ebuild diff --git a/www-apps/drush/Manifest b/www-apps/drush/Manifest new file mode 100644 index 0000000..c9f025b --- /dev/null +++ b/www-apps/drush/Manifest @@ -0,0 +1,2 @@ +DIST drush-6.x-3.3.tar.gz 174892 RMD160 56b78d988b4cc1d10e346102814b0252ac31b0aa SHA1 e3ebc58153c502ff185f3a61d38729db8329f9e3 SHA256 9b7b8cf0c4426a5b3211cb349130ca9ef8222bb6b0a8dc7fdc24a8be4edd9755 +EBUILD drush-3.3.ebuild 716 RMD160 efab5f6711df4d176c3f07f49aa17448bc849323 SHA1 ff6e1d2bf81af8c3bcb08e8d6b07d50479167589 SHA256 f72658b5e57b3506a3848b494e5b4c72271ec8dd796dc0989db7f65777f8c4c0 diff --git a/www-apps/drush/drush-3.3.ebuild b/www-apps/drush/drush-3.3.ebuild new file mode 100644 index 0000000..957e529 --- /dev/null +++ b/www-apps/drush/drush-3.3.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="2" + +DESCRIPTION="Drupal-centric shell. Simplifies Drupal installation/management" +HOMEPAGE="http://drupal.org/project/drush" +SRC_URI="http://ftp.drupal.org/files/projects/${PN}-6.x-${PV}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND="dev-lang/php[cli,pcre,simplexml] + dev-php/PEAR-Console_Table" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/${PN} + +src_install() { + insinto /usr/share/drush + exeinto /usr/share/drush + + dodoc README.txt || die + + doins -r includes commands drush.php drush.api.php || die + + doexe drush || die + + dosym /usr/share/drush/drush /usr/bin/drush || die +}