From: Patrick Ziegler <patrick.ziegler@fh-kl.de>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH v2] usb_modeswitch: bump to version 1.2.6
Date: Tue, 11 Jun 2013 17:22:20 +0200 [thread overview]
Message-ID: <51B740AC.5010406@fh-kl.de> (raw)
Remove 'usb_modeswitch-makefile.patch' because it was merged upstream.
This package contains a dispatcher (wrapper) that can be installed as Tcl script
or as binary without further dependency. If Tcl is selected and the binary
interpreter is installed (BR2_PACKAGE_TCL && !BR2_PACKAGE_TCL_SHLIB_ONLY) the
dispatcher will be installed as Tcl script otherwise as binary.
Signed-off-by: Patrick Ziegler <patrick.ziegler@fh-kl.de>
---
.../usb_modeswitch/usb_modeswitch-makefile.patch | 31 ----------------------
package/usb_modeswitch/usb_modeswitch.mk | 26 +++++++++++-------
2 files changed, 17 insertions(+), 40 deletions(-)
delete mode 100644 package/usb_modeswitch/usb_modeswitch-makefile.patch
diff --git a/package/usb_modeswitch/usb_modeswitch-makefile.patch b/package/usb_modeswitch/usb_modeswitch-makefile.patch
deleted file mode 100644
index b792741..0000000
--- a/package/usb_modeswitch/usb_modeswitch-makefile.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-Removed the -s from the install command. Without this, usb_modeswitch would
-fail to install.
-
-Signed-off-by: J.C. Woltz <jwoltz@gmail.com>
-
-Index: b/Makefile
-===================================================================
---- a/Makefile
-+++ b/Makefile
-@@ -46,7 +46,7 @@
- cd jim && $(MAKE) distclean
-
- install-common: all
-- install -D -s --mode=755 usb_modeswitch $(SBINDIR)/usb_modeswitch
-+ install -D --mode=755 usb_modeswitch $(SBINDIR)/usb_modeswitch
- install -D --mode=755 usb_modeswitch.sh $(UDEVDIR)/usb_modeswitch
- install -D --mode=644 usb_modeswitch.conf $(ETCDIR)/usb_modeswitch.conf
- install -D --mode=644 usb_modeswitch.1 $(MANDIR)/usb_modeswitch.1
-@@ -67,10 +67,10 @@
- install: install-common install-script
-
- install-shared: dispatcher-dynamic install-common
-- install -D -s --mode=755 usb_modeswitch_dispatcher $(SBINDIR)/usb_modeswitch_dispatcher
-+ install -D --mode=755 usb_modeswitch_dispatcher $(SBINDIR)/usb_modeswitch_dispatcher
-
- install-static: dispatcher-static install-common
-- install -D -s --mode=755 usb_modeswitch_dispatcher $(SBINDIR)/usb_modeswitch_dispatcher
-+ install -D --mode=755 usb_modeswitch_dispatcher $(SBINDIR)/usb_modeswitch_dispatcher
-
- uninstall:
- $(RM) $(SBINDIR)/usb_modeswitch
diff --git a/package/usb_modeswitch/usb_modeswitch.mk b/package/usb_modeswitch/usb_modeswitch.mk
index 92ca163..fe54b50 100644
--- a/package/usb_modeswitch/usb_modeswitch.mk
+++ b/package/usb_modeswitch/usb_modeswitch.mk
@@ -4,19 +4,32 @@
#
################################################################################
-USB_MODESWITCH_VERSION = 1.2.5
+USB_MODESWITCH_VERSION = 1.2.6
USB_MODESWITCH_SOURCE = usb-modeswitch-$(USB_MODESWITCH_VERSION).tar.bz2
USB_MODESWITCH_SITE = http://www.draisberghof.de/usb_modeswitch
USB_MODESWITCH_DEPENDENCIES = libusb-compat
USB_MODESWITCH_LICENSE = GPLv2+
USB_MODESWITCH_LICENSE_FILES = COPYING
+USB_MODESWITCH_BUILD_TARGETS = static
+USB_MODESWITCH_INSTALL_TARGETS = install-static
+
+ifeq ($(BR2_PACKAGE_TCL)$(BR2_PACKAGE_TCL_SHLIB_ONLY),y)
+ USB_MODESWITCH_DEPENDENCIES += tcl
+ USB_MODESWITCH_BUILD_TARGETS = script
+ USB_MODESWITCH_INSTALL_TARGETS = install-script
+endif
+
define USB_MODESWITCH_BUILD_CMDS
- $(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
+ $(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \
+ CFLAGS="$(TARGET_CFLAGS) -D_GNU_SOURCE -Wall -I." \
+ -C $(@D) $(USB_MODESWITCH_BUILD_TARGETS)
endef
define USB_MODESWITCH_INSTALL_TARGET_CMDS
- $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) install
+ $(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \
+ DESTDIR=$(TARGET_DIR) \
+ -C $(@D) $(USB_MODESWITCH_INSTALL_TARGETS)
endef
@@ -25,12 +38,7 @@ define USB_MODESWITCH_CLEAN_CMDS
endef
define USB_MODESWITCH_UNINSTALL_CMDS
- $(RM) -f $(TARGET_DIR)/usr/sbin/usb_modeswitch
- $(RM) -f $(TARGET_DIR)/lib/udev/usb_modeswitch
- $(RM) -f $(TARGET_DIR)/etc/usb_modeswitch.setup
- $(RM) -f $(TARGET_DIR)/usr/share/man/man1/usb_modeswitch.1
- $(RM) -rf $(TARGET_DIR)/var/lib/usb_modeswitch
- $(RM) -f $(TARGET_DIR)/usr/sbin/usb_modeswitch_dispatcher
+ $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) uninstall
endef
$(eval $(generic-package))
--
1.8.1.2
--
Dipl.-Inf. (FH) Patrick Ziegler
University Of Applied Sciences
Kaiserslautern
Amerikastrasse 1
D-66482 Zweibruecken
Germany
Phone: +49 631 3724 5526
Mail: patrick.ziegler at fh-kl.de
PGP KeyID 0xB4796B8C
http://www.fh-kl.de
http://www.fh-kl.de/fachbereiche/imst/iuk-knowhow.html
next reply other threads:[~2013-06-11 15:22 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-06-11 15:22 Patrick Ziegler [this message]
2013-06-12 20:50 ` [Buildroot] [PATCH v2] usb_modeswitch: bump to version 1.2.6 Peter Korsgaard
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=51B740AC.5010406@fh-kl.de \
--to=patrick.ziegler@fh-kl.de \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.