diff options
author | Olivier Crête <tester@gentoo.org> | 2009-05-06 19:35:39 +0000 |
---|---|---|
committer | Olivier Crête <tester@gentoo.org> | 2009-05-06 19:35:39 +0000 |
commit | 60b30c2e879fcd820e188fc311ef70d59dfe9169 (patch) | |
tree | f702bec9b190d79b30b9be35ec57975aa747c6ea /dev-embedded/scratchbox-devkit-doctools | |
parent | Stable for HPPA (bug #268265). (diff) | |
download | historical-60b30c2e879fcd820e188fc311ef70d59dfe9169.tar.gz historical-60b30c2e879fcd820e188fc311ef70d59dfe9169.tar.bz2 historical-60b30c2e879fcd820e188fc311ef70d59dfe9169.zip |
Adding scratchbox, from sunrise and bug #94225
Package-Manager: portage-2.1.6.11/cvs/Linux i686
Diffstat (limited to 'dev-embedded/scratchbox-devkit-doctools')
3 files changed, 44 insertions, 0 deletions
diff --git a/dev-embedded/scratchbox-devkit-doctools/ChangeLog b/dev-embedded/scratchbox-devkit-doctools/ChangeLog new file mode 100644 index 000000000000..87b834288c87 --- /dev/null +++ b/dev-embedded/scratchbox-devkit-doctools/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-embedded/scratchbox-devkit-doctools +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-embedded/scratchbox-devkit-doctools/ChangeLog,v 1.1 2009/05/06 19:34:42 tester Exp $ + +*scratchbox-devkit-doctools-1.0.9 (06 May 2009) + + 06 May 2009; Olivier Crête <tester@gentoo.org> +metadata.xml, + +scratchbox-devkit-doctools-1.0.9.ebuild: + Initial version, from sunrise and bug #94225 + diff --git a/dev-embedded/scratchbox-devkit-doctools/metadata.xml b/dev-embedded/scratchbox-devkit-doctools/metadata.xml new file mode 100644 index 000000000000..4fda9497e023 --- /dev/null +++ b/dev-embedded/scratchbox-devkit-doctools/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>dev-embedded</herd> +<maintainer> + <email>tester@gentoo.org</email> +</maintainer> +</pkgmetadata> diff --git a/dev-embedded/scratchbox-devkit-doctools/scratchbox-devkit-doctools-1.0.9.ebuild b/dev-embedded/scratchbox-devkit-doctools/scratchbox-devkit-doctools-1.0.9.ebuild new file mode 100644 index 000000000000..87eeb5924034 --- /dev/null +++ b/dev-embedded/scratchbox-devkit-doctools/scratchbox-devkit-doctools-1.0.9.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-embedded/scratchbox-devkit-doctools/scratchbox-devkit-doctools-1.0.9.ebuild,v 1.1 2009/05/06 19:34:42 tester Exp $ + +SBOX_GROUP="sbox" +RESTRICT="strip binchecks" + +DESCRIPTION="A cross-compilation toolkit designed to make embedded Linux application development easier." +HOMEPAGE="http://www.scratchbox.org/" +SRC_URI="http://scratchbox.org/download/files/sbox-releases/stable/tarball/${P}-i386.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +RDEPEND="=dev-embedded/scratchbox-1.0*" +DEPEND="" + +TARGET_DIR="/opt/scratchbox" + +S=${WORKDIR}/scratchbox + +src_install() { + dodir ${TARGET_DIR} + cp -pRP * "${D}/${TARGET_DIR}" +} |