summaryrefslogtreecommitdiff
path: root/data/developer-cmds
diff options
context:
space:
mode:
authorJay Freeman <saurik@saurik.com>2008-02-03 12:55:09 +0000
committerJay Freeman <saurik@saurik.com>2008-02-03 12:55:09 +0000
commit93c5e12ddd3bdc6618285dbaed311808af61f71a (patch)
tree1f4fda5f409df8cc92e5a980460c194c6e754c5c /data/developer-cmds
parent67e75c0a6e38d03241c3df50c7787235bd946580 (diff)
Somebody really wanted hexdump.
git-svn-id: http://svn.telesphoreo.org/trunk@47 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'data/developer-cmds')
-rw-r--r--data/developer-cmds/_metadata/description1
-rw-r--r--data/developer-cmds/_metadata/license37
l---------data/developer-cmds/_metadata/maintainer1
-rw-r--r--data/developer-cmds/_metadata/priority1
-rw-r--r--data/developer-cmds/_metadata/section1
-rw-r--r--data/developer-cmds/_metadata/version1
-rw-r--r--data/developer-cmds/developer_cmds-48.tar.gzbin0 -> 161783 bytes
-rw-r--r--data/developer-cmds/make.sh11
8 files changed, 53 insertions, 0 deletions
diff --git a/data/developer-cmds/_metadata/description b/data/developer-cmds/_metadata/description
new file mode 100644
index 000000000..813b89d9b
--- /dev/null
+++ b/data/developer-cmds/_metadata/description
@@ -0,0 +1 @@
+ctags, error, hexdump, rpcgen, unifdef
diff --git a/data/developer-cmds/_metadata/license b/data/developer-cmds/_metadata/license
new file mode 100644
index 000000000..84bc16a32
--- /dev/null
+++ b/data/developer-cmds/_metadata/license
@@ -0,0 +1,37 @@
+/*
+ * Copyright (c) 1987, 1993, 1994, 1995
+ * The Regents of the University of California. All rights reserved.
+ * (c) UNIX System Laboratories, Inc.
+ * All or some portions of this file are derived from material licensed
+ * to the University of California by American Telephone and Telegraph
+ * Co. or Unix System Laboratories, Inc. and are reproduced herein with
+ * the permission of UNIX System Laboratories, Inc.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. All advertising materials mentioning features or use of this software
+ * must display the following acknowledgement:
+ * This product includes software developed by the University of
+ * California, Berkeley and its contributors.
+ * 4. Neither the name of the University nor the names of its contributors
+ * may be used to endorse or promote products derived from this software
+ * without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ */
diff --git a/data/developer-cmds/_metadata/maintainer b/data/developer-cmds/_metadata/maintainer
new file mode 120000
index 000000000..0fa66e077
--- /dev/null
+++ b/data/developer-cmds/_metadata/maintainer
@@ -0,0 +1 @@
+../../../people/saurik \ No newline at end of file
diff --git a/data/developer-cmds/_metadata/priority b/data/developer-cmds/_metadata/priority
new file mode 100644
index 000000000..ea5b3d7ee
--- /dev/null
+++ b/data/developer-cmds/_metadata/priority
@@ -0,0 +1 @@
+important
diff --git a/data/developer-cmds/_metadata/section b/data/developer-cmds/_metadata/section
new file mode 100644
index 000000000..e0eb96881
--- /dev/null
+++ b/data/developer-cmds/_metadata/section
@@ -0,0 +1 @@
+Development
diff --git a/data/developer-cmds/_metadata/version b/data/developer-cmds/_metadata/version
new file mode 100644
index 000000000..21e72e8ac
--- /dev/null
+++ b/data/developer-cmds/_metadata/version
@@ -0,0 +1 @@
+48
diff --git a/data/developer-cmds/developer_cmds-48.tar.gz b/data/developer-cmds/developer_cmds-48.tar.gz
new file mode 100644
index 000000000..24ffa686e
--- /dev/null
+++ b/data/developer-cmds/developer_cmds-48.tar.gz
Binary files differ
diff --git a/data/developer-cmds/make.sh b/data/developer-cmds/make.sh
new file mode 100644
index 000000000..e797a1702
--- /dev/null
+++ b/data/developer-cmds/make.sh
@@ -0,0 +1,11 @@
+pkg:extract
+cd *
+pkg: mkdir -p /usr/bin
+
+arm-apple-darwin-gcc -o hexdump/hexdump hexdump/{conv,display,hexdump,hexsyntax,odsyntax,parse}.c -D'__FBSDID(x)='
+pkg: cp -a hexdump/hexdump /usr/bin
+
+for bin in ctags error rpcgen unifdef; do
+ arm-apple-darwin-gcc -o "${bin}/${bin}" "${bin}"/*.c
+ pkg: cp -a "${bin}/${bin}" /usr/bin
+done