blob: 4e03ea3b10ce62cc4d4bae5d687594f4e3460a2a (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/andromeda/andromeda-0.2.1.ebuild,v 1.1 2012/04/29 08:57:23 yngwin Exp $
EAPI=4
inherit cmake-utils
DESCRIPTION="Qt4-based filemanager"
HOMEPAGE="https://gitorious.org/andromeda/pages/Home"
SRC_URI="https://gitorious.org/${PN}/${PN}/archive-tarball/v${PV} -> ${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND=">=x11-libs/qt-core-4.7.0:4
>=x11-libs/qt-gui-4.7.0:4
>=x11-libs/qt-webkit-4.7.0:4"
RDEPEND="${DEPEND}"
DOCS="TODO.txt dist/changes-*"
src_unpack() {
default
mv ${PN}-${PN} "${S}" || die
}
|