diff options
Diffstat (limited to 'sci-electronics/pcb')
-rw-r--r-- | sci-electronics/pcb/ChangeLog | 7 | ||||
-rw-r--r-- | sci-electronics/pcb/files/digest-pcb-20050609 | 1 | ||||
-rw-r--r-- | sci-electronics/pcb/pcb-20050609.ebuild | 33 |
3 files changed, 40 insertions, 1 deletions
diff --git a/sci-electronics/pcb/ChangeLog b/sci-electronics/pcb/ChangeLog index 3c5c554a94e1..bbf0d7c60214 100644 --- a/sci-electronics/pcb/ChangeLog +++ b/sci-electronics/pcb/ChangeLog @@ -1,6 +1,11 @@ # 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.15 2005/08/13 23:36:29 hansmi Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/pcb/ChangeLog,v 1.16 2005/11/14 20:10:39 plasmaroo Exp $ + +*pcb-20050609 (14 Nov 2005) + + 14 Nov 2005; <plasmaroo@gentoo.org> +pcb-20050609.ebuild: + Version bump (#107945). 13 Aug 2005; Michael Hanselmann <hansmi@gentoo.org> pcb-20050315.ebuild: Stable on ppc. diff --git a/sci-electronics/pcb/files/digest-pcb-20050609 b/sci-electronics/pcb/files/digest-pcb-20050609 new file mode 100644 index 000000000000..e6a454f284f5 --- /dev/null +++ b/sci-electronics/pcb/files/digest-pcb-20050609 @@ -0,0 +1 @@ +MD5 a09473705c80eaf4f796617263d9f8fe pcb-20050609.tar.gz 2371793 diff --git a/sci-electronics/pcb/pcb-20050609.ebuild b/sci-electronics/pcb/pcb-20050609.ebuild new file mode 100644 index 000000000000..7a2d289d669e --- /dev/null +++ b/sci-electronics/pcb/pcb-20050609.ebuild @@ -0,0 +1,33 @@ +# 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-20050609.ebuild,v 1.1 2005/11/14 20:10:39 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="virtual/x11" +DEPEND="${RDEPEND} + =dev-lang/tk-8* + >=x11-libs/gtk+-2.4" + +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 +} |