2020-02-26 23:41:04 +01:00
|
|
|
# Copyright 2020 Gentoo Authors
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=7
|
|
|
|
|
|
|
|
inherit eutils
|
|
|
|
|
|
|
|
DESCRIPTION="Shared C library to include Cisco-like CLI into other software"
|
|
|
|
HOMEPAGE="https://dparrish.com/pages/libcli"
|
|
|
|
SRC_URI="https://github.com/dparrish/${PN}/archive/V${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="LGPL-2.1"
|
|
|
|
SLOT="0"
|
2020-02-26 23:43:57 +01:00
|
|
|
KEYWORDS="~amd64"
|
2020-02-26 23:41:04 +01:00
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
DEPEND=""
|
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
BDEPEND=""
|
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
eapply -p2 "${FILESDIR}/${PN}-Makefile.patch"
|
|
|
|
eapply_user
|
|
|
|
}
|