diff options
author | Alin Năstac <mrness@gentoo.org> | 2006-09-23 09:07:18 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2006-09-23 09:07:18 +0000 |
commit | da0aff0df8e53e3316d2e81630816da161585566 (patch) | |
tree | e254bbf407733d0bea4b04b7646890ede98f73e0 /net-dialup/kisdndial | |
parent | New ebuild poppler-data for poppler, all poppler keywords because nothing is ... (diff) | |
download | gentoo-2-da0aff0df8e53e3316d2e81630816da161585566.tar.gz gentoo-2-da0aff0df8e53e3316d2e81630816da161585566.tar.bz2 gentoo-2-da0aff0df8e53e3316d2e81630816da161585566.zip |
Remove text relocations from the libkisdndial.so by appending -fPIC to CXXFLAGS.
(Portage version: 2.1.1)
Diffstat (limited to 'net-dialup/kisdndial')
-rw-r--r-- | net-dialup/kisdndial/ChangeLog | 7 | ||||
-rw-r--r-- | net-dialup/kisdndial/files/digest-kisdndial-0.1.6 | 2 | ||||
-rw-r--r-- | net-dialup/kisdndial/kisdndial-0.1.6.ebuild | 13 |
3 files changed, 17 insertions, 5 deletions
diff --git a/net-dialup/kisdndial/ChangeLog b/net-dialup/kisdndial/ChangeLog index a9c375adc52d..776c1969944e 100644 --- a/net-dialup/kisdndial/ChangeLog +++ b/net-dialup/kisdndial/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-dialup/kisdndial -# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/kisdndial/ChangeLog,v 1.1 2004/11/21 09:08:37 mrness Exp $ +# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/kisdndial/ChangeLog,v 1.2 2006/09/23 09:07:18 mrness Exp $ + + 23 Sep 2006; Alin Nastac <mrness@gentoo.org> kisdndial-0.1.6.ebuild: + Remove text relocations from the libkisdndial.so by appending -fPIC to CXXFLAGS. *kisdndial-0.1.6 (21 Nov 2004) diff --git a/net-dialup/kisdndial/files/digest-kisdndial-0.1.6 b/net-dialup/kisdndial/files/digest-kisdndial-0.1.6 index 149af8eb3a30..779b3dcfe7a1 100644 --- a/net-dialup/kisdndial/files/digest-kisdndial-0.1.6 +++ b/net-dialup/kisdndial/files/digest-kisdndial-0.1.6 @@ -1 +1,3 @@ MD5 8bf11916415237b7c9eb9fdc48e61206 kisdndial3.2-0.1.6.tar.gz 1115347 +RMD160 f8c1cbde8bba8751198a5eeaf5a8e7757d6572b2 kisdndial3.2-0.1.6.tar.gz 1115347 +SHA256 7db4d472ba88988ebdd4c518de845b10ae77b8a0999973094cf991511bb81afd kisdndial3.2-0.1.6.tar.gz 1115347 diff --git a/net-dialup/kisdndial/kisdndial-0.1.6.ebuild b/net-dialup/kisdndial/kisdndial-0.1.6.ebuild index 0c56792f0c3f..1268671c76a4 100644 --- a/net-dialup/kisdndial/kisdndial-0.1.6.ebuild +++ b/net-dialup/kisdndial/kisdndial-0.1.6.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/kisdndial/kisdndial-0.1.6.ebuild,v 1.1 2004/11/21 09:08:37 mrness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/kisdndial/kisdndial-0.1.6.ebuild,v 1.2 2006/09/23 09:07:18 mrness Exp $ -inherit kde +inherit kde flag-o-matic DESCRIPTION="KDE Kicker Applet to establish ISDN dial-up connections and to show the status" HOMEPAGE="http://www.kisdndial.de/" @@ -28,6 +28,13 @@ src_unpack() { fi } +src_compile() { + #The only way to avoid QA text relocation warning + #is by appending -fPIC to CFLAGS + append-flags -fPIC + kde_src_compile +} + src_install() { kde_src_install make dodoc AUTHORS README NEWS TODO ChangeLog |