summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakov Smolić <jsmolic@gentoo.org>2021-11-19 18:56:22 +0100
committerJakov Smolić <jsmolic@gentoo.org>2021-11-19 18:56:22 +0100
commit8102e976a2a78151a56d1bdd03e0f266eb6189ce (patch)
tree7d48930be73edc5f8a2ccb9987a00b5896b990a8 /net-dialup
parentnet-fs/openafs-legacy: treeclean (diff)
downloadgentoo-8102e976a2a78151a56d1bdd03e0f266eb6189ce.tar.gz
gentoo-8102e976a2a78151a56d1bdd03e0f266eb6189ce.tar.bz2
gentoo-8102e976a2a78151a56d1bdd03e0f266eb6189ce.zip
net-dialup/fbgetty: treeclean
Closes: https://bugs.gentoo.org/819354 Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'net-dialup')
-rw-r--r--net-dialup/fbgetty/Manifest1
-rw-r--r--net-dialup/fbgetty/fbgetty-0.1.698-r1.ebuild28
-rw-r--r--net-dialup/fbgetty/files/fbgetty-0.1.698-gcc41.patch64
-rw-r--r--net-dialup/fbgetty/metadata.xml5
4 files changed, 0 insertions, 98 deletions
diff --git a/net-dialup/fbgetty/Manifest b/net-dialup/fbgetty/Manifest
deleted file mode 100644
index aa5f7494e294..000000000000
--- a/net-dialup/fbgetty/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST fbgetty-0.1.698.tar.gz 279751 BLAKE2B 5e378f563b1d8bf70145aadbecd46a9ad2228c3e5fc95cb91dc12a6682bce40ddc4a3aa0d81e27c0abe7122c5ac3a62e94946122aeceb3ab66ad891df26cc4db SHA512 942304ac00ecfaad59419a0994331e59d91269ee015e3bd38faa85db0b205e6e88e1958b65e503f59b81f050a1e110aeea6534eecb3ba010096a6b5173fd1ac5
diff --git a/net-dialup/fbgetty/fbgetty-0.1.698-r1.ebuild b/net-dialup/fbgetty/fbgetty-0.1.698-r1.ebuild
deleted file mode 100644
index aaaf230f6da4..000000000000
--- a/net-dialup/fbgetty/fbgetty-0.1.698-r1.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit epatch
-
-DESCRIPTION="An extended getty for the framebuffer console"
-HOMEPAGE="http://projects.meuh.org/fbgetty/"
-SRC_URI="http://projects.meuh.org/${PN}/downloads/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-
-src_prepare() {
- epatch "${FILESDIR}/${P}-gcc41.patch"
-
- epatch_user
-}
-
-src_install() {
- default
-
- docompress -x "/usr/share/doc/${PF}/examples"
- insinto "/usr/share/doc/${PF}/examples"
- doins examples/{issue.*,inittab.*}
-}
diff --git a/net-dialup/fbgetty/files/fbgetty-0.1.698-gcc41.patch b/net-dialup/fbgetty/files/fbgetty-0.1.698-gcc41.patch
deleted file mode 100644
index a9722f12c115..000000000000
--- a/net-dialup/fbgetty/files/fbgetty-0.1.698-gcc41.patch
+++ /dev/null
@@ -1,64 +0,0 @@
-diff -Nru fbgetty-0.1.698.orig/include/fbgetty/generated/fgoptions.awk fbgetty-0.1.698/include/fbgetty/generated/fgoptions.awk
---- fbgetty-0.1.698.orig/include/fbgetty/generated/fgoptions.awk 2001-07-11 23:01:15.000000000 +0300
-+++ fbgetty-0.1.698/include/fbgetty/generated/fgoptions.awk 2007-10-27 11:29:50.000000000 +0300
-@@ -45,8 +45,7 @@
- name = $3;
- type = $2;
-
-- printf("#define OFFSET_%s (offsetof(struct fbgetty_options_t, %s))\n", name, name);
-- printf(" %s %s;\n\n", type, name);
-+ printf(" %s %s;\n", type, name);
- }
-
- END {
-diff -Nru fbgetty-0.1.698.orig/src/options.c fbgetty-0.1.698/src/options.c
---- fbgetty-0.1.698.orig/src/options.c 2001-12-17 22:55:42.000000000 +0200
-+++ fbgetty-0.1.698/src/options.c 2007-10-27 11:32:53.000000000 +0300
-@@ -27,7 +27,7 @@
- */
-
- #include <fbgetty/global.h>
--
-+#include <stddef.h>
-
- #include <stdio.h>
- #include <stdlib.h>
-@@ -141,7 +141,7 @@
- #define ENV_BINARY 0x04
- #define ENV_LEDS 0x08
-
--#define ENV_ENTRY(name, type, ptr) { name, type, OFFSET_ ## ptr }
-+#define ENV_ENTRY(name, type, ptr) { name, type, offsetof(struct fbgetty_options_t, ptr) }
-
- static struct env_entry
- {
-@@ -899,20 +899,20 @@
- }
- merge_option_list[] =
- {
-- { OFFSET_tty_device , MERGE_STR, NULL, -1 },
-+ { offsetof(struct fbgetty_options_t, tty_device) , MERGE_STR, NULL, -1 },
- #ifdef USE_FRAME_BUFFER
-- { OFFSET_fb_device, MERGE_STR, NULL, -1 },
-+ { offsetof(struct fbgetty_options_t, fb_device), MERGE_STR, NULL, -1 },
- #endif
-
-- { OFFSET_login_program, MERGE_STR, LOGIN_PROGRAM, -1 },
-- { OFFSET_login_prompt, MERGE_STR, LOGIN_PROMPT, -1 },
-- { OFFSET_issue_filename, MERGE_STR, ISSUE_FILE, -1 },
-+ { offsetof(struct fbgetty_options_t, login_program), MERGE_STR, LOGIN_PROGRAM, -1 },
-+ { offsetof(struct fbgetty_options_t, login_prompt), MERGE_STR, LOGIN_PROMPT, -1 },
-+ { offsetof(struct fbgetty_options_t, issue_filename), MERGE_STR, ISSUE_FILE, -1 },
-
-- { OFFSET_login_timeout, MERGE_INT, NULL, LOGIN_TIMEOUT },
-- { OFFSET_issue_refresh, MERGE_INT, NULL, ISSUE_REFRESH },
-- { OFFSET_screen_clear, MERGE_INT, NULL, TRUE },
-+ { offsetof(struct fbgetty_options_t, login_timeout), MERGE_INT, NULL, LOGIN_TIMEOUT },
-+ { offsetof(struct fbgetty_options_t, issue_refresh), MERGE_INT, NULL, ISSUE_REFRESH },
-+ { offsetof(struct fbgetty_options_t, screen_clear), MERGE_INT, NULL, TRUE },
-
-- { OFFSET_leds, MERGE_INT, NULL, 0 },
-+ { offsetof(struct fbgetty_options_t, leds), MERGE_INT, NULL, 0 },
- { 0, 0, NULL, -1 }
- };
-
diff --git a/net-dialup/fbgetty/metadata.xml b/net-dialup/fbgetty/metadata.xml
deleted file mode 100644
index 85e4ed814fa2..000000000000
--- a/net-dialup/fbgetty/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<!-- maintainer-needed -->
-</pkgmetadata>