summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2014-02-03 09:34:00 +0000
committerJustin Lecher <jlec@gentoo.org>2014-02-03 09:34:00 +0000
commit998068ce84fdf84dafe6020ced058aca25a01ce1 (patch)
tree6871e9d4e99f5fbdd94ba612362a6bf5553514a1 /dev-libs/libf2c
parentUse python-r1.eclass (diff)
downloadgentoo-2-998068ce84fdf84dafe6020ced058aca25a01ce1.tar.gz
gentoo-2-998068ce84fdf84dafe6020ced058aca25a01ce1.tar.bz2
gentoo-2-998068ce84fdf84dafe6020ced058aca25a01ce1.zip
Drop old patches
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'dev-libs/libf2c')
-rw-r--r--dev-libs/libf2c/ChangeLog9
-rw-r--r--dev-libs/libf2c/files/20070912-link-shared-libf2c-correctly.patch11
-rw-r--r--dev-libs/libf2c/files/20090407-main.patch15
3 files changed, 7 insertions, 28 deletions
diff --git a/dev-libs/libf2c/ChangeLog b/dev-libs/libf2c/ChangeLog
index 15fc83921e06..b13eb64b4102 100644
--- a/dev-libs/libf2c/ChangeLog
+++ b/dev-libs/libf2c/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-libs/libf2c
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libf2c/ChangeLog,v 1.61 2013/06/26 08:51:09 jlec Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libf2c/ChangeLog,v 1.62 2014/02/03 09:34:00 jlec Exp $
+
+ 03 Feb 2014; Justin Lecher <jlec@gentoo.org>
+ -files/20070912-link-shared-libf2c-correctly.patch,
+ -files/20090407-main.patch:
+ Drop old patches
26 Jun 2013; Justin Lecher <jlec@gentoo.org> -libf2c-20110801-r2.ebuild:
Drop old
diff --git a/dev-libs/libf2c/files/20070912-link-shared-libf2c-correctly.patch b/dev-libs/libf2c/files/20070912-link-shared-libf2c-correctly.patch
deleted file mode 100644
index 261b76eb6c29..000000000000
--- a/dev-libs/libf2c/files/20070912-link-shared-libf2c-correctly.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- makefile.u.orig 2008-07-07 23:27:41.000000000 -0700
-+++ makefile.u 2008-07-07 23:28:39.000000000 -0700
-@@ -82,7 +82,7 @@
- ## of "cc -shared".
-
- libf2c.so: $(OFILES)
-- cc -shared -o libf2c.so $(OFILES)
-+ $(CC) -shared $(LDFLAGS) -Wl,-soname,libf2c.so.2 -lm $(OFILES) -o libf2c.so.2
-
- ### If your system lacks ranlib, you don't need it; see README.
-
diff --git a/dev-libs/libf2c/files/20090407-main.patch b/dev-libs/libf2c/files/20090407-main.patch
deleted file mode 100644
index 5e16b9f2fad2..000000000000
--- a/dev-libs/libf2c/files/20090407-main.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff --git a/main.c b/main.c
-index d95fdc9..cf15b7d 100644
---- a/main.c
-+++ b/main.c
-@@ -135,7 +135,9 @@ f_init();
- #ifndef NO_ONEXIT
- ONEXIT(f_exit);
- #endif
--MAIN__();
-+int MAIN__( )
-+ { return(0);
-+}
- #ifdef NO_ONEXIT
- f_exit();
- #endif