diff options
author | Alin Năstac <mrness@gentoo.org> | 2007-10-01 11:52:11 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2007-10-01 11:52:11 +0000 |
commit | 5f85b5f99cb925039bfbf7ac7afd764c1c1e56e8 (patch) | |
tree | 9ef1a45e185522f0937865f37fa5714053df7f73 /net-dialup | |
parent | Added sparc stable keyword (diff) | |
download | gentoo-2-5f85b5f99cb925039bfbf7ac7afd764c1c1e56e8.tar.gz gentoo-2-5f85b5f99cb925039bfbf7ac7afd764c1c1e56e8.tar.bz2 gentoo-2-5f85b5f99cb925039bfbf7ac7afd764c1c1e56e8.zip |
Fix compilation failure when qt4 is present.
(Portage version: 2.1.2.12)
Diffstat (limited to 'net-dialup')
-rw-r--r-- | net-dialup/cutecom/ChangeLog | 5 | ||||
-rw-r--r-- | net-dialup/cutecom/cutecom-0.14.1.ebuild | 9 |
2 files changed, 9 insertions, 5 deletions
diff --git a/net-dialup/cutecom/ChangeLog b/net-dialup/cutecom/ChangeLog index fa7b3abf4dbd..a87dd1d17865 100644 --- a/net-dialup/cutecom/ChangeLog +++ b/net-dialup/cutecom/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-dialup/cutecom # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/cutecom/ChangeLog,v 1.14 2007/06/26 17:23:19 josejx Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/cutecom/ChangeLog,v 1.15 2007/10/01 11:52:11 mrness Exp $ + + 01 Oct 2007; Alin Năstac <mrness@gentoo.org> cutecom-0.14.1.ebuild: + Fix compilation failure when qt4 is present. 26 Jun 2007; Joseph Jezak <josejx@gentoo.org> cutecom-0.14.1.ebuild: Marked ppc stable for bug #182819. diff --git a/net-dialup/cutecom/cutecom-0.14.1.ebuild b/net-dialup/cutecom/cutecom-0.14.1.ebuild index 37883ac29319..91e88617f107 100644 --- a/net-dialup/cutecom/cutecom-0.14.1.ebuild +++ b/net-dialup/cutecom/cutecom-0.14.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/cutecom/cutecom-0.14.1.ebuild,v 1.3 2007/06/26 17:23:19 josejx Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/cutecom/cutecom-0.14.1.ebuild,v 1.4 2007/10/01 11:52:11 mrness Exp $ inherit eutils qt3 @@ -18,9 +18,10 @@ RDEPEND="${DEPEND} net-dialup/lrzsz" src_compile() { - addwrite "${QTDIR}/etc/settings" - econf && emake || die "compile failed" + eqmake3 || die "eqmake3 failed" + emake || die "emake failed" + # clean qt lock file local f for f in "${QTDIR}"/etc/settings/.qt_plugins*.lock; do rm -f "${f}" @@ -28,7 +29,7 @@ src_compile() { } src_install() { - dobin "cutecom" + dobin cutecom || die "failed to install cutecom bin" dodoc README Changelog README make_desktop_entry cutecom "CuteCom" openterm |