From 660b1b4abfe59a0d01b2e29d79ef885c85867350 Mon Sep 17 00:00:00 2001 From: Nicolas Thill Date: Sat, 23 Sep 2006 14:00:36 +0000 Subject: [PATCH] standardize Makefile, change section from base to utils, remove dup description SVN-Revision: 4830 --- openwrt/package/pcmcia-cs/Makefile | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/openwrt/package/pcmcia-cs/Makefile b/openwrt/package/pcmcia-cs/Makefile index fcdf71cd76..5cd77c833a 100644 --- a/openwrt/package/pcmcia-cs/Makefile +++ b/openwrt/package/pcmcia-cs/Makefile @@ -23,11 +23,11 @@ PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install include $(INCLUDE_DIR)/package.mk define Package/pcmcia-cs -SECTION:=base -DEPENDS:=@PCMCIA_SUPPORT -TITLE:=PCMCIA/Cardbus management utilities -DESCRIPTION:=PCMCIA/Cardbus management utilities -URL:=http://pcmcia-cs.sourceforge.net/ + SECTION:=utils + CATEGORY:=Utilities + DEPENDS:=@LINUX_2_4&&PCMCIA_SUPPORT + TITLE:=PCMCIA/Cardbus management utilities + URL:=http://pcmcia-cs.sourceforge.net/ endef define Build/Configure @@ -45,18 +45,22 @@ define Build/Configure --nopnp \ --notrust \ --nox11 \ - --sysv --rcdir="/etc" \ + --rcdir="/etc" \ + --sysv \ ) endef define Build/Compile - $(call Build/Compile/Default,CFLAGS="$(TARGET_CFLAGS)" all install) + $(call Build/Compile/Default, \ + CFLAGS="$(TARGET_CFLAGS)" \ + all install \ + ) endef define Package/pcmcia-cs/install - install -m0755 -d $(1)/etc + install -d -m0755 $(1)/etc $(CP) $(PKG_INSTALL_DIR)/etc/pcmcia $(1)/etc/ - install -m0755 -d $(1)/usr/sbin + install -d -m0755 $(1)/usr/sbin $(CP) $(PKG_INSTALL_DIR)/sbin/cardctl $(1)/usr/sbin/ $(CP) $(PKG_INSTALL_DIR)/sbin/cardmgr $(1)/usr/sbin/ endef -- 2.30.2