summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny van Dyk <kugelfang@gentoo.org>2005-02-01 16:24:43 +0000
committerDanny van Dyk <kugelfang@gentoo.org>2005-02-01 16:24:43 +0000
commit84a1f6c77e1e102fe735305fcd84d5e560f7511e (patch)
tree1e92ecc82c8c9ba461c0749394f5de3fc332e42a /sys-devel/patch
parentcleanup (diff)
downloadhistorical-84a1f6c77e1e102fe735305fcd84d5e560f7511e.tar.gz
historical-84a1f6c77e1e102fe735305fcd84d5e560f7511e.tar.bz2
historical-84a1f6c77e1e102fe735305fcd84d5e560f7511e.zip
Removed obsolete amd64-hardened workaround.
Package-Manager: portage-2.0.51-r14
Diffstat (limited to 'sys-devel/patch')
-rw-r--r--sys-devel/patch/ChangeLog5
-rw-r--r--sys-devel/patch/Manifest14
-rw-r--r--sys-devel/patch/patch-2.5.9-r1.ebuild14
3 files changed, 12 insertions, 21 deletions
diff --git a/sys-devel/patch/ChangeLog b/sys-devel/patch/ChangeLog
index b40cff96f132..e1edb7f9cf1e 100644
--- a/sys-devel/patch/ChangeLog
+++ b/sys-devel/patch/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sys-devel/patch
# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/patch/ChangeLog,v 1.27 2005/01/20 23:24:54 cryos Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/patch/ChangeLog,v 1.28 2005/02/01 16:24:43 kugelfang Exp $
+
+ 01 Feb 2005; Danny van Dyk <kugelfang@gentoo.org> patch-2.5.9-r1.ebuild:
+ Removed amd64-hardened workaround, as it isn't necessary anymore.
20 Jan 2005; Marcus Hanwell <cryos@gentoo.org> patch-2.5.9-r1.ebuild:
Marked stable for amd64.
diff --git a/sys-devel/patch/Manifest b/sys-devel/patch/Manifest
index b420895d3637..b3deafc16e7d 100644
--- a/sys-devel/patch/Manifest
+++ b/sys-devel/patch/Manifest
@@ -1,17 +1,17 @@
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
-MD5 3ae121823e24bc07192c23e1ba65d1eb patch-2.5.9.ebuild 1444
-MD5 9f3ed8b76e185aff0e4c22ef10cb30d7 ChangeLog 3723
MD5 9a09f8d531c582e78977dbfd96edc1f2 metadata.xml 164
-MD5 5de8d46a2fdbcaa26ced2869fe6f8d65 patch-2.5.9-r1.ebuild 1438
+MD5 3ae121823e24bc07192c23e1ba65d1eb patch-2.5.9.ebuild 1444
+MD5 32081d3806eb541e18a3f19c50804347 patch-2.5.9-r1.ebuild 1025
+MD5 255161b13dfbd3e0a6cd97ef5accfac6 ChangeLog 3871
+MD5 7113f2413944cb06cecdd0c57ab54078 files/digest-patch-2.5.9-r1 63
MD5 7113f2413944cb06cecdd0c57ab54078 files/digest-patch-2.5.9 63
MD5 4d1e5f04f223836b5c65c0995abd16ff files/2.5.9-deb-cr.patch 866
-MD5 7113f2413944cb06cecdd0c57ab54078 files/digest-patch-2.5.9-r1 63
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.6 (GNU/Linux)
-iD8DBQFB8D2nntT9W3vfTuoRAlagAKCU9P3WQwBIs5HwJBaPlTM7LjwlWwCfRH46
-+1K+SSeUG3TIrfpwct6MQyw=
-=5rQJ
+iD8DBQFB/61m5mJXAu5GbtIRAuDFAJwPQYkZcBLNusOBGWRorAmgpcY4GwCeMTS7
+ZDi4OV9+/iSl1QWvaw7CrtI=
+=BNcq
-----END PGP SIGNATURE-----
diff --git a/sys-devel/patch/patch-2.5.9-r1.ebuild b/sys-devel/patch/patch-2.5.9-r1.ebuild
index a552fda2b679..0136995859ce 100644
--- a/sys-devel/patch/patch-2.5.9-r1.ebuild
+++ b/sys-devel/patch/patch-2.5.9-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/patch/patch-2.5.9-r1.ebuild,v 1.2 2005/01/20 23:24:54 cryos Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/patch/patch-2.5.9-r1.ebuild,v 1.3 2005/02/01 16:24:43 kugelfang Exp $
inherit flag-o-matic eutils
@@ -28,19 +28,7 @@ src_compile() {
append-flags -DLINUX -D_XOPEN_SOURCE=500
use static && append-ldflags -static
- # workaround for hardened on amd64, 1st part
- if use amd64 && is-ldflags -pie; then
- einfo Stripping "-pie" from LDFLAGS, adding it to Makefile manually
- filter-ldflags -pie
- append-flags -fPIC
- LDFLAGS_PIE="1"
- fi
ac_cv_sys_long_file_names=yes econf || die
- # workaround for hardened on amd64, 2nd part
- if [ "${LDFLAGS_PIE}" = "1" ]; then
- einfo "Patching Makefile..."
- sed -i -e 's/^LDFLAGS =/& -pie/' Makefile || die "Patching Makefile failed!"
- fi
emake || die "emake failed"
}