diff options
author | Patrick Kursawe <phosphan@gentoo.org> | 2005-03-13 00:20:04 +0000 |
---|---|---|
committer | Patrick Kursawe <phosphan@gentoo.org> | 2005-03-13 00:20:04 +0000 |
commit | b88b14178d525103cafabec7c71ea3883f03aff8 (patch) | |
tree | 5ca9befa83f694248f966e21b6653952669efa49 /sci-electronics/pcb | |
parent | removed old versions, cleanup (diff) | |
download | gentoo-2-b88b14178d525103cafabec7c71ea3883f03aff8.tar.gz gentoo-2-b88b14178d525103cafabec7c71ea3883f03aff8.tar.bz2 gentoo-2-b88b14178d525103cafabec7c71ea3883f03aff8.zip |
Version bump
(Portage version: 2.0.51.19)
Diffstat (limited to 'sci-electronics/pcb')
-rw-r--r-- | sci-electronics/pcb/ChangeLog | 9 | ||||
-rw-r--r-- | sci-electronics/pcb/files/digest-pcb-20050127 | 1 | ||||
-rw-r--r-- | sci-electronics/pcb/pcb-20040903.ebuild | 4 | ||||
-rw-r--r-- | sci-electronics/pcb/pcb-20050127.ebuild | 36 |
4 files changed, 46 insertions, 4 deletions
diff --git a/sci-electronics/pcb/ChangeLog b/sci-electronics/pcb/ChangeLog index 8bbb92d6494a..091a66aea19d 100644 --- a/sci-electronics/pcb/ChangeLog +++ b/sci-electronics/pcb/ChangeLog @@ -1,13 +1,18 @@ # ChangeLog for sci-electronics/pcb # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-electronics/pcb/ChangeLog,v 1.4 2005/02/28 21:52:06 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/pcb/ChangeLog,v 1.5 2005/03/13 00:20:04 phosphan Exp $ + +*pcb-20050127 (13 Mar 2005) + + 13 Mar 2005; Patrick Kursawe <phosphan@gentoo.org> pcb-20040903.ebuild, + +pcb-20050127.ebuild: + Version bump 28 Feb 2005; Gustavo Zacarias <gustavoz@gentoo.org> pcb-20040530.ebuild, pcb-20040903.ebuild: Keyworded ~sparc wrt #83593 18 Feb 2005; Michael Hanselmann <hansmi@gentoo.org> pcb-20040903.ebuild: - Added to ~ppc. *pcb-20040530 (27 Dec 2004) diff --git a/sci-electronics/pcb/files/digest-pcb-20050127 b/sci-electronics/pcb/files/digest-pcb-20050127 new file mode 100644 index 000000000000..0ca40c8dc172 --- /dev/null +++ b/sci-electronics/pcb/files/digest-pcb-20050127 @@ -0,0 +1 @@ +MD5 752e79c4797f5a900e492f2f0c42c15e pcb-20050127.tar.gz 2324200 diff --git a/sci-electronics/pcb/pcb-20040903.ebuild b/sci-electronics/pcb/pcb-20040903.ebuild index f7c1cbd97314..806321c8dc54 100644 --- a/sci-electronics/pcb/pcb-20040903.ebuild +++ b/sci-electronics/pcb/pcb-20040903.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-electronics/pcb/pcb-20040903.ebuild,v 1.3 2005/02/28 21:52:06 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/pcb/pcb-20040903.ebuild,v 1.4 2005/03/13 00:20:04 phosphan Exp $ DESCRIPTION="tool for the layout of printed circuit boards" HOMEPAGE="http://pcb.sourceforge.net/" @@ -8,7 +8,7 @@ SRC_URI="mirror://sourceforge/pcb/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~x86 ~amd64 ~ppc ~sparc" +KEYWORDS="x86 ~amd64 ~ppc ~sparc" IUSE="Xaw3d" RDEPEND="virtual/x11" diff --git a/sci-electronics/pcb/pcb-20050127.ebuild b/sci-electronics/pcb/pcb-20050127.ebuild new file mode 100644 index 000000000000..6e621bbad4e6 --- /dev/null +++ b/sci-electronics/pcb/pcb-20050127.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/pcb/pcb-20050127.ebuild,v 1.1 2005/03/13 00:20:04 phosphan 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 ~amd64" +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 +} |