summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Dupeyron <calchan@gentoo.org>2006-07-08 10:32:15 +0000
committerDenis Dupeyron <calchan@gentoo.org>2006-07-08 10:32:15 +0000
commitc81ef18ae36c9c4b6af6349ce1c67fce9f5d4872 (patch)
tree5fb353c1e8a659ad5a70714b98af5ba6ffb4bac8 /sci-electronics
parentCleaned out old versions. (diff)
downloadgentoo-2-c81ef18ae36c9c4b6af6349ce1c67fce9f5d4872.tar.gz
gentoo-2-c81ef18ae36c9c4b6af6349ce1c67fce9f5d4872.tar.bz2
gentoo-2-c81ef18ae36c9c4b6af6349ce1c67fce9f5d4872.zip
Version bump. Added desktop entry.
(Portage version: 2.1.1_pre2-r4)
Diffstat (limited to 'sci-electronics')
-rw-r--r--sci-electronics/pcb/ChangeLog7
-rw-r--r--sci-electronics/pcb/files/digest-pcb-200604223
-rw-r--r--sci-electronics/pcb/pcb-20060422.ebuild41
3 files changed, 50 insertions, 1 deletions
diff --git a/sci-electronics/pcb/ChangeLog b/sci-electronics/pcb/ChangeLog
index 00787f960e76..ce7d3960c03b 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.20 2006/07/02 15:19:58 calchan Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-electronics/pcb/ChangeLog,v 1.21 2006/07/08 10:32:14 calchan Exp $
+
+*pcb-20060422 (08 Jul 2006)
+
+ 08 Jul 2006; Denis Dupeyron <calchan@gentoo.org> +pcb-20060422.ebuild:
+ Version bump. Added desktop entry.
02 Jul 2006; Denis Dupeyron <calchan@gentoo.org> metadata.xml:
Adjusted metadata, see bug #138062.
diff --git a/sci-electronics/pcb/files/digest-pcb-20060422 b/sci-electronics/pcb/files/digest-pcb-20060422
new file mode 100644
index 000000000000..dc0ddefd934a
--- /dev/null
+++ b/sci-electronics/pcb/files/digest-pcb-20060422
@@ -0,0 +1,3 @@
+MD5 f70af0f43d9cf1a98ec6a7681773b793 pcb-20060422.tar.gz 3200182
+RMD160 be4cc1b02eee79deb836da71f87a629954879bc8 pcb-20060422.tar.gz 3200182
+SHA256 5c392a6a798975ab44894a669fe05f672f8ece4016f944e4347b220c1262fea9 pcb-20060422.tar.gz 3200182
diff --git a/sci-electronics/pcb/pcb-20060422.ebuild b/sci-electronics/pcb/pcb-20060422.ebuild
new file mode 100644
index 000000000000..54678754962d
--- /dev/null
+++ b/sci-electronics/pcb/pcb-20060422.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-20060422.ebuild,v 1.1 2006/07/08 10:32:14 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
+}