blob: d0f182b3411167ae18106d8f3f142c8b211f5bc0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit git-r3
DESCRIPTION="Libpurple (Pidgin) plugin for using a Telegram account"
HOMEPAGE="https://github.com/majn/${PN}"
SRC_URI=""
EGIT_REPO_URI="${HOMEPAGE}"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS=""
IUSE=""
DEPEND="net-im/pidgin
dev-libs/openssl
sys-libs/glibc
"
RDEPEND="${DEPEND}"
src_compile(){
econf || die "econf failed"
emake || die "emake failed"
}
src_install(){
emake DESTDIR="${D}" install
}
pkg_postinst(){
elog "Note: this package is in an early (pre-alpha) stage, so if you"
elog "want to view changes, install this package often."
elog "More information is available in ${HOMEPAGE}"
}
|