blob: c19138ea3b760ddb92a54d085ea36a965b954be1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="4"
inherit git-2
DESCRIPTION="Scripts for paludis, the other package mangler"
HOMEPAGE="http://paludis.pioto.org/"
SRC_URI=""
EGIT_REPO_URI="git://git.pioto.org/paludis-scripts.git"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=""
RDEPEND="sys-apps/paludis[ruby-bindings]"
src_unpack() {
git-2_src_unpack
}
src_install() {
cd ${S}
insinto /usr/share/paludis/hooks/demos
doins *.hook
exeinto /opt/bin
doexe `find . -maxdepth 1 -type f ! -name *.hook`
}
|