tkurbad-overlay/net-voip/homer-conferencing/homer-conferencing-9999.ebuild
2012-11-13 15:31:48 +01:00

53 lines
1.2 KiB
Bash

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
inherit multilib
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
INSTALL_PREFIX="${D}"/usr INSTALL_LIBDIR="${D}"/usr/$(get_libdir) emake all \
|| die "make failed"
}
src_install() {
cd "${S}"/HomerBuild
INSTALL_PREFIX="${D}"/usr INSTALL_LIBDIR="${D}"/usr/$(get_libdir) emake install \
|| die "emake install failed"
}