standardize, don't install everything - just the binary,
add Id tag to the Makefile. git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2708 3c298f89-4303-0410-b956-a3cf2f4a3e73master
parent
5d8d24472f
commit
f6afdeedf8
|
@ -1,14 +1,17 @@
|
||||||
|
# $Id$
|
||||||
|
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=wccpd
|
PKG_NAME:=wccpd
|
||||||
PKG_VERSION:=0.2
|
PKG_VERSION:=0.2
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=1
|
||||||
PKG_MD5SUM:=5f15c274de61dfb88e0dbfc1ccbe6b67
|
PKG_MD5SUM:=5f15c274de61dfb88e0dbfc1ccbe6b67
|
||||||
|
|
||||||
PKG_SOURCE_URL:=@SF/wccpd
|
PKG_SOURCE_URL:=@SF/wccpd
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
||||||
PKG_CAT:=zcat
|
PKG_CAT:=zcat
|
||||||
|
|
||||||
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||||
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
||||||
|
|
||||||
include $(TOPDIR)/package/rules.mk
|
include $(TOPDIR)/package/rules.mk
|
||||||
|
@ -17,35 +20,46 @@ $(eval $(call PKG_template,WCCPD,$(PKG_NAME),$(PKG_VERSION)-$(PKG_RELEASE),$(ARC
|
||||||
|
|
||||||
$(PKG_BUILD_DIR)/.configured:
|
$(PKG_BUILD_DIR)/.configured:
|
||||||
(cd $(PKG_BUILD_DIR); rm -rf config.cache; \
|
(cd $(PKG_BUILD_DIR); rm -rf config.cache; \
|
||||||
$(TARGET_CONFIGURE_OPTS) \
|
$(TARGET_CONFIGURE_OPTS) \
|
||||||
CFLAGS="$(TARGET_CFLAGS)" \
|
CFLAGS="$(TARGET_CFLAGS)" \
|
||||||
|
CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
|
||||||
|
LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAAGING_DIR)/lib" \
|
||||||
ac_cv_func_setpgrp_void=yes \
|
ac_cv_func_setpgrp_void=yes \
|
||||||
./configure \
|
./configure \
|
||||||
--target=$(GNU_TARGET_NAME) \
|
--target=$(GNU_TARGET_NAME) \
|
||||||
--host=$(GNU_TARGET_NAME) \
|
--host=$(GNU_TARGET_NAME) \
|
||||||
--build=$(GNU_HOST_NAME) \
|
--build=$(GNU_HOST_NAME) \
|
||||||
--prefix=/usr \
|
--program-prefix="" \
|
||||||
--exec-prefix=/usr \
|
--program-suffix="" \
|
||||||
--bindir=/usr/bin \
|
--prefix=/usr \
|
||||||
--sbindir=/usr/sbin \
|
--exec-prefix=/usr \
|
||||||
--libexecdir=/usr/lib \
|
--bindir=/usr/bin \
|
||||||
--sysconfdir=/etc \
|
--datadir=/usr/share \
|
||||||
--datadir=/usr/share \
|
--includedir=/usr/include \
|
||||||
--localstatedir=/var \
|
--infodir=/usr/share/info \
|
||||||
--mandir=/usr/man \
|
--libdir=/usr/lib \
|
||||||
--mandir=/usr/man \
|
--libexecdir=/usr/lib \
|
||||||
--infodir=/usr/info \
|
--localstatedir=/var \
|
||||||
--program-prefix="" \
|
--mandir=/usr/share/man \
|
||||||
--with-gnu-ld \
|
--sbindir=/usr/sbin \
|
||||||
|
--sysconfdir=/etc \
|
||||||
|
$(DISABLE_LARGEFILE) \
|
||||||
|
$(DISABLE_NLS) \
|
||||||
|
--enable-shared \
|
||||||
|
--enable-static \
|
||||||
|
--disable-rpath \
|
||||||
|
--with-gnu-ld \
|
||||||
);
|
);
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
$(PKG_BUILD_DIR)/.built:
|
$(PKG_BUILD_DIR)/.built:
|
||||||
$(MAKE) DESTDIR=$(PKG_INSTALL_DIR) -C $(PKG_BUILD_DIR) install
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||||
|
DESTDIR=$(PKG_INSTALL_DIR) \
|
||||||
|
all install
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
$(IPKG_WCCPD):
|
$(IPKG_WCCPD):
|
||||||
mkdir -p $(IDIR_WCCPD)
|
install -d -m0755 $(IDIR_WCCPD)/usr/sbin
|
||||||
cp -fpR $(PKG_INSTALL_DIR)/* $(IDIR_WCCPD)/
|
cp -fpR $(PKG_INSTALL_DIR)/usr/sbin/wccpd $(IDIR_WCCPD)/usr/sbin/
|
||||||
$(RSTRIP) $(IDIR_WCCPD)
|
$(RSTRIP) $(IDIR_WCCPD)
|
||||||
$(IPKG_BUILD) $(IDIR_WCCPD) $(PACKAGE_DIR)
|
$(IPKG_BUILD) $(IDIR_WCCPD) $(PACKAGE_DIR)
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
Package: wccpd
|
Package: wccpd
|
||||||
Section: net
|
|
||||||
Architecture: mipsel
|
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Description: wccpd is a WCCP (Web Cache Coordination Protocol) server daemon.
|
Section: net
|
||||||
|
Description: A WCCP (Web Cache Coordination Protocol) server daemon
|
||||||
|
|
Loading…
Reference in New Issue