diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-05-20 12:31:34 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-05-20 12:31:34 +0000 |
commit | 743e060c6f6d9f2efb25f70c4595b1fd837b328d (patch) | |
tree | a246373dd82010228dbd0f21d4b5d3a94056f079 /app-sci/pcb | |
parent | stable on sparc. (Manifest recommit) (diff) | |
download | gentoo-2-743e060c6f6d9f2efb25f70c4595b1fd837b328d.tar.gz gentoo-2-743e060c6f6d9f2efb25f70c4595b1fd837b328d.tar.bz2 gentoo-2-743e060c6f6d9f2efb25f70c4595b1fd837b328d.zip |
Version bump #48334 by David Pufer
Diffstat (limited to 'app-sci/pcb')
-rw-r--r-- | app-sci/pcb/ChangeLog | 7 | ||||
-rw-r--r-- | app-sci/pcb/files/digest-pcb-20040215 | 1 | ||||
-rw-r--r-- | app-sci/pcb/pcb-20040215.ebuild | 36 |
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 +} |