summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Wijsman <tomwij@gentoo.org>2013-12-27 21:38:05 +0000
committerTom Wijsman <tomwij@gentoo.org>2013-12-27 21:38:05 +0000
commit0d8ad6fb187b483976776cec42fba62a81f6b205 (patch)
treeb2634a4fae1e8d120d48fd7cff5d0f2b65f86225 /app-benchmarks
parentVersion bump (and synchronize with -9999) (diff)
downloadgentoo-2-0d8ad6fb187b483976776cec42fba62a81f6b205.tar.gz
gentoo-2-0d8ad6fb187b483976776cec42fba62a81f6b205.tar.bz2
gentoo-2-0d8ad6fb187b483976776cec42fba62a81f6b205.zip
[QA] Remove unused files.
(Portage version: HEAD/cvs/Linux x86_64, signed Manifest commit with key 6D34E57D)
Diffstat (limited to 'app-benchmarks')
-rw-r--r--app-benchmarks/i7z/ChangeLog5
-rw-r--r--app-benchmarks/i7z/files/i7z-0.27.1-gentoo.patch59
2 files changed, 4 insertions, 60 deletions
diff --git a/app-benchmarks/i7z/ChangeLog b/app-benchmarks/i7z/ChangeLog
index b5bf6eaad3ec..9f4d522670b5 100644
--- a/app-benchmarks/i7z/ChangeLog
+++ b/app-benchmarks/i7z/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-benchmarks/i7z
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/i7z/ChangeLog,v 1.19 2013/03/02 19:12:23 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/i7z/ChangeLog,v 1.20 2013/12/27 21:38:05 tomwij Exp $
+
+ 27 Dec 2013; Tom Wijsman <TomWij@gentoo.org> -files/i7z-0.27.1-gentoo.patch:
+ [QA] Remove unused files.
02 Mar 2013; Markos Chandras <hwoarang@gentoo.org> i7z-0.27.2.ebuild:
Move Qt dependencies to the new category
diff --git a/app-benchmarks/i7z/files/i7z-0.27.1-gentoo.patch b/app-benchmarks/i7z/files/i7z-0.27.1-gentoo.patch
deleted file mode 100644
index f50f7c9effbb..000000000000
--- a/app-benchmarks/i7z/files/i7z-0.27.1-gentoo.patch
+++ /dev/null
@@ -1,59 +0,0 @@
- Makefile | 21 ++++++++++-----------
- 1 files changed, 10 insertions(+), 11 deletions(-)
-
-diff --git a/Makefile b/Makefile
-index df50bde..a8da026 100644
---- a/Makefile
-+++ b/Makefile
-@@ -17,18 +17,18 @@
-
- #makefile updated from patch by anestling
-
--CFLAGSANY = -g -O0 -fomit-frame-pointer -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DBUILD_MAIN
-+CFLAGS += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DBUILD_MAIN
-
- LBITS := $(shell getconf LONG_BIT)
- ifeq ($(LBITS),64)
-- CFLAGS = $(CFLAGSANY) -Dx64_BIT
-+ CFLAGS += -Dx64_BIT
- else
-- CFLAGS = $(CFLAGSANY) -Dx86
-+ CFLAGS += -Dx86
- endif
-
--CC = gcc
-+CC ?= gcc
-
--LDFLAGS = -lncurses -lpthread -lrt
-+LIBS = -lncurses -lpthread -lrt
- INCLUDEFLAGS =
-
- OBJS = helper_functions
-@@ -36,15 +36,15 @@ OBJS = helper_functions
- BIN = i7z
- SRC = i7z.c helper_functions.c i7z_Single_Socket.c i7z_Dual_Socket.c
-
--sbindir = /usr/sbin
-+sbindir = $(DESTDIR)/usr/sbin
-
--all: clean message bin test_exist
-+all: bin
-
- message:
- @echo "If the compilation complains about not finding ncurses.h, install ncurses (libncurses5-dev on ubuntu/debian)"
-
- bin:
-- $(CC) $(CFLAGS) $(INCLUDEFLAGS) $(SRC) $(LDFLAGS) -o $(BIN)
-+ $(CC) $(CFLAGS) $(LDFLAGS) $(INCLUDEFLAGS) $(SRC) -o $(BIN) $(LIBS)
-
- test_exist:
- @test -f i7z && echo 'Succeeded, now run sudo ./i7z' || echo 'Compilation failed'
-@@ -55,6 +55,5 @@ clean:
- distclean: clean
- rm -f *~ \#*
-
--install: all
-- install -m 755 $(BIN) $(sbindir)
--
-+install:
-+ install -D -m 755 $(BIN) $(sbindir)/$(BIN)