blob: 4eb8f5c035c4992b588e299ddf6fe6c4fb96b928 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: ranger Exp $
EAPI="4"
DESCRIPTION="a presentation framework based on CSS3 transforms and transitions inspired by prezi.com"
HOMEPAGE="http://bartaz.github.com/impress.js"
SRC_URI="https://github.com/bartaz/impress.js/tarball/${PV} -> ${P}.tar.gz"
IUSE=""
LICENSE="MIT GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
DEPEND=""
RDEPEND="${DEPEND}"
S=${WORKDIR}
src_unpack() {
unpack ${A}
}
src_install() {
mkdir -p "${D}"/usr/share/"${PN}"
cp -r "${WORKDIR}"/bartaz-impress.js-e8fbd0c/* "${D}"/usr/share/"${PN}"/
}
|