| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/vcsh/vcsh-0.20120227.ebuild,v 1.1 2012/04/08 19:27:20 tove Exp $
|
| 4 |
|
| 5 |
EAPI=4
|
| 6 |
GITHUB_ID=ffddb76
|
| 7 |
|
| 8 |
DESCRIPTION='Manage config files in $HOME via fake bare git repositories'
|
| 9 |
HOMEPAGE="https://github.com/RichiH/vcsh/blob/master/README.md"
|
| 10 |
SRC_URI="http://github.com/RichiH/vcsh/tarball/v${PV} -> ${P}.tar.gz"
|
| 11 |
|
| 12 |
LICENSE="|| ( GPL-3 GPL-2 )"
|
| 13 |
SLOT="0"
|
| 14 |
KEYWORDS="~amd64 ~x86"
|
| 15 |
IUSE=""
|
| 16 |
|
| 17 |
RDEPEND="dev-vcs/git"
|
| 18 |
DEPEND="app-text/ronn"
|
| 19 |
|
| 20 |
S="${WORKDIR}/RichiH-vcsh-${GITHUB_ID}"
|
| 21 |
DOCS=( changelog )
|
| 22 |
|
| 23 |
src_prepare() {
|
| 24 |
default
|
| 25 |
sed -i \
|
| 26 |
-e 's,vendor-completions,site-functions,' \
|
| 27 |
-e "s,share/doc/\$(self),share/doc/${PF}," \
|
| 28 |
Makefile || die
|
| 29 |
}
|