| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/net-im/skypetab-ng/skypetab-ng-0.5.0.ebuild,v 1.2 2012/07/26 17:01:38 johu Exp $
|
| 4 |
|
| 5 |
EAPI=4
|
| 6 |
|
| 7 |
if [[ ${PV} = *9999* ]]; then
|
| 8 |
EGIT_REPO_URI="git://github.com/kekekeks/skypetab-ng.git"
|
| 9 |
UNPACKER_ECLASS="git-2"
|
| 10 |
LIVE_EBUILD=yes
|
| 11 |
else
|
| 12 |
UNPACKER_ECLASS="vcs-snapshot"
|
| 13 |
fi
|
| 14 |
|
| 15 |
inherit qt4-r2 multilib ${UNPACKER_ECLASS}
|
| 16 |
|
| 17 |
if [[ -z ${LIVE_EBUILD} ]]; then
|
| 18 |
KEYWORDS="-* ~x86 ~amd64"
|
| 19 |
SRC_URI="http://github.com/kekekeks/${PN}/tarball/v${PV}-fixed -> ${P}.tar.gz"
|
| 20 |
fi
|
| 21 |
|
| 22 |
DESCRIPTION="An LD_PRELOAD wrapper that adds tabs to Skype for Linux"
|
| 23 |
HOMEPAGE="http://github.com/kekekeks/skypetab-ng"
|
| 24 |
LICENSE="LGPL-3"
|
| 25 |
SLOT="0"
|
| 26 |
IUSE=""
|
| 27 |
|
| 28 |
DEPEND="
|
| 29 |
x11-libs/qt-gui:4
|
| 30 |
amd64? ( app-emulation/emul-linux-x86-qtlibs )
|
| 31 |
"
|
| 32 |
RDEPEND="${DEPEND}
|
| 33 |
net-im/skype[-qt-static]
|
| 34 |
"
|
| 35 |
|
| 36 |
pkg_setup() {
|
| 37 |
use amd64 && multilib_toolchain_setup x86
|
| 38 |
}
|