summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Kapusta <ayoy@gentoo.org>2009-11-19 17:43:58 +0000
committerDominik Kapusta <ayoy@gentoo.org>2009-11-19 17:43:58 +0000
commit31492e3c6e8817d0ca995dca367f63f94f3e09ca (patch)
treeb126ba172093f4cefb4eea2c92f4e2f936ca151c /dev-embedded
parentRemove masked pkgs from http://tinderbox.dev.gentoo.org/misc/rindex/kde-base/... (diff)
downloadgentoo-2-31492e3c6e8817d0ca995dca367f63f94f3e09ca.tar.gz
gentoo-2-31492e3c6e8817d0ca995dca367f63f94f3e09ca.tar.bz2
gentoo-2-31492e3c6e8817d0ca995dca367f63f94f3e09ca.zip
Initial commit of git devkit for scratchbox
(Portage version: 2.2_rc49/cvs/Linux x86_64)
Diffstat (limited to 'dev-embedded')
-rw-r--r--dev-embedded/scratchbox-devkit-git/ChangeLog10
-rw-r--r--dev-embedded/scratchbox-devkit-git/metadata.xml8
-rw-r--r--dev-embedded/scratchbox-devkit-git/scratchbox-devkit-git-1.0.1.ebuild28
3 files changed, 46 insertions, 0 deletions
diff --git a/dev-embedded/scratchbox-devkit-git/ChangeLog b/dev-embedded/scratchbox-devkit-git/ChangeLog
new file mode 100644
index 000000000000..993d49bb8103
--- /dev/null
+++ b/dev-embedded/scratchbox-devkit-git/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for dev-embedded/scratchbox-devkit-git
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-embedded/scratchbox-devkit-git/ChangeLog,v 1.1 2009/11/19 17:43:58 ayoy Exp $
+
+*scratchbox-devkit-git-1.0.1 (19 Nov 2009)
+
+ 19 Nov 2009; Dominik Kapusta <ayoy@gentoo.org>
+ +scratchbox-devkit-git-1.0.1.ebuild, +metadata.xml:
+ Initial commit of git devkit for scratchbox
+
diff --git a/dev-embedded/scratchbox-devkit-git/metadata.xml b/dev-embedded/scratchbox-devkit-git/metadata.xml
new file mode 100644
index 000000000000..ff9dea537278
--- /dev/null
+++ b/dev-embedded/scratchbox-devkit-git/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>ayoy@gentoo.org</email>
+</maintainer>
+</pkgmetadata>
diff --git a/dev-embedded/scratchbox-devkit-git/scratchbox-devkit-git-1.0.1.ebuild b/dev-embedded/scratchbox-devkit-git/scratchbox-devkit-git-1.0.1.ebuild
new file mode 100644
index 000000000000..7ac65ed5b2a3
--- /dev/null
+++ b/dev-embedded/scratchbox-devkit-git/scratchbox-devkit-git-1.0.1.ebuild
@@ -0,0 +1,28 @@
+# 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-git/scratchbox-devkit-git-1.0.1.ebuild,v 1.1 2009/11/19 17:43:58 ayoy 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"
+
+QA_TEXTRELS="opt/scratchbox"
+
+S=${WORKDIR}/scratchbox
+
+src_install() {
+ dodir ${TARGET_DIR}
+ cp -pRP * "${D}/${TARGET_DIR}"
+}