41 lines
1.0 KiB
Bash
41 lines
1.0 KiB
Bash
|
|
# Copyright 1999-2016 Gentoo Foundation
|
||
|
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
# $Id$
|
||
|
|
|
||
|
|
EAPI=6
|
||
|
|
|
||
|
|
DESCRIPTION="Hipchat - persistent group chat using XMPP."
|
||
|
|
HOMEPAGE="https://www.hipchat.com"
|
||
|
|
# Note: get current version from: http://dl.google.com/linux/talkplugin/deb/dists/stable/main/binary-amd64/Packages
|
||
|
|
SRC_URI="http://dl.google.com/linux/talkplugin/deb/pool/main/g/google-talkplugin/google-talkplugin_${PV}.0.0-1_amd64.deb"
|
||
|
|
|
||
|
|
LICENSE="Google"
|
||
|
|
SLOT="0"
|
||
|
|
KEYWORDS="amd64"
|
||
|
|
|
||
|
|
RDEPEND=">=media-libs/alsa-lib-1.0.23
|
||
|
|
>=sys-libs/glibc-2.14
|
||
|
|
>=x11-libs/cairo-1.2.4
|
||
|
|
>=x11-libs/gdk-pixbuf-2.22.0
|
||
|
|
>=dev-libs/glib-2.14.0
|
||
|
|
>=x11-libs/gtk+-2.24.0
|
||
|
|
>=x11-libs/pango-1.14.0
|
||
|
|
x11-libs/libX11
|
||
|
|
>=x11-libs/libXcomposite-0.3-r1
|
||
|
|
x11-libs/libXext
|
||
|
|
x11-libs/libXfixes
|
||
|
|
>=x11-libs/libXrandr-1.2.99.2
|
||
|
|
x11-libs/libXrender
|
||
|
|
media-libs/libv4l"
|
||
|
|
|
||
|
|
src_unpack() {
|
||
|
|
mkdir "${WORKDIR}/${PF}"
|
||
|
|
cd "${WORKDIR}/${PF}"
|
||
|
|
ar x "${DISTDIR}/google-talkplugin_${PV}.0.0-1_amd64.deb"
|
||
|
|
}
|
||
|
|
|
||
|
|
src_install() {
|
||
|
|
tar xzvf data.tar.gz -C "${D}"
|
||
|
|
}
|
||
|
|
|