diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-04-13 16:29:02 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-04-13 16:29:02 +0200 |
commit | 0ac9a8d00ed09a9b08d669d52cdc26a25f527a90 (patch) | |
tree | 05658e417ead96c4ccdc540c45c00fa3c54a835e /net-misc | |
parent | app-arch/unrpa: Fix variable order (diff) | |
download | gentoo-0ac9a8d00ed09a9b08d669d52cdc26a25f527a90.tar.gz gentoo-0ac9a8d00ed09a9b08d669d52cdc26a25f527a90.tar.bz2 gentoo-0ac9a8d00ed09a9b08d669d52cdc26a25f527a90.zip |
net-misc/openr2: Remove last-rited pkg
Closes: https://bugs.gentoo.org/914477
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/openr2/Manifest | 1 | ||||
-rw-r--r-- | net-misc/openr2/files/openr2-1.3.0-fix-build-system.patch | 30 | ||||
-rw-r--r-- | net-misc/openr2/metadata.xml | 8 | ||||
-rw-r--r-- | net-misc/openr2/openr2-1.3.0.ebuild | 35 |
4 files changed, 0 insertions, 74 deletions
diff --git a/net-misc/openr2/Manifest b/net-misc/openr2/Manifest deleted file mode 100644 index 0836806e9a62..000000000000 --- a/net-misc/openr2/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST openr2-1.3.0.tar.gz 650048 BLAKE2B bff444c839d5f62fc889c1720cb9c17c38c5bd4b0dc3b3884c8fd00226aa6354281cf37c7a748fca4e16e633a94ac055c8f7b5e4bf69d97732846fdbc618ca47 SHA512 2cee4534eeebb91a2cf0f74c9fcd2a16db3966db01a4bae7e3406416546fdc1c5e20bb9172375f55e5dcc30cfcc2c8f7182ef7476253b4fcce9421f74b8d125e diff --git a/net-misc/openr2/files/openr2-1.3.0-fix-build-system.patch b/net-misc/openr2/files/openr2-1.3.0-fix-build-system.patch deleted file mode 100644 index 59918934d563..000000000000 --- a/net-misc/openr2/files/openr2-1.3.0-fix-build-system.patch +++ /dev/null @@ -1,30 +0,0 @@ ---- a/configure.in -+++ b/configure.in -@@ -25,11 +25,6 @@ - AC_CONFIG_HEADERS(config.h) - AM_INIT_AUTOMAKE - --# let's default to compile with debugging information --# most users will not even care about it --CFLAGS='-ggdb3 -O0' --CXXFLAGS='-ggdb3 -O0' -- - AC_PROG_CC - AC_PROG_LIBTOOL - AC_LANG([C]) -diff -ur ORIG/src/Makefile.am MOD/src/Makefile.am ---- a/src/Makefile.am -+++ b/src/Makefile.am -@@ -1,10 +1,10 @@ --AM_CFLAGS = -std=c99 -pedantic -Wall -Werror -Wwrite-strings -Wunused-variable -Wstrict-prototypes -Wmissing-prototypes -+AM_CFLAGS = -std=c99 -pedantic -Werror -Wwrite-strings -Wunused-variable -Wstrict-prototypes -Wmissing-prototypes - if WANT_OR2_TRACE_STACKS - AM_CFLAGS += -DOR2_TRACE_STACKS - endif - - if HAVE_SVNVERSION --AM_CFLAGS += -DREVISION=\"$(shell svnversion -n .)\" -+AM_CFLAGS += -DREVISION=\"0\" - endif - - lib_LTLIBRARIES = libopenr2.la diff --git a/net-misc/openr2/metadata.xml b/net-misc/openr2/metadata.xml deleted file mode 100644 index b61afa2b03b1..000000000000 --- a/net-misc/openr2/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <!-- maintainer-needed --> - <upstream> - <remote-id type="google-code">openr2</remote-id> - </upstream> -</pkgmetadata> diff --git a/net-misc/openr2/openr2-1.3.0.ebuild b/net-misc/openr2/openr2-1.3.0.ebuild deleted file mode 100644 index 2f15c2e0e766..000000000000 --- a/net-misc/openr2/openr2-1.3.0.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# 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 -} |