diff options
author | Steve Arnold <nerdboy@gentoo.org> | 2008-12-24 07:15:47 +0000 |
---|---|---|
committer | Steve Arnold <nerdboy@gentoo.org> | 2008-12-24 07:15:47 +0000 |
commit | 85ced999e88fe365dbfefb0c086de3ed1e097c96 (patch) | |
tree | d64c92b4c170c9a02155571f7a75598d95ed3eee /net-misc/hylafax | |
parent | Fix patches directory, bug #252340. Update ebuild to match the old 0.4.0 ebuild. (diff) | |
download | gentoo-2-85ced999e88fe365dbfefb0c086de3ed1e097c96.tar.gz gentoo-2-85ced999e88fe365dbfefb0c086de3ed1e097c96.tar.bz2 gentoo-2-85ced999e88fe365dbfefb0c086de3ed1e097c96.zip |
QA fix to disable automatic stripping of binaries. Closes bug #252012.
(Portage version: 2.2_rc17/cvs/Linux 2.6.27.7 x86_64)
Diffstat (limited to 'net-misc/hylafax')
-rw-r--r-- | net-misc/hylafax/ChangeLog | 5 | ||||
-rw-r--r-- | net-misc/hylafax/hylafax-4.4.4-r2.ebuild | 15 |
2 files changed, 17 insertions, 3 deletions
diff --git a/net-misc/hylafax/ChangeLog b/net-misc/hylafax/ChangeLog index 59f9af8545e6..0218dcc62e34 100644 --- a/net-misc/hylafax/ChangeLog +++ b/net-misc/hylafax/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-misc/hylafax # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/hylafax/ChangeLog,v 1.93 2008/12/21 18:27:48 nerdboy Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/hylafax/ChangeLog,v 1.94 2008/12/24 07:15:47 nerdboy Exp $ + + 24 Dec 2008; Steve Arnold <nerdboy@gentoo.org> hylafax-4.4.4-r2.ebuild: + QA fix to disable automatic stripping of binaries. Closes bug #252012. 21 Dec 2008; Steve Arnold <nerdboy@gentoo.org> hylafax-4.2.5.ebuild, hylafax-4.3.0.ebuild, hylafax-4.3.1.ebuild, hylafax-4.3.7.ebuild, diff --git a/net-misc/hylafax/hylafax-4.4.4-r2.ebuild b/net-misc/hylafax/hylafax-4.4.4-r2.ebuild index 88a028f842ed..cb0fbd02160d 100644 --- a/net-misc/hylafax/hylafax-4.4.4-r2.ebuild +++ b/net-misc/hylafax/hylafax-4.4.4-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/hylafax/hylafax-4.4.4-r2.ebuild,v 1.3 2008/12/21 18:22:25 nerdboy Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/hylafax/hylafax-4.4.4-r2.ebuild,v 1.4 2008/12/24 07:15:47 nerdboy Exp $ inherit eutils multilib pam toolchain-funcs @@ -49,6 +49,17 @@ pkg_setup() { fi } +src_unpack() { + unpack ${A} + cd "${S}" + # force it not to strip binaries + for dir in etc util faxalter faxcover faxd faxmail faxrm faxstat \ + hfaxd sendfax sendpage ; do + sed -i -e "s:-idb:-idb \"nostrip\" -idb:g" \ + "${dir}"/Makefile.in || die "sed failed" + done +} + src_compile() { # gcc standard C++ header changes if [ $(gcc-major-version) -eq 4 ] && [ $(gcc-minor-version) -ge 3 ] ; then @@ -148,7 +159,7 @@ src_install() { use pam && pamd_mimic_system hylafax auth account session - dodoc CHANGES CONTRIBUTORS COPYRIGHT README TODO + dodoc CONTRIBUTORS README TODO } pkg_postinst() { |