parent
ec4570f354
commit
267fec2d8e
3 changed files with 75 additions and 0 deletions
7
openwrt/package/wakelan/Config.in
Normal file
7
openwrt/package/wakelan/Config.in
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
config BR2_PACKAGE_WAKELAN
|
||||||
|
prompt "wakelan........................... Send a wake-on-lan packet"
|
||||||
|
tristate
|
||||||
|
default m if CONFIG_DEVEL
|
||||||
|
help
|
||||||
|
WakeLan sends a properly formatted UDP packet across the network
|
||||||
|
which will cause a wake-on-lan enabled computer to power on.
|
64
openwrt/package/wakelan/Makefile
Normal file
64
openwrt/package/wakelan/Makefile
Normal file
|
@ -0,0 +1,64 @@
|
||||||
|
# $Id$
|
||||||
|
|
||||||
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
|
PKG_NAME:=wakelan
|
||||||
|
PKG_VERSION:=1.1
|
||||||
|
PKG_RELEASE:=1
|
||||||
|
PKG_MD5SUM:=4a3a31d874967cd6ac761b7d4323e0d5
|
||||||
|
|
||||||
|
PKG_SOURCE_URL:=ftp://metalab.unc.edu/pub/Linux/system/network/misc
|
||||||
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
|
PKG_CAT:=zcat
|
||||||
|
|
||||||
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||||
|
|
||||||
|
include $(TOPDIR)/package/rules.mk
|
||||||
|
|
||||||
|
$(eval $(call PKG_template,WAKELAN,$(PKG_NAME),$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||||
|
|
||||||
|
$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared
|
||||||
|
(cd $(PKG_BUILD_DIR); rm -rf config.cache; \
|
||||||
|
$(TARGET_CONFIGURE_OPTS) \
|
||||||
|
CFLAGS="$(TARGET_CFLAGS)" \
|
||||||
|
CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
|
||||||
|
LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
|
||||||
|
./configure \
|
||||||
|
--target=$(GNU_TARGET_NAME) \
|
||||||
|
--host=$(GNU_TARGET_NAME) \
|
||||||
|
--build=$(GNU_HOST_NAME) \
|
||||||
|
--program-prefix="" \
|
||||||
|
--program-suffix="" \
|
||||||
|
--prefix=/usr \
|
||||||
|
--exec-prefix=/usr \
|
||||||
|
--bindir=/usr/bin \
|
||||||
|
--datadir=/usr/share \
|
||||||
|
--includedir=/usr/include \
|
||||||
|
--infodir=/usr/share/info \
|
||||||
|
--libdir=/usr/lib \
|
||||||
|
--libexecdir=/usr/lib \
|
||||||
|
--localstatedir=/var \
|
||||||
|
--mandir=/usr/share/man \
|
||||||
|
--sbindir=/usr/sbin \
|
||||||
|
--sysconfdir=/etc \
|
||||||
|
$(DISABLE_LARGEFILE) \
|
||||||
|
$(DISABLE_NLS) \
|
||||||
|
--without-libiconv-prefix \
|
||||||
|
--without-libintl-prefix \
|
||||||
|
--disable-nls \
|
||||||
|
);
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
$(PKG_BUILD_DIR)/.built:
|
||||||
|
$(MAKE) -C $(PKG_BUILD_DIR) all
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
$(IPKG_WAKELAN):
|
||||||
|
install -d -m0755 $(IDIR_WAKELAN)/usr/bin
|
||||||
|
install -m0755 $(PKG_BUILD_DIR)/wakelan $(IDIR_WAKELAN)/usr/bin/
|
||||||
|
$(RSTRIP) $(IDIR_WAKELAN)
|
||||||
|
$(IPKG_BUILD) $(IDIR_WAKELAN) $(PACKAGE_DIR)
|
||||||
|
|
||||||
|
mostlyclean:
|
||||||
|
$(MAKE) -C $(PKG_BUILD_DIR) clean
|
||||||
|
rm -f $(PKG_BUILD_DIR)/.built
|
4
openwrt/package/wakelan/ipkg/wakelan.control
Normal file
4
openwrt/package/wakelan/ipkg/wakelan.control
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
Package: wakelan
|
||||||
|
Priority: optional
|
||||||
|
Section: net
|
||||||
|
Description: Send a wake-on-lan packet
|
Loading…
Reference in a new issue