52 lines
1.1 KiB
Bash
52 lines
1.1 KiB
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI=4
|
|
|
|
DESCRIPTION="Homer Conferencing (short: Homer) is a free SIP spftphone with advanced audio and video support."
|
|
HOMEPAGE="http://www.homer-conferencing.com"
|
|
|
|
MY_PN="Homer-Conferencing"
|
|
|
|
if [[ ${PV} == *9999* ]]; then
|
|
inherit git-2
|
|
EGIT_REPO_URI="git://github.com/${MY_PN}/${MY_PN}.git"
|
|
KEYWORDS=""
|
|
else
|
|
SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/V${PV}.tar.gz -> ${PN}-${PV}.tar.gz"
|
|
KEYWORDS="~x86 ~amd64"
|
|
fi
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
IUSE=""
|
|
|
|
RDEPEND=">=dev-libs/openssl-1.0
|
|
media-libs/alsa-lib
|
|
>=media-libs/libsdl-1.2
|
|
media-libs/portaudio[alsa]
|
|
>=media-libs/sdl-mixer-1.2
|
|
>=media-libs/sdl-sound-1.0
|
|
media-libs/x264
|
|
media-video/ffmpeg
|
|
>=net-libs/sofia-sip-1.12
|
|
>=x11-libs/qt-gui-4.6"
|
|
DEPEND="dev-util/cmake
|
|
${RDEPEND}"
|
|
|
|
S="${WORKDIR}/${MY_PN}-${PV}"
|
|
|
|
src_compile() {
|
|
cd "${S}"/HomerBuild
|
|
emake all || die "make failed"
|
|
}
|
|
|
|
src_install() {
|
|
cd "${S}"/HomerBuild
|
|
emake install \
|
|
INSTALL_PREFIX="${D}"/usr \
|
|
INSTALL_LIBDIR="${D}"/usr/$(get_libdir) \
|
|
|| die "emake install failed"
|
|
}
|