summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Dupeyron <calchan@gentoo.org>2006-09-09 17:00:20 +0000
committerDenis Dupeyron <calchan@gentoo.org>2006-09-09 17:00:20 +0000
commitd6ed8c38dcb5fea935895d1c7694dd7d95a7bd8b (patch)
treedf202e347b09b957886cf2b65c4a416e01e97b6f /sci-libs/libgeda
parentAlpha stable for bug #136401 (diff)
downloadgentoo-2-d6ed8c38dcb5fea935895d1c7694dd7d95a7bd8b.tar.gz
gentoo-2-d6ed8c38dcb5fea935895d1c7694dd7d95a7bd8b.tar.bz2
gentoo-2-d6ed8c38dcb5fea935895d1c7694dd7d95a7bd8b.zip
Version bump, see bug #145162.
(Portage version: 2.1.1)
Diffstat (limited to 'sci-libs/libgeda')
-rw-r--r--sci-libs/libgeda/ChangeLog7
-rw-r--r--sci-libs/libgeda/files/digest-libgeda-200608243
-rw-r--r--sci-libs/libgeda/libgeda-20060824.ebuild49
3 files changed, 58 insertions, 1 deletions
diff --git a/sci-libs/libgeda/ChangeLog b/sci-libs/libgeda/ChangeLog
index d627ac5e39d0..c23eac4bc41e 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.14 2006/09/05 18:28:27 gustavoz Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeda/ChangeLog,v 1.15 2006/09/09 17:00:20 calchan Exp $
+
+*libgeda-20060824 (09 Sep 2006)
+
+ 09 Sep 2006; Denis Dupeyron <calchan@gentoo.org> +libgeda-20060824.ebuild:
+ Version bump, see bug #145162.
05 Sep 2006; Gustavo Zacarias <gustavoz@gentoo.org>
libgeda-20060123.ebuild:
diff --git a/sci-libs/libgeda/files/digest-libgeda-20060824 b/sci-libs/libgeda/files/digest-libgeda-20060824
new file mode 100644
index 000000000000..2d6fecd1d287
--- /dev/null
+++ b/sci-libs/libgeda/files/digest-libgeda-20060824
@@ -0,0 +1,3 @@
+MD5 1c91d97f6f2f83695af36aeb5e830e0b libgeda-20060824.tar.gz 679481
+RMD160 5da483118a0c291cd0dbbc34cc3937971d5147d7 libgeda-20060824.tar.gz 679481
+SHA256 eebd5836d82ac5990b29fd4f53b496a446e431700808d4e7420ea754a7966797 libgeda-20060824.tar.gz 679481
diff --git a/sci-libs/libgeda/libgeda-20060824.ebuild b/sci-libs/libgeda/libgeda-20060824.ebuild
new file mode 100644
index 000000000000..f48224a8a1d4
--- /dev/null
+++ b/sci-libs/libgeda/libgeda-20060824.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-20060824.ebuild,v 1.1 2006/09/09 17:00:20 calchan 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=">=dev-libs/glib-2.4.8
+ >=x11-libs/gtk+-2.2
+ >=dev-util/guile-1.6.3"
+
+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
+}