updating to drush 4.4

This commit is contained in:
Micha Glave 2011-05-09 12:36:04 +02:00
parent 654644ac0f
commit 032421f175
2 changed files with 13 additions and 10 deletions

View File

@ -1,2 +1,2 @@
DIST drush-6.x-3.3.tar.gz 174892 RMD160 56b78d988b4cc1d10e346102814b0252ac31b0aa SHA1 e3ebc58153c502ff185f3a61d38729db8329f9e3 SHA256 9b7b8cf0c4426a5b3211cb349130ca9ef8222bb6b0a8dc7fdc24a8be4edd9755 DIST drush-7.x-4.4.tar.gz 253012 RMD160 31d0580692b1fd52dc79a232b6d227034777477c SHA1 2cb75bff825ccc793a1669d9c52c7325c9680464 SHA256 f6af5d259c169d0b3738568c9a8d114c8958df6deb5440fce3b5842e753fc88f
EBUILD drush-3.3.ebuild 716 RMD160 efab5f6711df4d176c3f07f49aa17448bc849323 SHA1 ff6e1d2bf81af8c3bcb08e8d6b07d50479167589 SHA256 f72658b5e57b3506a3848b494e5b4c72271ec8dd796dc0989db7f65777f8c4c0 EBUILD drush-4.4.ebuild 801 RMD160 67ec9658956a3f510a20f9be62548f92112cc707 SHA1 f5e0e384a659c17ed0711916c6e123cf7f00821e SHA256 4a76cff8eb7e60988b8cad44b1bee672a484c3ff61440ce29dda3fa0099827fb

View File

@ -4,30 +4,33 @@
EAPI="2" EAPI="2"
SRC_URI="http://ftp.drupal.org/files/projects/${PN}-7.x-${PV}.tar.gz"
S=${WORKDIR}/${PN}
DESCRIPTION="Drupal-centric shell. Simplifies Drupal installation/management" DESCRIPTION="Drupal-centric shell. Simplifies Drupal installation/management"
HOMEPAGE="http://drupal.org/project/drush" HOMEPAGE="http://drupal.org/project/drush"
SRC_URI="http://ftp.drupal.org/files/projects/${PN}-6.x-${PV}.tar.gz"
LICENSE="GPL-2" LICENSE="GPL-2"
SLOT="0" SLOT="0"
KEYWORDS="~amd64" KEYWORDS="amd64 x86"
IUSE="" IUSE="examples"
DEPEND="dev-lang/php[cli,pcre,simplexml] #DEPEND="dev-lang/php[cli,simplexml]"
dev-php/PEAR-Console_Table" DEPEND="dev-lang/php[cli,simplexml] dev-php/pear"
RDEPEND="${DEPEND}" RDEPEND="${DEPEND}"
S=${WORKDIR}/${PN}
src_install() { src_install() {
insinto /usr/share/drush insinto /usr/share/drush
exeinto /usr/share/drush exeinto /usr/share/drush
dodoc README.txt || die dodoc README.txt || die
doins -r includes commands drush.php drush.api.php || die doins -r includes commands drush.php drush.info || die
doexe drush || die doexe drush || die
dosym /usr/share/drush/drush /usr/bin/drush || die dosym /usr/share/drush/drush /usr/bin/drush || die
use examples && cp -R examples ${D}/usr/share/doc/${PF}
} }