madwifi: set essid on to avoid association with different ssid (patch from #3937)
[openwrt/svn-archive/archive.git] / package / opkg / Makefile
1 #
2 # Copyright (C) 2006-2008 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6
7 include $(TOPDIR)/rules.mk
8
9 PKG_NAME:=opkg
10 PKG_REV:=4564
11 PKG_VERSION:=$(PKG_REV)
12 PKG_RELEASE:=1
13
14 PKG_SOURCE_PROTO:=svn
15 PKG_SOURCE_VERSION:=$(PKG_REV)
16 PKG_SOURCE_SUBDIR:=opkg-$(PKG_VERSION)
17 PKG_SOURCE_URL:=http://svn.openmoko.org/trunk/src/target/opkg/
18 PKG_SOURCE:=$(PKG_SOURCE_SUBDIR).tar.gz
19 PKG_FIXUP = libtool
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/opkg
23 SECTION:=base
24 CATEGORY:=Base system
25 TITLE:=opkg package management system
26 URL:=http://wiki.openmoko.org/wiki/Opkg
27 endef
28
29 define Package/opkg/description
30 Lightweight package management system
31 opkg is the opkg Package Management System, for handling
32 installation and removal of packages on a system. It can
33 recursively follow dependencies and download all packages
34 necessary to install a particular package.
35
36 opkg knows how to install both .ipk and .deb packages.
37 endef
38
39 define Package/opkg/conffiles
40 /etc/opkg.conf
41 endef
42
43 TARGET_CFLAGS += $(FPIC)
44 EXTRA_CFLAGS+=-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include -I$(STAGING_DIR)/usr/lib
45 EXTRA_LDFLAGS+=-L$(STAGING_DIR)/usr/lib -Wl,-rpath-link,$(STAGING_DIR)/usr/lib
46
47 CONFIGURE_ARGS += \
48 --disable-curl \
49 --disable-gpg \
50
51 define Build/Configure
52 (cd $(PKG_BUILD_DIR); \
53 autoreconf -v --install || exit 1 \
54 );
55 $(call Build/Configure/Default)
56 endef
57
58 define Build/Compile
59 $(MAKE) -C $(PKG_BUILD_DIR) \
60 CC="$(TARGET_CC)" \
61 DESTDIR="$(PKG_INSTALL_DIR)" \
62 all install
63 endef
64
65 define Package/opkg/install
66 $(INSTALL_DIR) $(1)/usr/lib/opkg
67 $(INSTALL_DIR) $(1)/bin
68 $(INSTALL_DIR) $(1)/etc
69 $(INSTALL_DATA) ./files/opkg.conf $(1)/etc/
70 $(SED) 's,$$$$S,$(BOARD),g' -e 's,$$$$A,$(ARCH),g' $(1)/etc/opkg.conf
71 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/opkg-cl $(1)/bin/opkg
72 $(INSTALL_DIR) $(1)/usr/lib
73 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libopkg.so.* $(1)/usr/lib/
74 endef
75
76 define Build/InstallDev
77 mkdir -p $(1)/usr/include
78 $(CP) $(PKG_INSTALL_DIR)/usr/include/libopkg $(1)/usr/include/
79 endef
80
81 $(eval $(call BuildPackage,opkg))