diff options
author | Tim Yamin <plasmaroo@gentoo.org> | 2003-09-09 22:24:08 +0000 |
---|---|---|
committer | Tim Yamin <plasmaroo@gentoo.org> | 2003-09-09 22:24:08 +0000 |
commit | 7f0041ac922fd2541e5ff11ec02f48a2832adcf8 (patch) | |
tree | fbc9619e8c0e7f98477f7d251e368ebc30145737 /app-sci/pcb | |
parent | new version (diff) | |
download | gentoo-2-7f0041ac922fd2541e5ff11ec02f48a2832adcf8.tar.gz gentoo-2-7f0041ac922fd2541e5ff11ec02f48a2832adcf8.tar.bz2 gentoo-2-7f0041ac922fd2541e5ff11ec02f48a2832adcf8.zip |
Initial revision.
Diffstat (limited to 'app-sci/pcb')
-rw-r--r-- | app-sci/pcb/ChangeLog | 8 | ||||
-rw-r--r-- | app-sci/pcb/Manifest | 4 | ||||
-rw-r--r-- | app-sci/pcb/files/digest-pcb-20030815 | 1 | ||||
-rw-r--r-- | app-sci/pcb/metadata.xml | 5 | ||||
-rw-r--r-- | app-sci/pcb/pcb-20030815.ebuild | 24 |
5 files changed, 42 insertions, 0 deletions
diff --git a/app-sci/pcb/ChangeLog b/app-sci/pcb/ChangeLog new file mode 100644 index 000000000000..82419f402a2b --- /dev/null +++ b/app-sci/pcb/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for app-sci/pcb +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-sci/pcb/ChangeLog,v 1.1 2003/09/09 22:23:53 plasmaroo Exp $ + +*pcb-20030815 (09 Sep 2003) + + 09 Sep 2003; <plasmaroo@gentoo.org> pcb-20030815.ebuild: + Initial revision. diff --git a/app-sci/pcb/Manifest b/app-sci/pcb/Manifest new file mode 100644 index 000000000000..512ad866fa69 --- /dev/null +++ b/app-sci/pcb/Manifest @@ -0,0 +1,4 @@ +MD5 ecc411ffe0749006a73ccf62978d69b6 ChangeLog 315 +MD5 8c623e53daafa025137077c6b65815bd metadata.xml 156 +MD5 0cdfff27fbdce352c578285b64e7b1f3 pcb-20030815.ebuild 607 +MD5 ea254f318329852b7c9dae5608c121d7 files/digest-pcb-20030815 65 diff --git a/app-sci/pcb/files/digest-pcb-20030815 b/app-sci/pcb/files/digest-pcb-20030815 new file mode 100644 index 000000000000..6211029b1efb --- /dev/null +++ b/app-sci/pcb/files/digest-pcb-20030815 @@ -0,0 +1 @@ +MD5 982c5a3418fd1daf91e773bab8cf63b6 pcb-20030815.tar.gz 1999427 diff --git a/app-sci/pcb/metadata.xml b/app-sci/pcb/metadata.xml new file mode 100644 index 000000000000..b229aec85b8f --- /dev/null +++ b/app-sci/pcb/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>sci</herd> +</pkgmetadata> diff --git a/app-sci/pcb/pcb-20030815.ebuild b/app-sci/pcb/pcb-20030815.ebuild new file mode 100644 index 000000000000..0855fc976df0 --- /dev/null +++ b/app-sci/pcb/pcb-20030815.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-sci/pcb/pcb-20030815.ebuild,v 1.1 2003/09/09 22:23:53 plasmaroo Exp $ + +DESCRIPTION="PCB is a tool for the layout of printed circuit boards." +HOMEPAGE="http://sourceforge.net/projects/pcb/" +SRC_URI="http://unc.dl.sourceforge.net/sourceforge/pcb/${P}.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="~x86" +DEPEND="x11-base/xfree" +SLOT="0" + +S=${WORKDIR}/${P} + +src_compile() { + econf || die + cd ${S} + emake || die +} + +src_install() { + emake DESTDIR=${D} install || die +} |