x11-misc/pathfinder
x11-misc/shutterbug
-# Michał Górny <mgorny@gentoo.org> (2019-12-15)
-# Live ebuild only. Not touched since 2012. Unsurprisingly,
-# the included patch no longer applies. Actually, there's
-# sys-fs/yaffs2utils duplicate which is a release.
-# Removal in 14 days. Bug #703040.
-sys-fs/yaffs2-utils
-
# David Seifert <soap@gentoo.org> (2019-12-08)
# Unmaintained, build hangs, tons of other build failures, missing
# dependencies. Bug #663794, #666916, #666922, #667062, #678068,
+++ /dev/null
-From 3f4b0661b63efaca78791612ce9be84271d784a5 Mon Sep 17 00:00:00 2001
-From: Mike Frysinger <vapier@gentoo.org>
-Date: Mon, 5 Nov 2012 02:08:27 -0500
-Subject: [PATCH] fix build build system
-
-Signed-off-by: Mike Frysinger <vapier@gentoo.org>
----
- utils/Makefile | 7 +++----
- 1 file changed, 3 insertions(+), 4 deletions(-)
-
-diff --git a/utils/Makefile b/utils/Makefile
-index 710ebbf..26aea6b 100644
---- a/utils/Makefile
-+++ b/utils/Makefile
-@@ -16,14 +16,13 @@
-
- #KERNELDIR = /usr/src/kernel-headers-2.4.18
-
--CFLAGS = -O2 -Wall -DCONFIG_YAFFS_UTIL
-+CFLAGS+= -Wall -DCONFIG_YAFFS_UTIL -DCONFIG_YAFFS_DEFINES_TYPES
- CFLAGS+= -Wshadow -Wpointer-arith -Wwrite-strings -Wstrict-prototypes -Wmissing-declarations
- CFLAGS+= -Wmissing-prototypes -Wredundant-decls -Wnested-externs -Winline
-
- ## Change if you are using a cross-compiler
- MAKETOOLS =
-
--CC=$(MAKETOOLS)gcc
-
- COMMON_BASE_C_LINKS = yaffs_ecc.c
- COMMON_BASE_LINKS = $(COMMON_BASE_C_LINKS) yaffs_ecc.h yaffs_guts.h yaffs_packedtags2.h yaffs_trace.h
-@@ -57,10 +56,10 @@ $(COMMONOBJS) $(MKYAFFSIMAGEOBJS) $(MKYAFFS2IMAGEOBJS) : %.o: %.c
- $(CC) -c $(CFLAGS) $< -o $@
-
- mkyaffsimage: $(MKYAFFSIMAGEOBJS) $(COMMONOBJS)
-- $(CC) -o $@ $^
-+ $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
-
- mkyaffs2image: $(MKYAFFS2IMAGEOBJS) $(COMMONOBJS)
-- $(CC) -o $@ $^
-+ $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
-
-
- clean:
---
-1.7.12.4
-
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
- <email>embedded@gentoo.org</email>
- <name>Embedded Gentoo</name>
-</maintainer>
-</pkgmetadata>
+++ /dev/null
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="4"
-
-EGIT_REPO_URI="git://www.aleph1.co.uk/yaffs2"
-EGIT_SOURCEDIR=${WORKDIR}
-
-inherit eutils git-2 toolchain-funcs
-
-DESCRIPTION="tools for generating YAFFS images"
-HOMEPAGE="http://www.aleph1.co.uk/yaffs/"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS=""
-IUSE=""
-
-S=${WORKDIR}/utils
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-build.patch
- tc-export CC
-}
-
-src_install() {
- dobin mkyaffsimage mkyaffs2image
- dodoc ../README-linux
-}