alpha-quadrant/app-admin/drush/drush-8.0.0.ebuild
2015-11-24 11:07:42 +01:00

53 lines
1.3 KiB
Bash

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit bash-completion-r1
GITHUB_USER="drush-ops"
DESCRIPTION="Drush is a command line shell and scripting interface for Drupal"
HOMEPAGE="https://github.com/drush-ops/drush"
GITHUB_TAG="${PV}"
SRC_URI="https://github.com/${GITHUB_USER}/${PN}/tarball/${GITHUB_TAG} -> ${GITHUB_USER}-${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="+examples"
DEPEND="dev-lang/php[cli,simplexml]
dev-php/pear
dev-php/PEAR-Console_Table
dev-php/PEAR-Console_Getopt"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${GITHUB_USER}-${PN}-1b4e886"
src_prepare() {
sed -i \
-e "s!\.php'!.php.bz2'!" \
-e "s!\.ini'!.ini.bz2'!" \
-e "s!\.txt'!.txt.bz2'!" \
-e "s!\.bashrc'!.bashrc.bz2'!" \
commands/core/docs.drush.inc || die
}
src_install() {
local docs="README.md docs"
use examples && docs="${docs} examples"
insinto /usr/share/drush
doins -r .
exeinto /usr/share/drush
doexe drush
dosym /usr/share/drush/drush /usr/bin/drush
dodoc -r ${docs}
# cleanup
for i in ${docs} LICENSE.txt drush.bat examples includes/.gitignore \
.gitignore .travis.yml drush.complete.sh ; do
rm -rf "${D}/usr/share/drush/${i}"
done
keepdir /etc/drush
newbashcomp drush.complete.sh drush
}