summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Dupeyron <calchan@gentoo.org>2006-09-02 14:26:43 +0000
committerDenis Dupeyron <calchan@gentoo.org>2006-09-02 14:26:43 +0000
commitcb324f708f9e108981b2b1ea6ab8cc28ca775bee (patch)
tree5b246549b7309cd7d429e10a785fb998f2c54b0d /sci-electronics/pcb
parentAdded ~ppc wrt bug 144505 (diff)
downloadgentoo-2-cb324f708f9e108981b2b1ea6ab8cc28ca775bee.tar.gz
gentoo-2-cb324f708f9e108981b2b1ea6ab8cc28ca775bee.tar.bz2
gentoo-2-cb324f708f9e108981b2b1ea6ab8cc28ca775bee.zip
Version bump.
(Portage version: 2.1.1_rc1-r2)
Diffstat (limited to 'sci-electronics/pcb')
-rw-r--r--sci-electronics/pcb/ChangeLog7
-rw-r--r--sci-electronics/pcb/files/digest-pcb-200608223
-rw-r--r--sci-electronics/pcb/pcb-20060822.ebuild41
3 files changed, 50 insertions, 1 deletions
diff --git a/sci-electronics/pcb/ChangeLog b/sci-electronics/pcb/ChangeLog
index ce7d3960c03b..fa6d39209f61 100644
--- a/sci-electronics/pcb/ChangeLog
+++ b/sci-electronics/pcb/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sci-electronics/pcb
# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-electronics/pcb/ChangeLog,v 1.21 2006/07/08 10:32:14 calchan Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-electronics/pcb/ChangeLog,v 1.22 2006/09/02 14:26:43 calchan Exp $
+
+*pcb-20060822 (02 Sep 2006)
+
+ 02 Sep 2006; Denis Dupeyron <calchan@gentoo.org> +pcb-20060822.ebuild:
+ Version bump, thanks to Stefan Salewski (bug #144844).
*pcb-20060422 (08 Jul 2006)
diff --git a/sci-electronics/pcb/files/digest-pcb-20060822 b/sci-electronics/pcb/files/digest-pcb-20060822
new file mode 100644
index 000000000000..db518ce6651e
--- /dev/null
+++ b/sci-electronics/pcb/files/digest-pcb-20060822
@@ -0,0 +1,3 @@
+MD5 e091285d6741860484b31e8ac5b7e37f pcb-20060822.tar.gz 3229845
+RMD160 65318c31a99b4ab4e38d2140f8c9a2bb5913a797 pcb-20060822.tar.gz 3229845
+SHA256 3e3e79674a3bc4a3196e8c4fc3299a1c67e844ee2310b36933b2b15444b43bcd pcb-20060822.tar.gz 3229845
diff --git a/sci-electronics/pcb/pcb-20060822.ebuild b/sci-electronics/pcb/pcb-20060822.ebuild
new file mode 100644
index 000000000000..d009c98875a3
--- /dev/null
+++ b/sci-electronics/pcb/pcb-20060822.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sci-electronics/pcb/pcb-20060822.ebuild,v 1.1 2006/09/02 14:26:43 calchan Exp $
+
+inherit eutils
+
+DESCRIPTION="tool for the layout of printed circuit boards"
+HOMEPAGE="http://pcb.sourceforge.net/"
+SRC_URI="mirror://sourceforge/pcb/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE=""
+
+RDEPEND=">=x11-libs/gtk+-2.4
+ media-libs/gd"
+DEPEND="${RDEPEND}
+ =dev-lang/tk-8*
+ || (
+ virtual/x11
+ x11-proto/xproto
+ )"
+
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+ sed -i 's/\(^START-INFO\)/INFO-DIR-SECTION Miscellaneous\n\1/' doc/pcb.info || die "sed failed"
+}
+
+src_compile() {
+ econf --disable-dependency-tracking || die "Configuration failed"
+ emake || die "Compilation failed"
+}
+
+src_install() {
+ make DESTDIR=${D} install || die "Installation failed"
+ dodoc AUTHORS ChangeLog NEWS README
+ newicon win32/pcb_icon_big.xpm pcb.xpm
+ make_desktop_entry pcb PCB pcb.xpm Electronics
+}