summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Volkov <pva@gentoo.org>2008-05-11 11:04:49 +0000
committerPeter Volkov <pva@gentoo.org>2008-05-11 11:04:49 +0000
commitef759680d349979172edb4fb2492143751932f47 (patch)
tree0916e2ec1ddcba6cbf19820188531f8fba4cc368 /net-firewall/ebtables/files
parentFix broken digest for linux-2.6.24.tar.bz2. (diff)
downloadgentoo-2-ef759680d349979172edb4fb2492143751932f47.tar.gz
gentoo-2-ef759680d349979172edb4fb2492143751932f47.tar.bz2
gentoo-2-ef759680d349979172edb4fb2492143751932f47.zip
Removed useless postinst message, bug #221031 reported by Denilson. Removed old ebuild.
(Portage version: 2.1.4.4)
Diffstat (limited to 'net-firewall/ebtables/files')
-rw-r--r--net-firewall/ebtables/files/ebtables-2.0.8.1-fix-textrel.patch11
-rw-r--r--net-firewall/ebtables/files/ebtables-2.0.8.1-scripts-build.patch66
2 files changed, 0 insertions, 77 deletions
diff --git a/net-firewall/ebtables/files/ebtables-2.0.8.1-fix-textrel.patch b/net-firewall/ebtables/files/ebtables-2.0.8.1-fix-textrel.patch
deleted file mode 100644
index 97a5497cabf2..000000000000
--- a/net-firewall/ebtables/files/ebtables-2.0.8.1-fix-textrel.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- ./Makefile.orig 2007-08-12 13:02:55.000000000 +0400
-+++ ./Makefile 2007-08-12 13:03:04.000000000 +0400
-@@ -87,7 +87,7 @@
- $(CC) $(CFLAGS) $(CFLAGS_SH_LIB) $(PROGSPECS) -c -o $@ $< -Iinclude/
-
- ebtables.o: ebtables.c include/ebtables_u.h
-- $(CC) $(CFLAGS) $(PROGSPECS) -c -o $@ $< -I$(KERNEL_INCLUDES)
-+ $(CC) $(CFLAGS) $(CFLAGS_SH_LIB) $(PROGSPECS) -c -o $@ $< -I$(KERNEL_INCLUDES)
-
- ebtables-standalone.o: ebtables-standalone.c include/ebtables_u.h
- $(CC) $(CFLAGS) $(PROGSPECS) -c $< -o $@ -I$(KERNEL_INCLUDES)
diff --git a/net-firewall/ebtables/files/ebtables-2.0.8.1-scripts-build.patch b/net-firewall/ebtables/files/ebtables-2.0.8.1-scripts-build.patch
deleted file mode 100644
index 798eefda4290..000000000000
--- a/net-firewall/ebtables/files/ebtables-2.0.8.1-scripts-build.patch
+++ /dev/null
@@ -1,66 +0,0 @@
---- ./Makefile.orig 2007-08-12 13:25:23.000000000 +0400
-+++ ./Makefile 2007-08-12 13:36:13.000000000 +0400
-@@ -15,15 +15,6 @@
- SYSCONFIGDIR:=/usr/share/doc/ebtables-2.0.8.1
- DESTDIR:=
-
--# include DESTDIR param
--override LIBDIR:=$(DESTDIR)$(LIBDIR)/$(PROGNAME)
--override MANDIR:=$(DESTDIR)$(MANDIR)
--override BINDIR:=$(DESTDIR)$(BINDIR)
--override ETCDIR:=$(DESTDIR)$(ETCDIR)
--override INITDIR:=$(DESTDIR)$(INITDIR)
--override SYSCONFIGDIR:=$(DESTDIR)$(SYSCONFIGDIR)
--
--
- CFLAGS:=-Wall -Wunused
- CFLAGS_SH_LIB:=-fPIC
- CC:=gcc
-@@ -163,34 +154,34 @@
- .PHONY: scripts
- scripts: ebtables-save ebtables.sysv ebtables-config
- cat ebtables-save | sed 's/__EXEC_PATH__/$(tmp1)/g' > ebtables-save_
-- install -m 0755 -o root -g root ebtables-save_ $(BINDIR)/ebtables-save
-+ install -m 0755 -o root -g root ebtables-save_ $(DESTDIR)$(BINDIR)/ebtables-save
- cat ebtables.sysv | sed 's/__EXEC_PATH__/$(tmp1)/g' | sed 's/__SYSCONFIG__/$(tmp2)/g' > ebtables.sysv_
-- install -m 0755 -o root -g root ebtables.sysv_ $(INITDIR)/ebtables
-+ install -m 0755 -o root -g root ebtables.sysv_ $(DESTDIR)$(INITDIR)/ebtables
- cat ebtables-config | sed 's/__SYSCONFIG__/$(tmp2)/g' > ebtables-config_
-- install -m 0600 -o root -g root ebtables-config_ $(SYSCONFIGDIR)/ebtables-config
-+ install -m 0600 -o root -g root ebtables-config_ $(DESTDIR)$(SYSCONFIGDIR)/ebtables-config
- rm -f ebtables-save_ ebtables.sysv_ ebtables-config_
-
- $(MANDIR)/man8/ebtables.8: ebtables.8
-- mkdir -p $(@D)
-+ mkdir -p $(DESTDIR)$(@D)
- sed 's/$$(VERSION)/$(PROGVERSION)/' ebtables.8 | sed 's/$$(DATE)/$(PROGDATE)/' > ebtables.8_
-- install -m 0644 -o root -g root ebtables.8_ $@
-+ install -m 0644 -o root -g root ebtables.8_ $(DESTDIR)$@
- rm -f ebtables.8_
-
- $(ETHERTYPESFILE): ethertypes
-- mkdir -p $(@D)
-- install -m 0644 -o root -g root $< $@
-+ mkdir -p $(DESTDIR)$(@D)
-+ install -m 0644 -o root -g root $< $(DESTDIR)$@
-
- .PHONY: exec
- exec: ebtables ebtables-restore
-- mkdir -p $(BINDIR)
-- install -m 0755 -o root -g root $(PROGNAME) $(BINDIR)/$(PROGNAME)
-- install -m 0755 -o root -g root ebtables-restore $(BINDIR)/ebtables-restore
-+ mkdir -p $(DESTDIR)$(BINDIR)
-+ install -m 0755 -o root -g root $(PROGNAME) $(DESTDIR)$(BINDIR)/$(PROGNAME)
-+ install -m 0755 -o root -g root ebtables-restore $(DESTDIR)$(BINDIR)/ebtables-restore
-
- .PHONY: install
- install: $(MANDIR)/man8/ebtables.8 $(ETHERTYPESFILE) exec scripts
-- mkdir -p $(LIBDIR)
-- install -m 0755 extensions/*.so $(LIBDIR)
-- install -m 0755 *.so $(LIBDIR)
-+ mkdir -p $(DESTDIR)$(LIBDIR)
-+ install -m 0755 extensions/*.so $(DESTDIR)$(LIBDIR)
-+ install -m 0755 *.so $(DESTDIR)$(LIBDIR)
-
- .PHONY: clean
- clean: