diff options
author | Tim Yamin <plasmaroo@gentoo.org> | 2005-01-04 12:12:04 +0000 |
---|---|---|
committer | Tim Yamin <plasmaroo@gentoo.org> | 2005-01-04 12:12:04 +0000 |
commit | 78403944a0cf6f8d5c90e63d11fdc86cbefd1846 (patch) | |
tree | ec396cc0d648d7f9b098ca4af609b39ef1f53908 /sci-libs/libgeda | |
parent | Requiring -r9 portage for get_libdir love. (diff) | |
download | gentoo-2-78403944a0cf6f8d5c90e63d11fdc86cbefd1846.tar.gz gentoo-2-78403944a0cf6f8d5c90e63d11fdc86cbefd1846.tar.bz2 gentoo-2-78403944a0cf6f8d5c90e63d11fdc86cbefd1846.zip |
Version bump. Bug #76349.
Diffstat (limited to 'sci-libs/libgeda')
-rw-r--r-- | sci-libs/libgeda/ChangeLog | 9 | ||||
-rw-r--r-- | sci-libs/libgeda/Manifest | 16 | ||||
-rw-r--r-- | sci-libs/libgeda/files/digest-libgeda-20041228 | 1 | ||||
-rw-r--r-- | sci-libs/libgeda/libgeda-20041228.ebuild | 35 |
4 files changed, 47 insertions, 14 deletions
diff --git a/sci-libs/libgeda/ChangeLog b/sci-libs/libgeda/ChangeLog index 6e0a47b77386..69ab0cc7a01b 100644 --- a/sci-libs/libgeda/ChangeLog +++ b/sci-libs/libgeda/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-libs/libgeda -# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeda/ChangeLog,v 1.2 2004/12/28 19:59:01 swegener Exp $ +# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeda/ChangeLog,v 1.3 2005/01/04 12:12:04 plasmaroo Exp $ + +*libgeda-20041228 (04 Jan 2005) + + 04 Jan 2005; <plasmaroo@gentoo.org> +libgeda-20041228.ebuild: + Version bump. Bug #76349. *libgeda-20040111 (28 Dec 2004) diff --git a/sci-libs/libgeda/Manifest b/sci-libs/libgeda/Manifest index 80668333c505..8c18db6db561 100644 --- a/sci-libs/libgeda/Manifest +++ b/sci-libs/libgeda/Manifest @@ -1,14 +1,6 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -MD5 14b7f39aaa645e15ec644ebca2de0a75 libgeda-20040111.ebuild 920 -MD5 d90dc174fadb656f9c7b2b1c09bec23e ChangeLog 883 +MD5 7c928391c3649e9cc148e7d08fa42d73 ChangeLog 1009 +MD5 4ccdca6b746dd1e69d19a587d91741b5 libgeda-20041228.ebuild 896 MD5 e49bb02132d2cd74ad4e6ee291e102d9 metadata.xml 220 +MD5 14b7f39aaa645e15ec644ebca2de0a75 libgeda-20040111.ebuild 920 MD5 f281bbbe2282faf29eed02ee91170d16 files/digest-libgeda-20040111 68 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.9.10 (GNU/Linux) - -iD8DBQFB0bsLI1lqEGTUzyQRAl2qAKDGzHUXuCDKYjefwvTHYI4vu9QtngCcC9O/ -LuB29000L+Hy2abKWIADBC4= -=tV3O ------END PGP SIGNATURE----- +MD5 a6a07441e9e5cd47be0d6f1d47b06fbc files/digest-libgeda-20041228 68 diff --git a/sci-libs/libgeda/files/digest-libgeda-20041228 b/sci-libs/libgeda/files/digest-libgeda-20041228 new file mode 100644 index 000000000000..755e2db3cdc9 --- /dev/null +++ b/sci-libs/libgeda/files/digest-libgeda-20041228 @@ -0,0 +1 @@ +MD5 375fbebdeb82079c970eab4b3ae41e42 libgeda-20041228.tar.gz 992149 diff --git a/sci-libs/libgeda/libgeda-20041228.ebuild b/sci-libs/libgeda/libgeda-20041228.ebuild new file mode 100644 index 000000000000..a3487b4af3b1 --- /dev/null +++ b/sci-libs/libgeda/libgeda-20041228.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeda/libgeda-20041228.ebuild,v 1.1 2005/01/04 12:12:04 plasmaroo Exp $ + +HOMEPAGE="http://www.geda.seul.org" +DESCRIPTION="libgeda - this library provides functions needed for a working gEDA/gaf system" +SRC_URI="http://www.geda.seul.org/devel/${PV}/libgeda-${PV}.tar.gz" + +IUSE="png static" +LICENSE="GPL-2" +KEYWORDS="~x86" +SLOT="0" + +DEPEND=">=dev-libs/glib-2.4.8 + >=x11-libs/gtk+-2.2 + virtual/x11 + + >=dev-util/guile-1.6.3 + >=dev-util/pkgconfig-0.15.0 + png? ( >=sci-libs/libgdgeda-2.0.15 )" + +src_compile () { + local myconf + + use png || myconf='--disable-gdgeda' + use static && myconf="${myconf} --enable-static --disable-shared" + + econf ${myconf} || die + emake || die +} + +src_install () { + einstall || die + dodoc AUTHORS COPYING ChangeLog README +} |