summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Yamin <plasmaroo@gentoo.org>2006-11-25 19:10:56 +0000
committerTim Yamin <plasmaroo@gentoo.org>2006-11-25 19:10:56 +0000
commitda1fcbe323cc8bc6a1964048dcd95cef6a66702d (patch)
tree5a49d423abe5200345d6a6e75da187cc09cafea1 /sci-libs
parentAdd ~alpha + ~ia64 keywords, bug 134270. (diff)
downloadgentoo-2-da1fcbe323cc8bc6a1964048dcd95cef6a66702d.tar.gz
gentoo-2-da1fcbe323cc8bc6a1964048dcd95cef6a66702d.tar.bz2
gentoo-2-da1fcbe323cc8bc6a1964048dcd95cef6a66702d.zip
Version bump; bug #153320.
(Portage version: 2.1.2_rc1-r5)
Diffstat (limited to 'sci-libs')
-rw-r--r--sci-libs/libgeda/ChangeLog7
-rw-r--r--sci-libs/libgeda/files/digest-libgeda-200610203
-rw-r--r--sci-libs/libgeda/libgeda-20061020.ebuild49
3 files changed, 58 insertions, 1 deletions
diff --git a/sci-libs/libgeda/ChangeLog b/sci-libs/libgeda/ChangeLog
index 0ca51e0acc1f..806444f1e80d 100644
--- a/sci-libs/libgeda/ChangeLog
+++ b/sci-libs/libgeda/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sci-libs/libgeda
# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeda/ChangeLog,v 1.20 2006/11/01 00:57:15 dberkholz Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeda/ChangeLog,v 1.21 2006/11/25 19:10:56 plasmaroo Exp $
+
+*libgeda-20061020 (25 Nov 2006)
+
+ 25 Nov 2006; Tim Yamin <plasmaroo@gentoo.org> +libgeda-20061020.ebuild:
+ Version bump; bug #153320.
01 Nov 2006; Donnie Berkholz <dberkholz@gentoo.org>; ChangeLog:
Update for my nick change spyderous -> dberkholz.
diff --git a/sci-libs/libgeda/files/digest-libgeda-20061020 b/sci-libs/libgeda/files/digest-libgeda-20061020
new file mode 100644
index 000000000000..88cd38de046c
--- /dev/null
+++ b/sci-libs/libgeda/files/digest-libgeda-20061020
@@ -0,0 +1,3 @@
+MD5 3caf1aeee5627706b9abe54f6601a7dc libgeda-20061020.tar.gz 615370
+RMD160 b62ef82138c967f0c935d0bc7d6a0bf319c46f0d libgeda-20061020.tar.gz 615370
+SHA256 be073da934e3b4d3d4ab46a7e23f2423d2f5ff7b87147f001ef25231045ae2ab libgeda-20061020.tar.gz 615370
diff --git a/sci-libs/libgeda/libgeda-20061020.ebuild b/sci-libs/libgeda/libgeda-20061020.ebuild
new file mode 100644
index 000000000000..6dfd089673f5
--- /dev/null
+++ b/sci-libs/libgeda/libgeda-20061020.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeda/libgeda-20061020.ebuild,v 1.1 2006/11/25 19:10:56 plasmaroo Exp $
+
+HOMEPAGE="http://www.geda.seul.org"
+DESCRIPTION="libgeda - this library provides functions needed for the gEDA core suite"
+SRC_URI="http://www.geda.seul.org/devel/${PV}/libgeda-${PV}.tar.gz"
+
+IUSE="static"
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+SLOT="0"
+
+DEPEND=">=x11-libs/gtk+-2.4
+ >=dev-util/guile-1.6.3
+ >=dev-libs/libstroke-0.5.1"
+
+src_unpack() {
+ unpack ${A}
+
+ # Skip the share sub-directory, we'll install prolog.ps manually
+ sed -i \
+ -e "s:SUBDIRS = src include scripts docs share:SUBDIRS = src include scripts docs:" \
+ ${S}/Makefile.in \
+ || die "Patch failed"
+}
+
+src_compile() {
+ local myconf
+
+ use static && myconf="${myconf} --enable-static --disable-shared"
+
+ econf \
+ ${myconf} \
+ --disable-gdgeda \
+ disable-dependency-tracking \
+ || die "Configuration failed"
+
+ emake || die "Compilation failed"
+}
+
+src_install() {
+ einstall || die "Installation failed"
+
+ insinto /usr/share/gEDA
+ doins share/prolog.ps
+
+ dodoc AUTHORS BUGS ChangeLog README
+}