diff options
author | Sam James <sam@gentoo.org> | 2023-12-27 21:15:19 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-12-27 21:15:57 +0000 |
commit | ebe86585e288a9cecfb9c08255da44035831fbfb (patch) | |
tree | 24a3dffca71003070e2f26e5c19c5ba8385024af /net-misc/openr2/openr2-1.3.0.ebuild | |
parent | dev-ruby/abstract: enable ruby33 (diff) | |
download | gentoo-ebe86585e288a9cecfb9c08255da44035831fbfb.tar.gz gentoo-ebe86585e288a9cecfb9c08255da44035831fbfb.tar.bz2 gentoo-ebe86585e288a9cecfb9c08255da44035831fbfb.zip |
Revert "net-misc/openr2: treeclean"
This reverts commit b23bb0ae40afd13783064727b382671692b3714a.
Removal date was not yet met & there are plans to possibly resurrect dahdi,
per the bug.
Bug: https://bugs.gentoo.org/914477
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-misc/openr2/openr2-1.3.0.ebuild')
-rw-r--r-- | net-misc/openr2/openr2-1.3.0.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/net-misc/openr2/openr2-1.3.0.ebuild b/net-misc/openr2/openr2-1.3.0.ebuild new file mode 100644 index 000000000000..2f15c2e0e766 --- /dev/null +++ b/net-misc/openr2/openr2-1.3.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit autotools + +DESCRIPTION="An open implementation of the MFC/R2 telephony signaling protocol" +HOMEPAGE="https://libopenr2.org/" +SRC_URI="https://${PN}.googlecode.com/files/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND="net-misc/dahdi" +DEPEND="${RDEPEND}" + +PATCHES=( "${FILESDIR}"/${P}-fix-build-system.patch ) + +src_prepare() { + default + mv configure.{in,ac} || die + eautoreconf +} + +src_configure() { + econf --disable-static +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} |