diff options
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/amsn/ChangeLog | 5 | ||||
-rw-r--r-- | net-im/amsn/amsn-0.98.9.ebuild | 13 |
2 files changed, 14 insertions, 4 deletions
diff --git a/net-im/amsn/ChangeLog b/net-im/amsn/ChangeLog index 5d1d5d4f76d1..d74a635a710a 100644 --- a/net-im/amsn/ChangeLog +++ b/net-im/amsn/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-im/amsn # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v 1.115 2012/05/26 17:53:45 tester Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v 1.116 2012/05/28 15:17:54 tester Exp $ + + 28 May 2012; Olivier Crête <tester@gentoo.org> amsn-0.98.9.ebuild: + make install is not parallel and build amsnplus plugin in src_compile *amsn-0.98.9 (26 May 2012) diff --git a/net-im/amsn/amsn-0.98.9.ebuild b/net-im/amsn/amsn-0.98.9.ebuild index 85586a5a9c5d..ddf92f5f141a 100644 --- a/net-im/amsn/amsn-0.98.9.ebuild +++ b/net-im/amsn/amsn-0.98.9.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/amsn-0.98.9.ebuild,v 1.1 2012/05/26 17:53:45 tester Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/amsn-0.98.9.ebuild,v 1.2 2012/05/28 15:17:54 tester Exp $ EAPI=4 inherit autotools eutils fdo-mime gnome2-utils toolchain-funcs @@ -60,9 +60,16 @@ src_configure() { econf $(use_enable debug) } -src_install() { +src_compile() { + # Custom build system, parallel make fails + emake emake -C plugins/amsnplus - default +} + +src_install() { + # Can't use default because make install isn't parallel friendly + emake -j1 DESTDIR="${D}" install + dodoc "${DOCS[@]}" domenu amsn.desktop sed -i -e s:.png:: "${D}"/usr/share/applications/amsn.desktop || die |