Changeset b917538 in freewrt for package/liblzo/Makefile


Ignore:
Timestamp:
Oct 1, 2006, 10:31:51 AM (19 years ago)
Author:
Waldemar Brodkorb <wbx@…>
Branches:
freewrt_1_0, freewrt_2_0
Children:
edaeca5
Parents:
2f09cbe
Message:
  • sync with changes in trunk
  • lzo2 instead of lzo
  • fix tinc/vtun build
  • security update for openssh/openssl
  • update for iproute2,openvpn,openntpd, iptables and ipp, openswan
  • disable ipv6 in busybox, autoselect this feature for all ipv6 related packages
  • add better startup scripts for openssh and openntpd

git-svn-id: svn://www.freewrt.org/branches/freewrt_1_0@800 afb5a338-a214-0410-bd46-81f09a774fd1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • package/liblzo/Makefile

    r2f09cbe rb917538  
    88
    99PKG_NAME:=              lzo
    10 PKG_VERSION:=           1.08
     10PKG_VERSION:=           2.02
    1111PKG_RELEASE:=           1
    12 PKG_MD5SUM:=            ab94d3da364c7cbd5b78d76f1875b0f6
     12PKG_MD5SUM:=            6760e5819f4238328709bf93bf10071c
    1313
    1414PKG_SOURCE_URL:=        http://www.oberhumer.com/opensource/lzo/download/
    15 PKG_SOURCE:=            $(PKG_NAME)-$(PKG_VERSION).tar.gz
    1615
    1716include $(TOPDIR)/mk/package.mk
     
    6160$(IPKG_LIBLZO):
    6261        install -d -m0755 $(IDIR_LIBLZO)/usr/lib
    63         $(CP) $(WRKINST)/usr/lib/liblzo.so.* $(IDIR_LIBLZO)/usr/lib
     62        $(CP) $(WRKINST)/usr/lib/liblzo2.so.* $(IDIR_LIBLZO)/usr/lib
    6463        $(RSTRIP) $(IDIR_LIBLZO)
    6564        $(IPKG_BUILD) $(IDIR_LIBLZO) $(PACKAGE_DIR)
    6665
    67 $(STAGING_DIR)/usr/lib/liblzo.so: $(WRKBUILD)/.built
     66$(STAGING_DIR)/usr/lib/liblzo2.so: $(WRKBUILD)/.built
    6867        mkdir -p $(STAGING_DIR)/usr/include
    69         $(CP) $(WRKINST)/usr/include/lzo*.h $(STAGING_DIR)/usr/include/
     68        $(CP) $(WRKINST)/usr/include/lzo $(STAGING_DIR)/usr/include/
    7069        mkdir -p $(STAGING_DIR)/usr/lib
    71         $(CP) $(WRKINST)/usr/lib/liblzo.{a,so*} $(STAGING_DIR)/usr/lib/
    72         touch $(STAGING_DIR)/usr/lib/liblzo.so
     70        $(CP) $(WRKINST)/usr/lib/liblzo2.{a,so*} $(STAGING_DIR)/usr/lib/
     71        touch $@
    7372
    74 install-dev: $(STAGING_DIR)/usr/lib/liblzo.so
     73install-dev: $(STAGING_DIR)/usr/lib/liblzo2.so
    7574
    7675uninstall-dev:
    7776        rm -rf \
    78           $(STAGING_DIR)/usr/include/lzo*.h \
    79           $(STAGING_DIR)/usr/lib/liblzo.{a,so*} \
     77          $(STAGING_DIR)/usr/include/lzo \
     78          $(STAGING_DIR)/usr/lib/liblzo2.{a,so*} \
    8079
    8180compile-targets: install-dev
Note: See TracChangeset for help on using the changeset viewer.