32 lines
776 B
Bash
32 lines
776 B
Bash
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
inherit rebar
|
|
|
|
DESCRIPTION="Erlang Image Manipulation Process"
|
|
HOMEPAGE="https://github.com/processone/eimp"
|
|
SRC_URI="https://github.com/processone/eimp/archive/${PV}.tar.gz
|
|
-> ${P}.tar.gz"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
RDEPEND=">=dev-erlang/p1_utils-1.0.14
|
|
>=dev-lang/erlang-17.1
|
|
media-libs/gd[png,jpeg,webp]"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
DOCS=( README.md LICENSE.txt )
|
|
|
|
src_prepare() {
|
|
rebar_src_prepare
|
|
|
|
# FIXME: The test fails when run from ebuild for some reason. I don't
|
|
# FIXME: Erlang and I don't know how to fix it other than by disabling
|
|
# FIXME: test.
|
|
sed -e '/^disconnected_test() ->/,/^$/ d' -i 'test/eimp_test.erl' || die
|
|
}
|