blob: 219650a052e8c9719865c09a055783ea861bfaac (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-misc/kdocker/kdocker-4.6-r1.ebuild,v 1.1 2011/06/19 09:00:04 dilfridge Exp $
EAPI=3
inherit base qt4-r2
DESCRIPTION="KDocker will help you dock any application into the system tray"
HOMEPAGE="https://launchpad.net/kdocker/"
SRC_URI="http://launchpad.net/kdocker/trunk/${PV:0:3}/+download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
PATCHES=( "${FILESDIR}/${P}-icon.patch" )
src_configure() {
eqmake4
}
src_install() {
emake INSTALL_ROOT="${D}" install || die
dodoc AUTHORS BUGS ChangeLog CREDITS README TODO
}
|