diff options
author | 2006-06-22 12:59:48 +0000 | |
---|---|---|
committer | 2006-06-22 12:59:48 +0000 | |
commit | 25eb9d3a247400eeed21f72f1aca0621f5cb674b (patch) | |
tree | 5d392f7ce949abc15235f830818dbc3f9e08aac7 /kde-base/kopete | |
parent | Add check for qt3 bindings in dbus when HAL support is enabled, thanks to Ric... (diff) | |
download | historical-25eb9d3a247400eeed21f72f1aca0621f5cb674b.tar.gz historical-25eb9d3a247400eeed21f72f1aca0621f5cb674b.tar.bz2 historical-25eb9d3a247400eeed21f72f1aca0621f5cb674b.zip |
Move myconf population in src_compile rather than global scope.
Package-Manager: portage-2.1.1_pre1-r1
Diffstat (limited to 'kde-base/kopete')
-rw-r--r-- | kde-base/kopete/ChangeLog | 5 | ||||
-rw-r--r-- | kde-base/kopete/kopete-3.4.3.ebuild | 8 |
2 files changed, 10 insertions, 3 deletions
diff --git a/kde-base/kopete/ChangeLog b/kde-base/kopete/ChangeLog index b99872aec740..7848fdf2436f 100644 --- a/kde-base/kopete/ChangeLog +++ b/kde-base/kopete/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for kde-base/kopete # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kopete/ChangeLog,v 1.65 2006/06/15 00:00:01 carlo Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kopete/ChangeLog,v 1.66 2006/06/22 12:48:38 flameeyes Exp $ + + 22 Jun 2006; Diego Pettenò <flameeyes@gentoo.org> kopete-3.4.3.ebuild: + Move myconf population in src_compile rather than global scope. *kopete-3.5.3-r1 (14 Jun 2006) diff --git a/kde-base/kopete/kopete-3.4.3.ebuild b/kde-base/kopete/kopete-3.4.3.ebuild index 189e095340d0..e027a121b2d4 100644 --- a/kde-base/kopete/kopete-3.4.3.ebuild +++ b/kde-base/kopete/kopete-3.4.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kopete/kopete-3.4.3.ebuild,v 1.10 2006/03/25 01:23:40 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kopete/kopete-3.4.3.ebuild,v 1.11 2006/06/22 12:48:38 flameeyes Exp $ KMNAME=kdenetwork MAXKDEVER=$PV @@ -30,4 +30,8 @@ PATCHES="$FILESDIR/disable-meanwhile.diff" # The nowlistening plugin has xmms support PATCHES="$PATCHES $FILESDIR/configure-fix-kdenetwork-xmms.patch" -myconf="$myconf $(use_with xmms)" + +src_compile() { + myconf="$myconf $(use_with xmms)" + kde-meta_src_compile +} |