forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Florian Schmaus <[email protected]>
- Loading branch information
Showing
2 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST esip-1.0.47.tar.gz 91238 BLAKE2B 041a04009d4687187699bfb78381dd6baefb503bdbdd4b31efeb81786e3e0a4e47085336888fd481ecf28c4e32c296adef05eba7ff17eb084da14e645773cb31 SHA512 68be1c8cf507180e73f3a16dfd8ca44ffad825c40df0d1874888afa41f3cb89b445b033036d041af29ec3fdbdab7acc68f770124171ba4af73abd0775a03c0ba | ||
DIST esip-1.0.48.tar.gz 91251 BLAKE2B ff78a01dd46c73a550b123c87542aebbe988a5e3c19efd83ad82251399287faf8cd97ad39debe52a28a2ddd5bd025cbeec6132658663989470509906111dcb93 SHA512 9acc47fee89ee99f3de892c568052ad614305dbecfb9742269672772393d95c60440f7c676c62b0b8fc69854332924c3d3f661a5972df4f27f58358e591373aa | ||
DIST esip-1.0.49.tar.gz 91250 BLAKE2B ec4d2605977d7ed48e003e06a328757aea8ef50628dbb0436ef5f64325da9ed7ac1d3a34865fa806d3fcc2c639e6e6d53307fa8d220f37c18411d9bec1f5b44b SHA512 d21cf28b08fd01f5379242ae6fb4741d130d991e5f409865de27084c161c73bda9b283309fa9ab36fd1d7b9cdeac45b6955949455d7a11620b059ce7530a9a4e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Copyright 1999-2023 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
inherit rebar | ||
|
||
DESCRIPTION="ProcessOne SIP server component" | ||
HOMEPAGE="https://github.com/processone/esip" | ||
SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="Apache-2.0" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86" | ||
|
||
DEPEND=" | ||
>=dev-erlang/fast_tls-1.1.16 | ||
>=dev-erlang/stun-1.2.7 | ||
>=dev-erlang/p1_utils-1.0.25 | ||
" | ||
RDEPEND="${DEPEND}" | ||
|
||
DOCS=( CHANGELOG.md README.md ) | ||
|
||
src_prepare() { | ||
rebar_src_prepare | ||
rebar_fix_include_path stun | ||
} |