diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-05-30 17:09:21 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-05-30 17:09:21 +0000 |
commit | bd6b6a84e79481192a5f0ee150df2a12656746d4 (patch) | |
tree | 840ed863b031714b1fb2394fe276a92ef99fcac6 /package | |
parent | 9140bea028fa72b8faec8cbd7bd238359889b217 (diff) | |
download | upstream-bd6b6a84e79481192a5f0ee150df2a12656746d4.tar.gz upstream-bd6b6a84e79481192a5f0ee150df2a12656746d4.tar.bz2 upstream-bd6b6a84e79481192a5f0ee150df2a12656746d4.zip |
add proper build depends
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3841 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r-- | package/Makefile | 2 | ||||
-rw-r--r-- | package/ppp/Makefile | 2 | ||||
-rw-r--r-- | package/rules.mk | 11 |
3 files changed, 5 insertions, 10 deletions
diff --git a/package/Makefile b/package/Makefile index af746715ba..0dc2670174 100644 --- a/package/Makefile +++ b/package/Makefile @@ -20,7 +20,7 @@ $(STAMP_DIR) $(TARGET_DIR): $(MAKE) -C $(patsubst %-clean,%,$@) clean -.pkgdeps: $(TOPDIR)/.pkginfo FORCE +.pkgdeps: $(TOPDIR)/.pkginfo @$(TOPDIR)/scripts/gen_deps.pl < $< > $@ || rm -f $@ all: compile diff --git a/package/ppp/Makefile b/package/ppp/Makefile index 1542a8b5d7..0139eb051f 100644 --- a/package/ppp/Makefile +++ b/package/ppp/Makefile @@ -5,6 +5,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ppp PKG_VERSION:=2.4.3 PKG_RELEASE:=7 +PKG_BUILDDEP:=libpcap PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz @@ -19,7 +20,6 @@ include $(TOPDIR)/package/rules.mk define Package/ppp SECTION:=net CATEGORY:=Network - NEEDS:=libpcap MENU:=1 DEFAULT:=y TITLE:=PPP daemon diff --git a/package/rules.mk b/package/rules.mk index 9b551728b3..55066610d0 100644 --- a/package/rules.mk +++ b/package/rules.mk @@ -49,7 +49,6 @@ define Package/Default SECTION:=opt CATEGORY:=Extra packages DEPENDS:= - NEEDS:= MAINTAINER:=OpenWrt Developers Team <openwrt-devel@openwrt.org> SOURCE:=$(patsubst $(TOPDIR)/%,%,${shell pwd}) VERSION:=$(PKG_VERSION)-$(PKG_RELEASE) @@ -92,7 +91,6 @@ define BuildPackage endif IDEPEND_$(1):=$$(strip $$(DEPENDS)) - INEED_$(1):=$$(strip $$(NEEDS)) DUMPINFO += \ echo "Package: $(1)"; @@ -110,7 +108,7 @@ define BuildPackage DUMPINFO += \ echo "Version: $(VERSION)"; \ echo "Depends: $$(IDEPEND_$(1))"; \ - echo "Needs: $$(INEED_$(1))"; \ + echo "Build-Depends: $(PKG_BUILDDEP)"; \ echo "Category: $(CATEGORY)"; \ echo "Title: $(TITLE)"; \ echo "Description: $(DESCRIPTION)" | sed -e 's,\\,\n,g'; @@ -134,8 +132,7 @@ define BuildPackage mkdir -p $$(IDIR_$(1))/CONTROL echo "Package: $(1)" > $$(IDIR_$(1))/CONTROL/control echo "Version: $(VERSION)" >> $$(IDIR_$(1))/CONTROL/control - #FIXME: there should be a better way to do it - D="$$(IDEPEND_$(1))"; D="$$$${D}$$$${D:+, }$$(INEED_$(1))"; echo "Depends: $$$${D}" >> $$(IDIR_$(1))/CONTROL/control + echo "Depends: $$(IDEPEND_$(1))" >> $$(IDIR_$(1))/CONTROL/control echo "Source: $(SOURCE)" >> $$(IDIR_$(1))/CONTROL/control echo "Section: $(SECTION)" >> $$(IDIR_$(1))/CONTROL/control echo "Priority: $(PRIORITY)" >> $$(IDIR_$(1))/CONTROL/control @@ -156,8 +153,6 @@ define BuildPackage $$(INFO_$(1)): $$(IPKG_$(1)) $(IPKG) install $$(IPKG_$(1)) - compile-targets: $(PKG_BUILD_DIR)/.dev-installed - $(1)-clean: rm -f $(PACKAGE_DIR)/$(1)_* @@ -259,7 +254,7 @@ else prepare: $(PKG_BUILD_DIR)/.prepared configure: $(PKG_BUILD_DIR)/.configured - compile-targets: + compile-targets: $(PKG_BUILD_DIR)/.dev-installed compile: compile-targets install-targets: |