diff options
author | 2006-04-07 20:17:54 +0000 | |
---|---|---|
committer | 2006-04-07 20:17:54 +0000 | |
commit | d5089466669ada7ef1d4aa85edec7aaed843ffc7 (patch) | |
tree | 5c46e0618300d42d2a0ab9fb180f6e4cd19f5f96 /sci-electronics/pcb | |
parent | Remove ciaranm from metadata.xml. (diff) | |
download | gentoo-2-d5089466669ada7ef1d4aa85edec7aaed843ffc7.tar.gz gentoo-2-d5089466669ada7ef1d4aa85edec7aaed843ffc7.tar.bz2 gentoo-2-d5089466669ada7ef1d4aa85edec7aaed843ffc7.zip |
Version bump; bug #127242.
(Portage version: 2.1_pre7)
Diffstat (limited to 'sci-electronics/pcb')
-rw-r--r-- | sci-electronics/pcb/ChangeLog | 7 | ||||
-rw-r--r-- | sci-electronics/pcb/files/digest-pcb-20060321 | 3 | ||||
-rw-r--r-- | sci-electronics/pcb/pcb-20060321.ebuild | 36 |
3 files changed, 45 insertions, 1 deletions
diff --git a/sci-electronics/pcb/ChangeLog b/sci-electronics/pcb/ChangeLog index fd3c2e383a77..3cb83ebf6ffb 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.18 2006/02/06 07:53:49 phosphan Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/pcb/ChangeLog,v 1.19 2006/04/07 20:17:53 plasmaroo Exp $ + +*pcb-20060321 (07 Apr 2006) + + 07 Apr 2006; <plasmaroo@gentoo.org> +pcb-20060321.ebuild: + Version bump; bug #127242. 06 Feb 2006; Patrick Kursawe <phosphan@gentoo.org> pcb-20050315.ebuild: Fixing deps, bug #121750 diff --git a/sci-electronics/pcb/files/digest-pcb-20060321 b/sci-electronics/pcb/files/digest-pcb-20060321 new file mode 100644 index 000000000000..bdf3e6420e4d --- /dev/null +++ b/sci-electronics/pcb/files/digest-pcb-20060321 @@ -0,0 +1,3 @@ +MD5 5cc364253488a69527c2657c1f6c062e pcb-20060321.tar.gz 2520122 +RMD160 1d73e61bb00d1a993dad4e3aa716e7708ac80db9 pcb-20060321.tar.gz 2520122 +SHA256 af824bf9e1151669da9724a4cb44a5a628642227d5beb3789d64a836b075784b pcb-20060321.tar.gz 2520122 diff --git a/sci-electronics/pcb/pcb-20060321.ebuild b/sci-electronics/pcb/pcb-20060321.ebuild new file mode 100644 index 000000000000..0668b5113b10 --- /dev/null +++ b/sci-electronics/pcb/pcb-20060321.ebuild @@ -0,0 +1,36 @@ +# 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-20060321.ebuild,v 1.1 2006/04/07 20:17:54 plasmaroo 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="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND=">=x11-libs/gtk+-2.4" +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 +} + +src_compile() { + econf || die + emake || die +} + +src_install() { + make DESTDIR=${D} install || die + dodoc AUTHORS ChangeLog NEWS README +} |