summaryrefslogtreecommitdiff
path: root/media-libs/aalib
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
commit290aebdea65a02557706eaeda477fef0437b6a48 (patch)
treef87a939169a508a2e943570501b64cc16b411cda /media-libs/aalib
parent6783ddcd4b73d9ce586a71770caed352bec93b16 (diff)
downloadbaldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip
Adding metadata
Diffstat (limited to 'media-libs/aalib')
-rw-r--r--media-libs/aalib/Manifest1
-rw-r--r--media-libs/aalib/aalib-1.4_rc5-r10.ebuild69
-rw-r--r--media-libs/aalib/aalib-1.4_rc5-r11.ebuild74
-rw-r--r--media-libs/aalib/files/aalib-1.4_rc4-gentoo.patch35
-rw-r--r--media-libs/aalib/files/aalib-1.4_rc4-m4.patch9
-rw-r--r--media-libs/aalib/files/aalib-1.4_rc5-fix-aarender.patch34
-rw-r--r--media-libs/aalib/files/aalib-1.4_rc5-fix-protos.patch56
-rw-r--r--media-libs/aalib/files/aalib-1.4_rc5-free-offset-pointer.patch14
-rw-r--r--media-libs/aalib/files/aalib-1.4_rc5-key-down-OOB.patch23
-rw-r--r--media-libs/aalib/files/aalib-1.4_rc5-more-protos.patch55
-rw-r--r--media-libs/aalib/files/aalib-1.4_rc5-ncurses-opaque.patch24
-rw-r--r--media-libs/aalib/files/aalib-1.4_rc5-tinfo.patch19
-rw-r--r--media-libs/aalib/metadata.xml8
13 files changed, 0 insertions, 421 deletions
diff --git a/media-libs/aalib/Manifest b/media-libs/aalib/Manifest
deleted file mode 100644
index 9fd18ce29ce7..000000000000
--- a/media-libs/aalib/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST aalib-1.4rc5.tar.gz 391028 BLAKE2B fd527716c0484d45fa3b75712a24301bd485fab8191ac1d5c6d35f8af093a00e11f0f8d2797ddcc32f4d87a39649fd50145dcc557e5ba98e67336cff2bb79002 SHA512 3e4506eccce3b81ccbbb79a4a1b90abd39e2259e6043fde90f70b9ca279bd4c37758a047167267b97c4ec92f64fb17c7c8f548114f0d0c6e78ddb9463b5f1299
diff --git a/media-libs/aalib/aalib-1.4_rc5-r10.ebuild b/media-libs/aalib/aalib-1.4_rc5-r10.ebuild
deleted file mode 100644
index ed73ce1f768f..000000000000
--- a/media-libs/aalib/aalib-1.4_rc5-r10.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools multilib-minimal toolchain-funcs
-
-MY_PV="${PV/_/}"
-MY_P="${PN}-${MY_PV}"
-S="${WORKDIR}/${PN}-1.4.0"
-
-DESCRIPTION="A ASCII-Graphics Library"
-HOMEPAGE="https://aa-project.sourceforge.net/aalib/"
-SRC_URI="https://download.sourceforge.net/project/aa-project/aa-lib/${MY_PV}/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos ~x64-solaris"
-IUSE="X gpm slang"
-
-RDEPEND=">=sys-libs/ncurses-5.9-r3:0=[${MULTILIB_USEDEP}]
- X? ( >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}] )
- gpm? ( >=sys-libs/gpm-1.20.7-r2[${MULTILIB_USEDEP}] )
- slang? ( >=sys-libs/slang-2.2.4-r1[${MULTILIB_USEDEP}] )"
-DEPEND="${RDEPEND}
- X? ( x11-base/xorg-proto )"
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-1.4_rc4-gentoo.patch
- "${FILESDIR}"/${PN}-1.4_rc4-m4.patch
- "${FILESDIR}"/${PN}-1.4_rc5-fix-protos.patch #224267
- "${FILESDIR}"/${PN}-1.4_rc5-fix-aarender.patch #214142
- "${FILESDIR}"/${PN}-1.4_rc5-tinfo.patch #468566
- "${FILESDIR}"/${PN}-1.4_rc5-key-down-OOB.patch
- "${FILESDIR}"/${PN}-1.4_rc5-more-protos.patch
- "${FILESDIR}"/${PN}-1.4_rc5-free-offset-pointer.patch #894978
-)
-
-DOCS=( ANNOUNCE AUTHORS ChangeLog NEWS README )
-
-src_prepare() {
- default
-
- sed -i -e 's:#include <malloc.h>:#include <stdlib.h>:g' "${S}"/src/*.c
-
- # Fix bug #165617.
- use gpm || sed -i \
- 's/gpm_mousedriver_test=yes/gpm_mousedriver_test=no/' "${S}/configure.in"
-
- #467988 automake-1.13
- mv configure.{in,ac} || die
- sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g' configure.ac || die
-
- eautoreconf
-}
-
-multilib_src_configure() {
- ECONF_SOURCE=${S} econf \
- $(use_with slang slang-driver) \
- $(use_with X x11-driver) \
- PKG_CONFIG=$(tc-getPKG_CONFIG)
-}
-
-multilib_src_install() {
- emake DESTDIR="${D}" install
-
- find "${D}" -name '*.la' -type f -delete || die
-}
diff --git a/media-libs/aalib/aalib-1.4_rc5-r11.ebuild b/media-libs/aalib/aalib-1.4_rc5-r11.ebuild
deleted file mode 100644
index 3d01b011b6cb..000000000000
--- a/media-libs/aalib/aalib-1.4_rc5-r11.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools flag-o-matic multilib-minimal toolchain-funcs
-
-MY_PV="${PV/_/}"
-MY_P="${PN}-${MY_PV}"
-
-DESCRIPTION="A ASCII-Graphics Library"
-HOMEPAGE="https://aa-project.sourceforge.net/aalib/"
-SRC_URI="https://download.sourceforge.net/project/aa-project/aa-lib/${MY_PV}/${MY_P}.tar.gz"
-S="${WORKDIR}/${PN}-1.4.0"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos ~x64-solaris"
-IUSE="X gpm slang"
-
-RDEPEND=">=sys-libs/ncurses-5.9-r3:0=[${MULTILIB_USEDEP}]
- X? ( >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}] )
- gpm? ( >=sys-libs/gpm-1.20.7-r2[${MULTILIB_USEDEP}] )
- slang? ( >=sys-libs/slang-2.2.4-r1[${MULTILIB_USEDEP}] )"
-DEPEND="${RDEPEND}
- X? ( x11-base/xorg-proto )"
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-1.4_rc4-gentoo.patch
- "${FILESDIR}"/${PN}-1.4_rc4-m4.patch
- "${FILESDIR}"/${PN}-1.4_rc5-fix-protos.patch #224267
- "${FILESDIR}"/${PN}-1.4_rc5-fix-aarender.patch #214142
- "${FILESDIR}"/${PN}-1.4_rc5-tinfo.patch #468566
- "${FILESDIR}"/${PN}-1.4_rc5-key-down-OOB.patch
- "${FILESDIR}"/${PN}-1.4_rc5-more-protos.patch
- "${FILESDIR}"/${PN}-1.4_rc5-free-offset-pointer.patch #894978
- "${FILESDIR}"/${PN}-1.4_rc5-ncurses-opaque.patch #932140
-)
-
-DOCS=( ANNOUNCE AUTHORS ChangeLog NEWS README )
-
-src_prepare() {
- default
-
- sed -i -e 's:#include <malloc.h>:#include <stdlib.h>:g' "${S}"/src/*.c
-
- # Fix bug #165617.
- use gpm || sed -i \
- 's/gpm_mousedriver_test=yes/gpm_mousedriver_test=no/' "${S}/configure.in"
-
- #467988 automake-1.13
- mv configure.{in,ac} || die
- sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g' configure.ac || die
-
- eautoreconf
-}
-
-multilib_src_configure() {
- # Gpm_Wgetch from sys-libs/gpm is unprototyped in gpm.h
- # https://github.com/telmich/gpm/issues/48
- append-cflags -std=gnu17
-
- ECONF_SOURCE=${S} econf \
- $(use_with slang slang-driver) \
- $(use_with X x11-driver) \
- PKG_CONFIG=$(tc-getPKG_CONFIG)
-}
-
-multilib_src_install() {
- emake DESTDIR="${D}" install
-
- find "${D}" -name '*.la' -type f -delete || die
-}
diff --git a/media-libs/aalib/files/aalib-1.4_rc4-gentoo.patch b/media-libs/aalib/files/aalib-1.4_rc4-gentoo.patch
deleted file mode 100644
index 4eb4a391a5be..000000000000
--- a/media-libs/aalib/files/aalib-1.4_rc4-gentoo.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-Fix --with-gpm-mouse usage to not be so freaky. Don't patch
-configure.in that way we avoid having to run autotools.
-
- AC_ARG_WITH(gpm-mouse,
- - [ --with-gpm-mouse=base-dir Specifies the base gpm directory],
- - if test x$withval = xyes
- + [ --with-gpm-mouse=base-dir/no Specifies the base gpm directory],
- + if test x$withval = xno
- then
- - AC_MSG_WARN(Usage is: --with-gpm-mouse=base-dir)
- + gpm_mousedriver_test=no
- else
---- aalib-1.4.0/configure
-+++ aalib-1.4.0/configure
-@@ -28,7 +28,7 @@
- ac_help="$ac_help
- --with-curses-driver=no/yes Used to disable/force curses driver"
- ac_help="$ac_help
-- --with-gpm-mouse=base-dir Specifies the base gpm directory"
-+ --with-gpm-mouse=base-dir/no Specifies the base gpm directory"
- ac_help="$ac_help
- --with-x use the X Window System"
- ac_help="$ac_help
-@@ -1960,9 +1960,9 @@
- # Check whether --with-gpm-mouse or --without-gpm-mouse was given.
- if test "${with_gpm_mouse+set}" = set; then
- withval="$with_gpm_mouse"
-- if test x$withval = xyes
-+ if test x$withval = xno
- then
-- echo "configure: warning: Usage is: --with-gpm-mouse=base-dir" 1>&2
-+ gpm_mousedriver_test=no
- else
- LIBS="$LIBS -L$withval/lib -lgpm"
- cat >> confdefs.h <<\EOF
diff --git a/media-libs/aalib/files/aalib-1.4_rc4-m4.patch b/media-libs/aalib/files/aalib-1.4_rc4-m4.patch
deleted file mode 100644
index 3670f19125fc..000000000000
--- a/media-libs/aalib/files/aalib-1.4_rc4-m4.patch
+++ /dev/null
@@ -1,9 +0,0 @@
-Get rid of aclocal warning:
-/usr/share/aclocal/aalib.m4:12: warning: underquoted definition of AM_PATH_AALIB
---- aalib-1.4.0/aalib.m4
-+++ aalib-1.4.0/aalib.m4
-@@ -11,3 +11,3 @@
- dnl
--AC_DEFUN(AM_PATH_AALIB,
-+AC_DEFUN([AM_PATH_AALIB],
- [dnl
diff --git a/media-libs/aalib/files/aalib-1.4_rc5-fix-aarender.patch b/media-libs/aalib/files/aalib-1.4_rc5-fix-aarender.patch
deleted file mode 100644
index 2c3d5bf437f7..000000000000
--- a/media-libs/aalib/files/aalib-1.4_rc5-fix-aarender.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-This bug can be seen very clearly with e.g. mplayer -vo aa -monitoraspect 3
-in which case a big part of the picture is missing or there is even completely
-black output.
-
-The reason for this is, when drawing only a part of the picture via aarender()
-the first X coordinate is used for the loop count, but it is not applied to the
-destination and source image index, thus instead of (re)drawing the middle part
-of the image, it draws always the left part.
-
-Actual Results:
-only the left part of the image is draw (depending on the video, only the left
-black bar might be draw, so you will see nothing at all - if so use a slightly
-smaller value for -monitoraspect).
-
-Expected Results:
-All of the image should be drawn, and -monitoraspect should only squeeze the
-image, not cause part of it to miss.
-
-Gentoo-bug: http://bugs.gentoo.org/id=214142
-Reported-by: Reimar Döffinger
-Fixed-by: Reimar Döffinger
---- a/src/aarender.c.orig 2008-03-18 23:55:32.000000000 +0100
-+++ b/src/aarender.c 2008-03-18 23:55:50.000000000 +0100
-@@ -94,8 +94,8 @@
- gamma = randomval / 2;
- mval = (c->parameters[c->filltable[255]].p[4]);
- for (y = y1; y < y2; y++) {
-- pos = 2 * y * wi;
-- pos1 = y * aa_scrwidth(c);
-+ pos = 2 * (y * wi + x1);
-+ pos1 = y * aa_scrwidth(c) + x1;
- esum = 0;
- for (x = x1; x < x2; x++) {
- i1 = table[((((int) c->imagebuffer[pos])))];
diff --git a/media-libs/aalib/files/aalib-1.4_rc5-fix-protos.patch b/media-libs/aalib/files/aalib-1.4_rc5-fix-protos.patch
deleted file mode 100644
index b22738a25c6c..000000000000
--- a/media-libs/aalib/files/aalib-1.4_rc5-fix-protos.patch
+++ /dev/null
@@ -1,56 +0,0 @@
-fix missing protos
-
- * QA Notice: Package triggers severe warnings which indicate that it
- * may exhibit random runtime failures.
- * aainfo.c:12:2: warning: incompatible implicit declaration of built-in function 'exit'
- * aainfo.c:17:2: warning: incompatible implicit declaration of built-in function 'exit'
- * aatest.c:8:5: warning: incompatible implicit declaration of built-in function 'strcpy'
- * aatest.c:11:2: warning: incompatible implicit declaration of built-in function 'exit'
- * aatest.c:16:2: warning: incompatible implicit declaration of built-in function 'exit'
- * aatest.c:21:2: warning: incompatible implicit declaration of built-in function 'exit'
- * aafire.c:55:7: warning: incompatible implicit declaration of built-in function 'exit'
- * aafire.c:68:3: warning: incompatible implicit declaration of built-in function 'exit'
- * aafire.c:154:7: warning: incompatible implicit declaration of built-in function 'exit'
- * aasavefont.c:10:2: warning: incompatible implicit declaration of built-in function 'exit'
-
-Gentoo-bug: http://bugs.gentoo.org/224267
-Reported-by: Peter Hüwe
-diff --git a/src/aafire.c b/src/aafire.c
-index 4f36149..5e41237 100644
---- a/src/aafire.c
-+++ b/src/aafire.c
-@@ -1,4 +1,5 @@
- #include <stdio.h>
-+#include <stdlib.h> /* exit() */
- #include "aalib.h"
-
- #define XSIZ aa_imgwidth(context)
-diff --git a/src/aainfo.c b/src/aainfo.c
-index d3f6d50..e24082d 100644
---- a/src/aainfo.c
-+++ b/src/aainfo.c
-@@ -1,4 +1,4 @@
--
-+#include <stdlib.h> /* exit() */
- #include "aalib.h"
- #include "aaint.h"
- int main(int argc, char **argv)
-diff --git a/src/aasavefont.c b/src/aasavefont.c
-index b00e1e6..16591e8 100644
---- a/src/aasavefont.c
-+++ b/src/aasavefont.c
-@@ -1,3 +1,4 @@
-+#include <stdlib.h> /* exit() */
- #include "aalib.h"
- int main(int argc, char **argv)
- {
-diff --git a/src/aatest.c b/src/aatest.c
-index 9816f5d..ed0c2da 100644
---- a/src/aatest.c
-+++ b/src/aatest.c
-@@ -1,3 +1,5 @@
-+#include <string.h> /* strcpy() */
-+#include <stdlib.h> /* exit() */
- #include "aalib.h"
- int main(int argc, char **argv)
- {
diff --git a/media-libs/aalib/files/aalib-1.4_rc5-free-offset-pointer.patch b/media-libs/aalib/files/aalib-1.4_rc5-free-offset-pointer.patch
deleted file mode 100644
index 3ae697e3189c..000000000000
--- a/media-libs/aalib/files/aalib-1.4_rc5-free-offset-pointer.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- a/src/aarender.c
-+++ b/src/aarender.c
-@@ -63,10 +63,10 @@ void aa_renderpalette(aa_context * c, __
- errors[0] = calloc(1, (x2 + 5) * sizeof(int));
- if (errors[0] == NULL)
- dither = AA_ERRORDISTRIB;
-- errors[0] += 3;
- errors[1] = calloc(1, (x2 + 5) * sizeof(int));
- if (errors[1] == NULL)
- free(errors[0]), dither = AA_ERRORDISTRIB;
-+ errors[0] += 3;
- errors[1] += 3;
- cur = 0;
- }
diff --git a/media-libs/aalib/files/aalib-1.4_rc5-key-down-OOB.patch b/media-libs/aalib/files/aalib-1.4_rc5-key-down-OOB.patch
deleted file mode 100644
index 8078aa5b2708..000000000000
--- a/media-libs/aalib/files/aalib-1.4_rc5-key-down-OOB.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-diff -Naur a/src/aalinuxkbd.c b/src/aalinuxkbd.c
---- a/src/aalinuxkbd.c 2016-12-19 12:40:26.660039735 +0100
-+++ b/src/aalinuxkbd.c 2016-12-19 12:42:21.692045971 +0100
-@@ -114,6 +114,7 @@
- static int vtswitch_allowed;
-
- static char key_down[128];
-+static size_t key_down_size = 128;
- static int closed = 1;
- static int mypid;
-
-@@ -165,10 +166,7 @@
-
- static void blank_key_down(void)
- {
-- int f;
--
-- for (f = 0; f < NR_KEYS; f++)
-- key_down[f] = 0;
-+ memset(key_down, 0, key_down_size);
- }
-
-
diff --git a/media-libs/aalib/files/aalib-1.4_rc5-more-protos.patch b/media-libs/aalib/files/aalib-1.4_rc5-more-protos.patch
deleted file mode 100644
index 58d37f1cb7c9..000000000000
--- a/media-libs/aalib/files/aalib-1.4_rc5-more-protos.patch
+++ /dev/null
@@ -1,55 +0,0 @@
-diff --git a/src/aakbdreg.c b/src/aakbdreg.c
-index f4f8efb..b344dd8 100644
---- a/src/aakbdreg.c
-+++ b/src/aakbdreg.c
-@@ -1,2 +1,3 @@
- #include <stdlib.h>
-+#include <string.h> /* strcmp */
- #include "config.h"
-diff --git a/src/aalinuxkbd.c b/src/aalinuxkbd.c
-index a5379bb..e816eb2 100644
---- a/src/aalinuxkbd.c
-+++ b/src/aalinuxkbd.c
-@@ -10,2 +10,3 @@
- #include "config.h"
-+#include <stdlib.h> /* atexit */
- #ifdef LINUX_DRIVER
-@@ -135,3 +136,3 @@ static int get_keyb_map(void)
-
-- if (ioctl(tty_fd, KDGKBENT, (unsigned int) &keyb_ent))
-+ if (ioctl(tty_fd, KDGKBENT, &keyb_ent))
- return (0);
-@@ -144,3 +145,3 @@ static int get_keyb_map(void)
-
-- if (ioctl(tty_fd, KDGKBENT, (unsigned int) &keyb_ent))
-+ if (ioctl(tty_fd, KDGKBENT, &keyb_ent))
- return (0);
-@@ -200,3 +201,3 @@ static int rawmode_init(void)
- if (!closed)
-- return;
-+ return (1);
- mypid = getpid();
-diff --git a/src/aamoureg.c b/src/aamoureg.c
-index bb55fe3..4a533b6 100644
---- a/src/aamoureg.c
-+++ b/src/aamoureg.c
-@@ -1,2 +1,3 @@
- #include <stdlib.h>
-+#include <string.h> /* strcmp */
- #include "config.h"
-diff --git a/src/aaregist.c b/src/aaregist.c
-index 765155e..f9190ab 100644
---- a/src/aaregist.c
-+++ b/src/aaregist.c
-@@ -1,2 +1,3 @@
- #include <stdlib.h>
-+#include <string.h> /* strcmp */
- #include "config.h"
-diff --git a/src/aaxkbd.c b/src/aaxkbd.c
-index dacc80f..c252cd9 100644
---- a/src/aaxkbd.c
-+++ b/src/aaxkbd.c
-@@ -7,2 +7,3 @@
- #include <X11/Xlib.h>
-+#include <X11/Xutil.h>
- #include <X11/keysymdef.h>
diff --git a/media-libs/aalib/files/aalib-1.4_rc5-ncurses-opaque.patch b/media-libs/aalib/files/aalib-1.4_rc5-ncurses-opaque.patch
deleted file mode 100644
index 91271fba4f7f..000000000000
--- a/media-libs/aalib/files/aalib-1.4_rc5-ncurses-opaque.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-https://bugs.gentoo.org/932140
-https://sourceforge.net/p/aa-project/patches/10/
-
-Without the change build fails on ncurses-6.5 (enables opaque WINDOW by
-default) as:
-
- aacurses.c: In function 'curses_getsize':
- aacurses.c:74:20: error: invalid use of incomplete typedef 'WINDOW' {aka 'struct _win_st'}
- 74 | *width = stdscr->_maxx + 1;
- | ^~
---- a/src/aacurses.c
-+++ b/src/aacurses.c
-@@ -71,8 +71,8 @@ static void curses_getsize(aa_context * c, int *width, int *height)
- {
- if (__resized_curses)
- curses_uninit(c), curses_init(&c->params, NULL,&c->driverparams, NULL), __resized_curses = 0;
-- *width = stdscr->_maxx + 1;
-- *height = stdscr->_maxy + 1;
-+ *width = getmaxx(stdscr);
-+ *height = getmaxy(stdscr);
- #ifdef GPM_MOUSEDRIVER
- gpm_mx = *width;
- gpm_my = *height;
-
diff --git a/media-libs/aalib/files/aalib-1.4_rc5-tinfo.patch b/media-libs/aalib/files/aalib-1.4_rc5-tinfo.patch
deleted file mode 100644
index daf9cde9f575..000000000000
--- a/media-libs/aalib/files/aalib-1.4_rc5-tinfo.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-diff --git a/configure.ac b/configure.ac
-index 66bcbc0..f15f06e 100644
---- a/configure.in
-+++ b/configure.in
-@@ -302,6 +302,14 @@ AC_DEFUN(AC_CURSES, [
- if test "$curses_driver_test" = yes; then
- if $search_ncurses
- then
- AC_CHECKING("location of curses")
-+ PKG_CHECK_MODULES([CURSES], [ncurses], [
-+ AC_MSG_RESULT([Found ncurses via pkg-config: CURSES_CFLAGS="$CURSES_CFLAGS" CURSES_LIBS="$CURSES_LIBS"])
-+ CFLAGS="$CFLAGS $CURSES_CFLAGS"
-+ LIBS="$LIBS $CURSES_LIBS"
-+ AALIB_LIBS="$AALIB_LIBS $CURSES_LIBS"
-+ search_ncurses=false
-+ curses_driver=true
-+ ], [])
-
- AC_NCURSES(/usr/include, ncurses.h, , -I/usr/include/ncurses , "ncurses on /usr/include")
diff --git a/media-libs/aalib/metadata.xml b/media-libs/aalib/metadata.xml
deleted file mode 100644
index cd62a72da9c3..000000000000
--- a/media-libs/aalib/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>media-video@gentoo.org</email>
- </maintainer>
- <origin>baldeagleos-repo</origin>
-</pkgmetadata>