gentoo-overlay/x11-plugins/telegram-purple/telegram-purple-9999.ebuild

43 lines
808 B
Bash

# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=8
inherit git-r3
DESCRIPTION="Adds support for Telegram to Pidgin and Finch."
HOMEPAGE="https://github.com/majn/telegram-purple"
EGIT_REPO_URI="https://github.com/majn/telegram-purple"
KEYWORDS="~amd64"
case ${PV} in
"1.3.0")
EGIT_COMMIT="0340e4f14b2480782db4e5b9242103810227c522"
;;
"1.3.1")
EGIT_COMMIT="065e0b7ac946f65f080bf05e8f91a1a4214e2d24"
;;
*)
EGIT_BRANCH="master"
KEYWORDS="~*"
;;
esac
LICENSE="GPL-2"
SLOT="0"
IUSE="+webp"
DEPEND="
sys-devel/gettext
dev-libs/libgcrypt:0/20
webp? ( media-libs/libwebp )
net-im/pidgin
sys-libs/zlib
"
RDEPEND="${DEPEND}"
src_configure() {
econf $(use_enable webp libwebp)
sed -i -e 's:-Werror::' tgl/Makefile.in || die
}