summaryrefslogtreecommitdiff
path: root/dev-libs/antlr-c
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
commitf716a9fe6455d39eef01e718aae68dae61c19704 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-libs/antlr-c
parent3f9cf298e89cd5037b982abba06091224ee76daf (diff)
downloadbaldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.gz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.xz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.zip
Adding metadata
Diffstat (limited to 'dev-libs/antlr-c')
-rw-r--r--dev-libs/antlr-c/Manifest1
-rw-r--r--dev-libs/antlr-c/antlr-c-3.5.2-r3.ebuild62
-rw-r--r--dev-libs/antlr-c/files/3.5-autoconf.patch11
-rw-r--r--dev-libs/antlr-c/files/3.5-cflags.patch13
-rw-r--r--dev-libs/antlr-c/metadata.xml8
5 files changed, 0 insertions, 95 deletions
diff --git a/dev-libs/antlr-c/Manifest b/dev-libs/antlr-c/Manifest
deleted file mode 100644
index 74e5d822f931..000000000000
--- a/dev-libs/antlr-c/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST antlr-3.5.2.tar.gz 6927126 BLAKE2B 1907229549434dfea6ef1fa915137a2f733bd61f0a40aacb131689df619d1c92e125453ec3d1febc5d92da1841ffbde060af196cff1ca8fb6f4684600375e161 SHA512 e2a0520093fb2a77dcd9d44f26a9fdd612dceaffb398c53b2b8cd29f4630830647ede29e8dd55b434cb2c165b0fd1d77968ec6e6de0798f14d9cdfd9e6fccd99
diff --git a/dev-libs/antlr-c/antlr-c-3.5.2-r3.ebuild b/dev-libs/antlr-c/antlr-c-3.5.2-r3.ebuild
deleted file mode 100644
index e06ab68c5f62..000000000000
--- a/dev-libs/antlr-c/antlr-c-3.5.2-r3.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools toolchain-funcs
-
-MY_PN="${PN%-c}"
-DESCRIPTION="The ANTLR3 C Runtime"
-HOMEPAGE="https://www.antlr3.org/"
-SRC_URI="https://github.com/${MY_PN}/${MY_PN}3/archive/${PV}.tar.gz -> ${MY_PN}-${PV}.tar.gz"
-S="${WORKDIR}/${MY_PN}3-${PV}/runtime/C"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="debug doc"
-
-BDEPEND="doc? ( app-text/doxygen[dot] )"
-
-PATCHES=(
- "${FILESDIR}/3.5-cflags.patch"
- "${FILESDIR}/3.5-autoconf.patch"
-)
-
-src_prepare() {
- default
-
- sed -i '/^QUIET/s/NO/YES/' doxyfile || die
- eautoreconf
-}
-
-src_configure() {
- local econfargs=(
- $(use_enable debug antlrdebug)
- )
-
- case "$(tc-get-ptr-size)" in
- 8) econfargs+=( --enable-64bit ) ;;
- 4) econfargs+=( --disable-64bit ) ;;
- esac
-
- CONFIG_SHELL="${BROOT}"/bin/bash econf "${econfargs[@]}"
-}
-
-src_compile() {
- default
-
- if use doc ; then
- einfo "Generating API documentation ..."
- doxygen -u doxyfile || die
- doxygen doxyfile || die
-
- HTML_DOCS=( "${S}"/api/ )
- fi
-}
-
-src_install() {
- default
-
- find "${ED}" -name '*.la' -delete || die
-}
diff --git a/dev-libs/antlr-c/files/3.5-autoconf.patch b/dev-libs/antlr-c/files/3.5-autoconf.patch
deleted file mode 100644
index 5077652d2b5c..000000000000
--- a/dev-libs/antlr-c/files/3.5-autoconf.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-https://bugs.gentoo.org/921345
---- a/configure.ac
-+++ b/configure.ac
-@@ -148,7 +148,6 @@ AC_PROG_MAKE_SET
- # Checks for libraries.
-
- # Checks for header files.
--AC_INCLUDES_DEFAULT()
- AC_HEADER_RESOLV
- AC_CHECK_HEADERS([sys/malloc.h malloc.h], [], [],
- [[#ifdef HAVE_SYS_MALLOC_H
diff --git a/dev-libs/antlr-c/files/3.5-cflags.patch b/dev-libs/antlr-c/files/3.5-cflags.patch
deleted file mode 100644
index a2e91397b2e6..000000000000
--- a/dev-libs/antlr-c/files/3.5-cflags.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- a/configure.ac
-+++ b/configure.ac
-@@ -134,8 +134,8 @@
- ;;
- esac
-
--CFLAGS="$CCFLAGS64 $CPPCMNTFLAGS $OPTIMFLAGS $DEBUGFLAGS $WARNFLAGS"
--AC_MSG_RESULT([$CFLAGS])
-+AM_CFLAGS="$CCFLAGS64 $CPPCMNTFLAGS $OPTIMFLAGS $DEBUGFLAGS $WARNFLAGS"
-+AC_MSG_RESULT([$AM_CFLAGS])
- AC_SUBST([OBJECT_MODE])
-
- AS_IF([test "x$enable_antlrdebug" = xno], [AC_DEFINE([ANTLR3_NODEBUGGER], [1], [Define if ANTLR debugger not required])], [])
diff --git a/dev-libs/antlr-c/metadata.xml b/dev-libs/antlr-c/metadata.xml
deleted file mode 100644
index 10d4bd616252..000000000000
--- a/dev-libs/antlr-c/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="github">antlr/antlr3</remote-id>
- </upstream>
-</pkgmetadata>