[dev-erlang/epam] bump to 1.0.5

This commit is contained in:
Robert Förster 2019-03-22 00:16:55 +01:00
parent c652147b85
commit d7d3846718
2 changed files with 34 additions and 0 deletions

1
dev-erlang/epam/Manifest Normal file
View File

@ -0,0 +1 @@
DIST epam-1.0.5.tar.gz 47497 BLAKE2B ab21a98919ffc4a42fbdd6673c89a1771a0bdc34e60eb20228f5d48185db2a9317ced77fad05d35e039d49ea39b20bfa2ee079b544ebdba6961cde7ce71e1d87 SHA512 0073a949dfef7995dc0c25868f4c27b4cf8493b20c470f3734e1fbdf97334903dea7adfeae047981c86345a2b07929c399fd5b8f82530c248cc9a8d4c3f3eaaf

View File

@ -0,0 +1,33 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit rebar user
DESCRIPTION="epam for ejabberd to help with PAM authentication support"
HOMEPAGE="https://github.com/processone/epam"
SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
-> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
DEPEND=">=dev-lang/erlang-17.1
sys-libs/pam"
RDEPEND="${DEPEND}"
DOCS=( README.md )
pkg_setup() {
enewgroup "${PN}"
}
src_install() {
rebar_src_install
local epam_path="$(get_erl_libs)/${P}/priv/bin/epam"
fowners root:"${PN}" "${epam_path}"
fperms 4750 "${epam_path}"
}