diff options
author | Mikle Kolyada <zlogene@gentoo.org> | 2018-07-09 22:46:42 +0300 |
---|---|---|
committer | Mikle Kolyada <zlogene@gentoo.org> | 2018-07-09 22:48:24 +0300 |
commit | 37180689981de73209819b92692cb5616e764021 (patch) | |
tree | 93766f5a3230133b7df1844290e6eefcb0d97943 /sys-fs | |
parent | Revert "profiles: add arm 17.0 profiles" (diff) | |
download | gentoo-37180689981de73209819b92692cb5616e764021.tar.gz gentoo-37180689981de73209819b92692cb5616e764021.tar.bz2 gentoo-37180689981de73209819b92692cb5616e764021.zip |
sys-fs/yaffs-utils: remove last rited package
Diffstat (limited to 'sys-fs')
-rw-r--r-- | sys-fs/yaffs-utils/files/yaffs-utils-9999-build.patch | 36 | ||||
-rw-r--r-- | sys-fs/yaffs-utils/metadata.xml | 8 | ||||
-rw-r--r-- | sys-fs/yaffs-utils/yaffs-utils-9999.ebuild | 29 |
3 files changed, 0 insertions, 73 deletions
diff --git a/sys-fs/yaffs-utils/files/yaffs-utils-9999-build.patch b/sys-fs/yaffs-utils/files/yaffs-utils-9999-build.patch deleted file mode 100644 index 901484db9995..000000000000 --- a/sys-fs/yaffs-utils/files/yaffs-utils-9999-build.patch +++ /dev/null @@ -1,36 +0,0 @@ -diff --git a/utils/Makefile b/utils/Makefile -index 4929e08..51c4e5f 100644 ---- a/utils/Makefile -+++ b/utils/Makefile -@@ -16,14 +16,13 @@ - - #KERNELDIR = /usr/src/kernel-headers-2.4.18 - --CFLAGS = -I/usr/include -I.. -O2 -Wall -DCONFIG_YAFFS_UTIL -+CFLAGS+= -I.. -Wall -DCONFIG_YAFFS_UTIL $(CPPFLAGS) - 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 - - MKYAFFSOBJS = mkyaffs.o - -@@ -36,13 +35,13 @@ $(MKYAFFSIMAGEOBJS): %.o: %.c - $(CC) -c $(CFLAGS) $< -o $@ - - mkyaffsimage: $(MKYAFFSIMAGEOBJS) -- $(CC) -o $@ $(MKYAFFSIMAGEOBJS) -+ $(CC) $(CFLAGS) -o $@ $(MKYAFFSIMAGEOBJS) $(LDFLAGS) - - $(MKYAFFSOBJS): %.o: %.c - $(CC) -c $(CFLAGS) $< -o $@ - - mkyaffs: $(MKYAFFSOBJS) -- $(CC) -o $@ $(MKYAFFSOBJS) -+ $(CC) $(CFLAGS) -o $@ $(MKYAFFSOBJS) $(LDFLAGS) - - yaffs_ecc.c: - ln -s ../yaffs_ecc.c yaffs_ecc.c diff --git a/sys-fs/yaffs-utils/metadata.xml b/sys-fs/yaffs-utils/metadata.xml deleted file mode 100644 index 71b1461e1146..000000000000 --- a/sys-fs/yaffs-utils/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?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> diff --git a/sys-fs/yaffs-utils/yaffs-utils-9999.ebuild b/sys-fs/yaffs-utils/yaffs-utils-9999.ebuild deleted file mode 100644 index 9606fd88801f..000000000000 --- a/sys-fs/yaffs-utils/yaffs-utils-9999.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="2" - -EGIT_REPO_URI="git://www.aleph1.co.uk/yaffs" -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 mkyaffs || die - dodoc ../README -} |