diff options
author | Mike Frysinger <vapier@gentoo.org> | 2013-05-02 17:28:35 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2013-05-02 17:28:35 +0000 |
commit | 337c8785d540667e965e3a59861069f6bc93453f (patch) | |
tree | 88c0fc3158ea00ef9ed1503a27768ae59be29057 /dev-util/strace | |
parent | Bump. (diff) | |
download | gentoo-2-337c8785d540667e965e3a59861069f6bc93453f.tar.gz gentoo-2-337c8785d540667e965e3a59861069f6bc93453f.tar.bz2 gentoo-2-337c8785d540667e965e3a59861069f6bc93453f.zip |
Add support for user patches.
(Portage version: 2.2.0_alpha170/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
Diffstat (limited to 'dev-util/strace')
-rw-r--r-- | dev-util/strace/ChangeLog | 6 | ||||
-rw-r--r-- | dev-util/strace/strace-4.7.ebuild | 10 | ||||
-rw-r--r-- | dev-util/strace/strace-9999.ebuild | 4 |
3 files changed, 12 insertions, 8 deletions
diff --git a/dev-util/strace/ChangeLog b/dev-util/strace/ChangeLog index 87d8db8436d7..c43019f8d8af 100644 --- a/dev-util/strace/ChangeLog +++ b/dev-util/strace/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-util/strace # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/strace/ChangeLog,v 1.186 2013/02/19 01:41:17 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/strace/ChangeLog,v 1.187 2013/05/02 17:28:35 vapier Exp $ + + 02 May 2013; Mike Frysinger <vapier@gentoo.org> strace-4.7.ebuild, + strace-9999.ebuild: + Add support for user patches. 19 Feb 2013; Zac Medico <zmedico@gentoo.org> strace-4.7.ebuild, strace-9999.ebuild: diff --git a/dev-util/strace/strace-4.7.ebuild b/dev-util/strace/strace-4.7.ebuild index 0f598fcfe113..e4841eb17ef4 100644 --- a/dev-util/strace/strace-4.7.ebuild +++ b/dev-util/strace/strace-4.7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/strace/strace-4.7.ebuild,v 1.12 2013/02/19 01:41:17 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/strace/strace-4.7.ebuild,v 1.13 2013/05/02 17:28:35 vapier Exp $ EAPI="4" @@ -27,15 +27,15 @@ DEPEND="aio? ( >=dev-libs/libaio-0.3.106 ) RDEPEND="" src_prepare() { - if [[ ! -e configure ]] ; then + epatch "${FILESDIR}"/${P}-glibc-2.15.patch #414637 + epatch "${FILESDIR}"/${P}-x32.patch + + if epatch_user || [[ ! -e configure ]] ; then # git generation eautoreconf [[ ! -e CREDITS ]] && cp CREDITS{.in,} fi - epatch "${FILESDIR}"/${P}-glibc-2.15.patch #414637 - epatch "${FILESDIR}"/${P}-x32.patch - filter-lfs-flags # configure handles this sanely use static && append-ldflags -static diff --git a/dev-util/strace/strace-9999.ebuild b/dev-util/strace/strace-9999.ebuild index fe2936c0b13c..82852a449ff2 100644 --- a/dev-util/strace/strace-9999.ebuild +++ b/dev-util/strace/strace-9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/strace/strace-9999.ebuild,v 1.3 2013/02/19 01:41:17 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/strace/strace-9999.ebuild,v 1.4 2013/05/02 17:28:35 vapier Exp $ EAPI="4" @@ -27,7 +27,7 @@ DEPEND="aio? ( >=dev-libs/libaio-0.3.106 ) RDEPEND="" src_prepare() { - if [[ ! -e configure ]] ; then + if epatch_user || [[ ! -e configure ]] ; then # git generation eautoreconf [[ ! -e CREDITS ]] && cp CREDITS{.in,} |