diff options
author | Olivier Crête <tester@gentoo.org> | 2009-08-22 04:05:23 +0000 |
---|---|---|
committer | Olivier Crête <tester@gentoo.org> | 2009-08-22 04:05:23 +0000 |
commit | 5cf56ea5fbed82217c791852bd9177c5219a7d10 (patch) | |
tree | ae76bd80e9a1fc6900cff92100de8c0e6cab7de5 /x11-plugins | |
parent | Build with parallel make, remove -j1, bug #235990 (diff) | |
download | gentoo-2-5cf56ea5fbed82217c791852bd9177c5219a7d10.tar.gz gentoo-2-5cf56ea5fbed82217c791852bd9177c5219a7d10.tar.bz2 gentoo-2-5cf56ea5fbed82217c791852bd9177c5219a7d10.zip |
Build with parallel make, remove -j1. Bug #235990
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'x11-plugins')
-rw-r--r-- | x11-plugins/pidgin-otr/ChangeLog | 5 | ||||
-rw-r--r-- | x11-plugins/pidgin-otr/pidgin-otr-3.2.0.ebuild | 10 |
2 files changed, 7 insertions, 8 deletions
diff --git a/x11-plugins/pidgin-otr/ChangeLog b/x11-plugins/pidgin-otr/ChangeLog index 67bd7d5283f2..9c1f47468cd0 100644 --- a/x11-plugins/pidgin-otr/ChangeLog +++ b/x11-plugins/pidgin-otr/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-plugins/pidgin-otr # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-otr/ChangeLog,v 1.15 2009/08/16 09:02:49 betelgeuse Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-otr/ChangeLog,v 1.16 2009/08/22 04:05:23 tester Exp $ + + 22 Aug 2009; Olivier Crête <tester@gentoo.org> pidgin-otr-3.2.0.ebuild: + Build with parallel make, remove -j1. Bug #235990 16 Aug 2009; Petteri Räty <betelgeuse@gentoo.org> pidgin-otr-3.2.0.ebuild: diff --git a/x11-plugins/pidgin-otr/pidgin-otr-3.2.0.ebuild b/x11-plugins/pidgin-otr/pidgin-otr-3.2.0.ebuild index f4252168f017..4f563b36a6c9 100644 --- a/x11-plugins/pidgin-otr/pidgin-otr-3.2.0.ebuild +++ b/x11-plugins/pidgin-otr/pidgin-otr-3.2.0.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-otr/pidgin-otr-3.2.0.ebuild,v 1.2 2009/08/16 09:02:49 betelgeuse Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-otr/pidgin-otr-3.2.0.ebuild,v 1.3 2009/08/22 04:05:23 tester Exp $ EAPI="2" -inherit flag-o-matic eutils autotools +inherit flag-o-matic DESCRIPTION="(OTR) Messaging allows you to have private conversations over instant messaging" HOMEPAGE="http://www.cypherpunks.ca/otr/" @@ -29,11 +29,7 @@ src_configure() { econf || die "econf failed" } -src_compile() { - emake -j1 || die "Make failed" -} - src_install() { - emake -j1 install DESTDIR="${D}" || die "Install failed" + make install DESTDIR="${D}" || die "Install failed" dodoc ChangeLog README || die } |