summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGilles Dartiguelongue <eva@gentoo.org>2007-06-28 19:54:00 +0000
committerGilles Dartiguelongue <eva@gentoo.org>2007-06-28 19:54:00 +0000
commit006b8bdd426eb4cb17784c3b891cf0bafdd8bdc4 (patch)
treefb634388d6c8380eddfa0b6e9b26371e2ef666ff /dev-util/diasce
parentFixing stupid cvs breakage thanks to Chris Mayo. Fixes bug #183566 (diff)
downloadgentoo-2-006b8bdd426eb4cb17784c3b891cf0bafdd8bdc4.tar.gz
gentoo-2-006b8bdd426eb4cb17784c3b891cf0bafdd8bdc4.tar.bz2
gentoo-2-006b8bdd426eb4cb17784c3b891cf0bafdd8bdc4.zip
fixing diasce to not use linc anymore, clean depend
(Portage version: 2.1.3_rc5)
Diffstat (limited to 'dev-util/diasce')
-rw-r--r--dev-util/diasce/ChangeLog8
-rw-r--r--dev-util/diasce/diasce-1.4.ebuild14
2 files changed, 14 insertions, 8 deletions
diff --git a/dev-util/diasce/ChangeLog b/dev-util/diasce/ChangeLog
index 2be09a1350c0..635fb9b58eba 100644
--- a/dev-util/diasce/ChangeLog
+++ b/dev-util/diasce/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-util/diasce
-# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/diasce/ChangeLog,v 1.11 2006/01/28 13:29:35 blubb Exp $
+# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/diasce/ChangeLog,v 1.12 2007/06/28 19:54:00 eva Exp $
+
+ 28 Jun 2007; Gilles Dartiguelongue <eva@gentoo.org> diasce-1.4.ebuild:
+ removing linc dependency since it's dead upstream and can be replaced by
+ orbit's fonctionality (builtin linc2)
28 Jan 2006; Simon Stelling <blubb@gentoo.org>
+files/diasce-1.4-linc.patch, -files/diasce-1.4-linc.patch.tar.bz2,
diff --git a/dev-util/diasce/diasce-1.4.ebuild b/dev-util/diasce/diasce-1.4.ebuild
index 25aa4e2ae840..e3e8214e18a8 100644
--- a/dev-util/diasce/diasce-1.4.ebuild
+++ b/dev-util/diasce/diasce-1.4.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2006 Gentoo Foundation
+# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/diasce/diasce-1.4.ebuild,v 1.11 2006/11/22 17:11:13 masterdriverz Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/diasce/diasce-1.4.ebuild,v 1.12 2007/06/28 19:54:00 eva Exp $
inherit eutils
@@ -28,23 +28,25 @@ RDEPEND=">=dev-libs/libxml2-2.4
>=gnome-base/libgnomecanvas-2"
DEPEND="${RDEPEND}
dev-util/pkgconfig
- net-libs/linc
+ >=gnome-base/orbit-2.8
nls? ( sys-devel/gettext )"
src_unpack() {
unpack ${A}
cd ${S}
- has_version '>=orbit/orbit-2.8.0' && epatch ${FILESDIR}/${P}-linc.patch
+ epatch ${FILESDIR}/${P}-linc.patch
}
src_compile() {
local myconf=""
- use nls || myconf="${myconf} --disable-nls"
+
+ myconf="${myconf} `use_enable nls`"
+
econf ${myconf} || die "./configure failed"
emake || die "emake failed"
}
src_install() {
- einstall || die
+ einstall || die "einstall failed"
dodoc AUTHORS ChangeLog INSTALL NEWS README TODO
}