summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorblogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-08-05 00:30:41 +0000
committerblogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-08-05 00:30:41 +0000
commita5179e93dd7a10fe099bda1b7d52a6b03309c10e (patch)
tree702dcc6443bd329b90d62cbaaeec4fa847416e51 /package
parent5d739a43e714fc3ec49ff85034a7ecb2a8929958 (diff)
move foxboard utils to packages feed
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12111 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r--package/foxboard-utils/Makefile48
1 files changed, 0 insertions, 48 deletions
diff --git a/package/foxboard-utils/Makefile b/package/foxboard-utils/Makefile
deleted file mode 100644
index 6cb997de8..000000000
--- a/package/foxboard-utils/Makefile
+++ /dev/null
@@ -1,48 +0,0 @@
-#
-# Copyright (C) 2006 OpenWrt.org
-#
-# This is free software, licensed under the GNU General Public License v2.
-# See /LICENSE for more information.
-#
-# $Id: Makefile 7006 2007-04-19 12:06:39Z kaloz $
-
-include $(TOPDIR)/rules.mk
-
-PKG_NAME:=foxboard-utils
-PKG_VERSION:=1
-PKG_RELEASE:=1
-
-PKG_SOURCE:=foxboard-utils.tar.bz2
-PKG_SOURCE_URL:=http://www.acmesystems.it/download/owrt
-PKG_MD5SUM:=
-
-PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
-
-include $(INCLUDE_DIR)/package.mk
-
-define Package/foxboard-utils
- SECTION:=utils
- CATEGORY:=Base system
- TITLE:=Foxboard base tools
- URL:=http://www.acmesystems.it
- DEPENDS:=@TARGET_etrax
-endef
-
-define Package/foxboard-utils/description
- This package contains a collection of tools for configuring the foxboard
- gpio pins/leds.
-endef
-
-define Build/Compile
- $(MAKE) -C $(PKG_BUILD_DIR) CFLAGS="$(TARGET_CFLAGS)" CC="$(TARGET_CC)"
- $(MAKE) -C $(PKG_BUILD_DIR) PREFIX="$(PKG_INSTALL_DIR)" install
-endef
-
-define Package/foxboard-utils/install
- $(INSTALL_DIR) $(1)/
- $(CP) $(PKG_INSTALL_DIR)/* $(1)
- mkdir -p $(1)/www/cgi-bin
- cd $(1)/www/cgi-bin; ln -s ../../bin/editcgi.cgi .
-endef
-
-$(eval $(call BuildPackage,foxboard-utils))