Mercurial > hg > portage
annotate dev-python/python-msrplib/python-msrplib-0.19.1.ebuild @ 565:fb3b4edf20c9 default tip
openjdk is in portage now
author | Dirk Olmes <dirk.olmes@codedo.de> |
---|---|
date | Tue, 23 Jul 2024 15:55:19 +0200 |
parents | 7e560a7c788b |
children |
rev | line source |
---|---|
445
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
1 # Copyright 1999-2017 Gentoo Foundation |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
2 # Distributed under the terms of the GNU General Public License v2 |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
3 |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
4 EAPI="6" |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
5 |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
6 PYTHON_COMPAT=( python2_7 ) |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
7 DISTUTILS_SINGLE_IMPL=1 |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
8 |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
9 inherit distutils-r1 |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
10 |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
11 DESCRIPTION="Client library for MSRP protocol and its relay extension" |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
12 HOMEPAGE="http://sipsimpleclient.org" |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
13 SRC_URI="https://github.com/AGProjects/${PN}/archive/release-${PV}.tar.gz" |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
14 S=${WORKDIR}/${PN}-release-${PV} |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
15 |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
16 LICENSE="LGPL-2+" |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
17 SLOT="0" |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
18 IUSE="" |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
19 |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
20 KEYWORDS="~amd64 ~x86" |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
21 |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
22 RDEPEND=" |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
23 dev-python/python-application[${PYTHON_USEDEP}] |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
24 dev-python/python-eventlib[${PYTHON_USEDEP}] |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
25 dev-python/python-gnutls[${PYTHON_USEDEP}] |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
26 dev-python/twisted-core[${PYTHON_USEDEP}] |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
27 dev-python/twisted-names[${PYTHON_USEDEP}] |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
28 " |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
29 src_compile() { |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
30 python setup.py build_ext |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
31 } |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
32 |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
33 src_install() { |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
34 python setup.py install --home "${D}" --install-purelib="${D}"usr/lib64/python2.7/site-packages --install-platlib="${D}"usr/lib64/python2.7/site-packages --install-scripts="${D}"/usr/bin --install-data="${D}"usr |
7e560a7c788b
add the necessary ebuilds to make blink work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
35 } |