Changeset 2d5b13d in freewrt for package/axtls/Makefile


Ignore:
Timestamp:
Feb 10, 2007, 12:29:54 PM (19 years ago)
Author:
Waldemar Brodkorb <wbx@…>
Branches:
freewrt_1_0, freewrt_2_0
Children:
876c94f
Parents:
704e124
Message:
  • update aircrack to aircrack-ng, requested by Michael Schwab, aircrack-ng is better maintained and allows packet injection with madwifi (a small patch is needed for that)
  • fix axtls package, the package contains a small SSL webserver named axhttpd (20kb size)
    • the webserver is axhttpd, not awhttpd
    • latest upstream version used
    • fixed cross-compile problem
    • fix strange setuid stuff from upstream, if axhttpd is started as root, the process gets first nobody rights and _after_ that he tries to bind a port under 1024 !? Don't know how this could ever work, but a simple html page is displayed correctly, after applying the patch

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • package/axtls/Makefile

    r704e124 r2d5b13d  
    88
    99PKG_NAME:=              axtls
    10 PKG_VERSION:=           0.95
     10PKG_VERSION:=           1.1.0
    1111PKG_RELEASE:=           1
    12 PKG_MD5SUM:=            cd887f379f303dd3ef691d8641307f0e
     12PKG_MD5SUM:=            4a834edc93f46fdca4f9c93ec665376e
    1313
    1414PKG_SOURCE:=            axTLS-$(PKG_VERSION).tar.gz
    15 PKG_SOURCE_URL:=        http://www.leroc.com.au/axTLS/
     15PKG_SOURCE_URL:=        @SF/axtls
    1616
    1717WRKSRC=                 ${WRKDIR}/axTLS
     
    2020
    2121$(eval $(call PKG_template,LIBAXTLS,libaxtls,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
    22 $(eval $(call PKG_template,AWHTTPD,awhttpd,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
     22$(eval $(call PKG_template,AXHTTPD,axhttpd,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
    2323
    2424$(WRKBUILD)/.configured:
     
    2929$(WRKBUILD)/.built:
    3030        $(MAKE) -C $(WRKBUILD) \
    31                 STRIP=''
    3231                CC=$(TARGET_CC) \
    3332                OPT_CFLAGS="$(TARGET_CFLAGS)" OPT_LDFLAGS=""
     
    3635$(IPKG_LIBAXTLS):
    3736        install -d -m0755 $(IDIR_LIBAXTLS)/usr/lib
    38         install -m0755 $(WRKBUILD)/libaxtls.so $(IDIR_LIBAXTLS)/usr/lib/
     37        $(CP) $(WRKBUILD)/_stage/libaxtls.so.* $(IDIR_LIBAXTLS)/usr/lib/
    3938        $(RSTRIP) $(IDIR_LIBAXTLS)
    4039        $(IPKG_BUILD) $(IDIR_LIBAXTLS) $(PACKAGE_DIR)
    4140
    42 $(IPKG_AWHTTPD):
    43         install -d -m0755 $(IDIR_AWHTTPD)/usr/sbin
    44         install -m0755 $(WRKBUILD)/awhttpd $(IDIR_AWHTTPD)/usr/sbin/
    45         $(RSTRIP) $(IDIR_AWHTTPD)
    46         $(IPKG_BUILD) $(IDIR_AWHTTPD) $(PACKAGE_DIR)
     41$(IPKG_AXHTTPD):
     42        install -d -m0755 $(IDIR_AXHTTPD)/usr/sbin
     43        install -m0755 $(WRKBUILD)/_stage/axhttpd $(IDIR_AXHTTPD)/usr/sbin/
     44        $(RSTRIP) $(IDIR_AXHTTPD)
     45        $(IPKG_BUILD) $(IDIR_AXHTTPD) $(PACKAGE_DIR)
Note: See TracChangeset for help on using the changeset viewer.