diff options
author | Nicolas Thill <nico@openwrt.org> | 2006-09-23 13:47:09 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2006-09-23 13:47:09 +0000 |
commit | 3fadb43f4c7d00584334ed47abd7b83d576e0456 (patch) | |
tree | 25fa672a73033c567b4e7fe034900daf99c68427 /package/ipsec-tools | |
parent | 14a7d3fe26dd70dd8943bbf7c8aa6b8a0ba337e6 (diff) | |
download | master-187ad058-3fadb43f4c7d00584334ed47abd7b83d576e0456.tar.gz master-187ad058-3fadb43f4c7d00584334ed47abd7b83d576e0456.tar.bz2 master-187ad058-3fadb43f4c7d00584334ed47abd7b83d576e0456.zip |
standardize Makefile, change section from base to net
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4824 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/ipsec-tools')
-rw-r--r-- | package/ipsec-tools/Makefile | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/package/ipsec-tools/Makefile b/package/ipsec-tools/Makefile index 3548590395..d45a40e042 100644 --- a/package/ipsec-tools/Makefile +++ b/package/ipsec-tools/Makefile @@ -24,16 +24,15 @@ include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/kernel.mk define Package/ipsec-tools -SECTION:=base -CATEGORY:=Network -DEPENDS:=@LINUX_2_6 +libopenssl -TITLE:=IPsec management tools -DESCRIPTION:=IPsec management tools -URL:=http://ipsec-tools.sourceforge.net/ + SECTION:=net + CATEGORY:=Network + DEPENDS:=@LINUX_2_6 +libopenssl + TITLE:=IPsec management tools + URL:=http://ipsec-tools.sourceforge.net/ endef define Build/Configure - (cd $(PKG_BUILD_DIR); rm -rf config.{cache,status}; \ + (cd $(PKG_BUILD_DIR); rm -f config.cache; \ touch configure.ac; \ touch aclocal.m4; \ touch Makefile.in; \ @@ -78,7 +77,10 @@ define Build/Configure endef define Build/Compile - $(call Build/Compile/Default,DESTDIR="$(PKG_INSTALL_DIR)" all install) + $(call Build/Compile/Default, \ + DESTDIR="$(PKG_INSTALL_DIR)" \ + all install \ + ) endef define Package/ipsec-tools/install |