diff options
author | Chris Bainbridge <chrb@gentoo.org> | 2005-10-26 14:34:54 +0000 |
---|---|---|
committer | Chris Bainbridge <chrb@gentoo.org> | 2005-10-26 14:34:54 +0000 |
commit | c8016c7637885eaec1ea0e02427cc58010664fce (patch) | |
tree | fb11debb9214f228c1ecbc68c96b962a78accc20 /app-misc | |
parent | Removed cdinstall since ut2003-data is not optional due to being non-trivial ... (diff) | |
download | historical-c8016c7637885eaec1ea0e02427cc58010664fce.tar.gz historical-c8016c7637885eaec1ea0e02427cc58010664fce.tar.bz2 historical-c8016c7637885eaec1ea0e02427cc58010664fce.zip |
New package
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/scope/Manifest | 2 | ||||
-rw-r--r-- | app-misc/scope/metadata.xml | 9 | ||||
-rw-r--r-- | app-misc/scope/scope-0.03.ebuild | 24 |
3 files changed, 35 insertions, 0 deletions
diff --git a/app-misc/scope/Manifest b/app-misc/scope/Manifest new file mode 100644 index 000000000000..1975e74b237d --- /dev/null +++ b/app-misc/scope/Manifest @@ -0,0 +1,2 @@ +MD5 fc9b6a06698e2cb3aa1adc878857a430 scope-0.03.ebuild 508 +MD5 78c22225d1b0da0c17025a3dc148bb31 files/digest-scope-0.03 61 diff --git a/app-misc/scope/metadata.xml b/app-misc/scope/metadata.xml new file mode 100644 index 000000000000..e91c91d6e953 --- /dev/null +++ b/app-misc/scope/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>chrb@gentoo.org</email> + <name>Chris Bainbridge</name> + </maintainer> + <longdescription>Serial Line Analyser</longdescription> +</pkgmetadata> diff --git a/app-misc/scope/scope-0.03.ebuild b/app-misc/scope/scope-0.03.ebuild new file mode 100644 index 000000000000..c9f8b881a6ae --- /dev/null +++ b/app-misc/scope/scope-0.03.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/scope/scope-0.03.ebuild,v 1.1 2005/10/26 14:34:54 chrb Exp $ + +inherit eutils +DESCRIPTION="Serial Line Analyser" +HOMEPAGE="http://www.gumbley.me.uk/scope.html" +SRC_URI="http://www.gumbley.me.uk/scope-0.03.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND="virtual/libc" +S=${WORKDIR}/${P} + +src_compile() { + econf || die "econf failed" + emake || die "emake failed" +} + +src_install() { + make DESTDIR=${D} install || die + dodoc ${S}/README +} |