summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2004-05-20 12:31:34 +0000
committerMike Frysinger <vapier@gentoo.org>2004-05-20 12:31:34 +0000
commit80b030c9d1ef8641e5e4bc5695363f5568982676 (patch)
treec35e35f0decd48c128972be086144b1fffcf35f8 /app-sci
parentstable on sparc. (diff)
downloadhistorical-80b030c9d1ef8641e5e4bc5695363f5568982676.tar.gz
historical-80b030c9d1ef8641e5e4bc5695363f5568982676.tar.bz2
historical-80b030c9d1ef8641e5e4bc5695363f5568982676.zip
Version bump #48334 by David Pufer
Diffstat (limited to 'app-sci')
-rw-r--r--app-sci/pcb/ChangeLog7
-rw-r--r--app-sci/pcb/files/digest-pcb-200402151
-rw-r--r--app-sci/pcb/pcb-20040215.ebuild36
3 files changed, 43 insertions, 1 deletions
diff --git a/app-sci/pcb/ChangeLog b/app-sci/pcb/ChangeLog
index 10ee8dd43e79..d69c1f09297b 100644
--- a/app-sci/pcb/ChangeLog
+++ b/app-sci/pcb/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-sci/pcb
# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-sci/pcb/ChangeLog,v 1.6 2004/04/19 12:10:16 phosphan Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-sci/pcb/ChangeLog,v 1.7 2004/05/20 12:31:34 vapier Exp $
+
+*pcb-20040215 (20 May 2004)
+
+ 20 May 2004; Mike Frysinger <vapier@gentoo.org> +pcb-20040215.ebuild:
+ Version bump #48334 by David Pufer
19 Apr 2004; Patrick Kursawe <phosphan@gentoo.org> pcb-20030815.ebuild,
pcb-20031113-r1.ebuild, pcb-20031113.ebuild:
diff --git a/app-sci/pcb/files/digest-pcb-20040215 b/app-sci/pcb/files/digest-pcb-20040215
new file mode 100644
index 000000000000..8afe78282729
--- /dev/null
+++ b/app-sci/pcb/files/digest-pcb-20040215
@@ -0,0 +1 @@
+MD5 c486587af86d4162f0c17667f3b951a7 pcb-20040215.tar.gz 2166675
diff --git a/app-sci/pcb/pcb-20040215.ebuild b/app-sci/pcb/pcb-20040215.ebuild
new file mode 100644
index 000000000000..c4f397788b49
--- /dev/null
+++ b/app-sci/pcb/pcb-20040215.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-sci/pcb/pcb-20040215.ebuild,v 1.1 2004/05/20 12:31:34 vapier Exp $
+
+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="~x86"
+IUSE="Xaw3d"
+
+RDEPEND="virtual/x11"
+DEPEND="${RDEPEND}
+ =dev-lang/tk-8*"
+
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+ sed -i 's/\(^START-INFO\)/INFO-DIR-SECTION Miscellaneous\n\1/' doc/pcb.info
+}
+
+src_compile() {
+ local myconf=""
+ use Xaw3d \
+ && myconf="--with-xaw=Xaw3d" \
+ || myconf="--with-xaw=Xaw"
+ econf ${myconf} || die
+ emake || die
+}
+
+src_install() {
+ make DESTDIR=${D} install || die
+ dodoc AUTHORS ChangeLog NEWS README
+}