import drush 3.3

This commit is contained in:
Micha Glave 2010-09-02 17:17:39 +02:00
parent 151864f8a3
commit e2673b19ec
2 changed files with 35 additions and 0 deletions

2
www-apps/drush/Manifest Normal file
View File

@ -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

View File

@ -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
}