package libbind is missing - FWRT_PACKAGE_LIBBIND - please fix. lg, austriancoder
2007/10/4, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: > Author: sumsum > Date: 2007-10-05 00:03:06 +0200 (Fri, 05 Oct 2007) > New Revision: 3589 > > Modified: > trunk/freewrt/package/Config.in > trunk/freewrt/package/bind/Config.in > trunk/freewrt/package/bind/Makefile > trunk/freewrt/package/bind/ipkg/bind-check.control > trunk/freewrt/package/bind/ipkg/bind-client.control > trunk/freewrt/package/bind/ipkg/bind-dig.control > trunk/freewrt/package/bind/ipkg/bind-dnssec.control > trunk/freewrt/package/bind/ipkg/bind-host.control > trunk/freewrt/package/bind/ipkg/bind-rndc.control > trunk/freewrt/package/bind/ipkg/bind-server.control > trunk/freewrt/package/bind/ipkg/bind-tools.control > Log: > Modified bind9 to support libbind which makes all the executables much > smaller. > New package (ipkg) libbind.ipkg created. > Closes #380 > > > > > Modified: trunk/freewrt/package/Config.in > =================================================================== > --- trunk/freewrt/package/Config.in 2007-10-04 16:24:59 UTC (rev 3588) > +++ trunk/freewrt/package/Config.in 2007-10-04 22:03:06 UTC (rev 3589) > @@ -403,6 +403,7 @@ > source "package/uclibc++/Config.in" > source "package/ustl/Config.in" > source "package/zlib/Config.in" > +source "package/bind/Config.in.libbind" > endmenu > > menu "Multimedia" > > Modified: trunk/freewrt/package/bind/Config.in > =================================================================== > --- trunk/freewrt/package/bind/Config.in 2007-10-04 16:24:59 UTC (rev > 3588) > +++ trunk/freewrt/package/bind/Config.in 2007-10-04 22:03:06 UTC (rev > 3589) > @@ -14,6 +14,7 @@ > default n > depends FWRT_DUMMY_BIND > select FWRT_COMPILE_BIND > + select FWRT_PACKAGE_LIBBIND > help > dig, host, nsupdate, dnssec-keygen, dnssec-signzone, > named-checkconf, > named-checkzone, rndc, rndc-confgen > @@ -28,6 +29,7 @@ > default n > depends FWRT_DUMMY_BIND > select FWRT_COMPILE_BIND > + select FWRT_PACKAGE_LIBBIND > help > rndc, rndc-confgen > > @@ -41,6 +43,7 @@ > default n > depends FWRT_DUMMY_BIND > select FWRT_COMPILE_BIND > + select FWRT_PACKAGE_LIBBIND > help > named-checkconf, named-checkzone > > @@ -54,6 +57,7 @@ > default n > depends FWRT_DUMMY_BIND > select FWRT_COMPILE_BIND > + select FWRT_PACKAGE_LIBBIND > help > dnssec-keygen, dnssec-signzone > > @@ -67,6 +71,7 @@ > default n > depends FWRT_DUMMY_BIND > select FWRT_COMPILE_BIND > + select FWRT_PACKAGE_LIBBIND > help > host > > @@ -80,6 +85,7 @@ > default n > depends FWRT_DUMMY_BIND > select FWRT_COMPILE_BIND > + select FWRT_PACKAGE_LIBBIND > help > dig > > @@ -94,6 +100,7 @@ > default n > depends FWRT_DUMMY_BIND > select FWRT_COMPILE_BIND > + select FWRT_PACKAGE_LIBBIND > help > A DNS dynamic client (nsupdate) > > @@ -107,6 +114,7 @@ > default n > depends FWRT_DUMMY_BIND > select FWRT_COMPILE_BIND > + select FWRT_PACKAGE_LIBBIND > help > A DNS server (named) > > > Modified: trunk/freewrt/package/bind/Makefile > =================================================================== > --- trunk/freewrt/package/bind/Makefile 2007-10-04 16:24:59 UTC (rev 3588) > +++ trunk/freewrt/package/bind/Makefile 2007-10-04 22:03:06 UTC (rev 3589) > @@ -8,7 +8,7 @@ > > PKG_NAME:= bind > PKG_VERSION:= 9.4.1 > -PKG_RELEASE:= 3 > +PKG_RELEASE:= 4 > PKG_MD5SUM:= 09b54d35036cb0423b2e618f21766285 > MASTER_SITES:= ftp://ftp.isc.org/isc/bind9/${PKG_VERSION}/ > > @@ -16,6 +16,7 @@ > > $(eval $(call > PKG_template,BIND_SERVER,bind-server,${PKG_VERSION}-${PKG_RELEASE},${ARCH})) > $(eval $(call > PKG_template,BIND_CLIENT,bind-client,${PKG_VERSION}-${PKG_RELEASE},${ARCH})) > +$(eval $(call > PKG_template,LIBBIND,libbind,${PKG_VERSION}-${PKG_RELEASE},${ARCH})) > $(eval $(call > PKG_template,BIND_TOOLS,bind-tools,${PKG_VERSION}-${PKG_RELEASE},${ARCH})) > $(eval $(call > PKG_template,BIND_RNDC,bind-rndc,${PKG_VERSION}-${PKG_RELEASE},${ARCH})) > $(eval $(call > PKG_template,BIND_CHECK,bind-check,${PKG_VERSION}-${PKG_RELEASE},${ARCH})) > @@ -27,7 +28,8 @@ > CONFIGURE_ENV+= BUILD_CC="${TARGET_CC}" > CONFIGURE_ARGS+= --with-randomdev=/dev/urandom \ > --disable-threads \ > - --with-openssl=${STAGING_DIR}/usr/ > + --with-openssl=${STAGING_DIR}/usr/ \ > + --with-libtool > BUILD_STYLE= auto > INSTALL_STYLE= auto > > @@ -79,5 +81,13 @@ > # dig > ${INSTALL_DIR} ${IDIR_BIND_DIG}/usr/bin > ${INSTALL_BIN} ${WRKINST}/usr/bin/dig ${IDIR_BIND_DIG}/usr/bin/ > + # bind lib > + ${INSTALL_DIR} ${IDIR_LIBBIND}/usr/lib > + ${INSTALL_BIN} ${WRKINST}/usr/lib/libbind9.so.30 > ${IDIR_LIBBIND}/usr/lib/ > + ${INSTALL_BIN} ${WRKINST}/usr/lib/libdns.so.32 > ${IDIR_LIBBIND}/usr/lib/ > + ${INSTALL_BIN} ${WRKINST}/usr/lib/libisccc.so.30 > ${IDIR_LIBBIND}/usr/lib/ > + ${INSTALL_BIN} ${WRKINST}/usr/lib/libisccfg.so.30 > ${IDIR_LIBBIND}/usr/lib/ > + ${INSTALL_BIN} ${WRKINST}/usr/lib/libisc.so.32 > ${IDIR_LIBBIND}/usr/lib/ > + ${INSTALL_BIN} ${WRKINST}/usr/lib/liblwres.so.30 > ${IDIR_LIBBIND}/usr/lib/ > > include ${TOPDIR}/mk/pkg-bottom.mk > > Modified: trunk/freewrt/package/bind/ipkg/bind-check.control > =================================================================== > --- trunk/freewrt/package/bind/ipkg/bind-check.control 2007-10-04 16:24:59 > UTC (rev 3588) > +++ trunk/freewrt/package/bind/ipkg/bind-check.control 2007-10-04 22:03:06 > UTC (rev 3589) > @@ -2,4 +2,4 @@ > Priority: optional > Section: net > Description: named-checkconf & named-checkzone utilities > -Depends: libopenssl > +Depends: libopenssl libbind > > Modified: trunk/freewrt/package/bind/ipkg/bind-client.control > =================================================================== > --- trunk/freewrt/package/bind/ipkg/bind-client.control 2007-10-04 16:24:59 > UTC (rev 3588) > +++ trunk/freewrt/package/bind/ipkg/bind-client.control 2007-10-04 22:03:06 > UTC (rev 3589) > @@ -2,4 +2,4 @@ > Priority: optional > Section: net > Description: dynamic dns client > -Depends: libopenssl > +Depends: libopenssl libbind > > Modified: trunk/freewrt/package/bind/ipkg/bind-dig.control > =================================================================== > --- trunk/freewrt/package/bind/ipkg/bind-dig.control 2007-10-04 16:24:59 > UTC (rev 3588) > +++ trunk/freewrt/package/bind/ipkg/bind-dig.control 2007-10-04 22:03:06 > UTC (rev 3589) > @@ -2,4 +2,4 @@ > Priority: optional > Section: net > Description: dig utility > -Depends: libopenssl > +Depends: libopenssl libbind > > Modified: trunk/freewrt/package/bind/ipkg/bind-dnssec.control > =================================================================== > --- trunk/freewrt/package/bind/ipkg/bind-dnssec.control 2007-10-04 16:24:59 > UTC (rev 3588) > +++ trunk/freewrt/package/bind/ipkg/bind-dnssec.control 2007-10-04 22:03:06 > UTC (rev 3589) > @@ -2,4 +2,4 @@ > Priority: optional > Section: net > Description: dnssec-keygen & dnssec-signzone utilities > -Depends: libopenssl > +Depends: libopenssl libbind > > Modified: trunk/freewrt/package/bind/ipkg/bind-host.control > =================================================================== > --- trunk/freewrt/package/bind/ipkg/bind-host.control 2007-10-04 16:24:59 > UTC (rev 3588) > +++ trunk/freewrt/package/bind/ipkg/bind-host.control 2007-10-04 22:03:06 > UTC (rev 3589) > @@ -2,4 +2,5 @@ > Priority: optional > Section: net > Description: host utility > -Depends: libopenssl > +Depends: libopenssl libbind > + > > Modified: trunk/freewrt/package/bind/ipkg/bind-rndc.control > =================================================================== > --- trunk/freewrt/package/bind/ipkg/bind-rndc.control 2007-10-04 16:24:59 > UTC (rev 3588) > +++ trunk/freewrt/package/bind/ipkg/bind-rndc.control 2007-10-04 22:03:06 > UTC (rev 3589) > @@ -2,4 +2,4 @@ > Priority: optional > Section: net > Description: rndc & rndc-confgen utilities > -Depends: libopenssl > +Depends: libopenssl libbind > > Modified: trunk/freewrt/package/bind/ipkg/bind-server.control > =================================================================== > --- trunk/freewrt/package/bind/ipkg/bind-server.control 2007-10-04 16:24:59 > UTC (rev 3588) > +++ trunk/freewrt/package/bind/ipkg/bind-server.control 2007-10-04 22:03:06 > UTC (rev 3589) > @@ -2,5 +2,5 @@ > Priority: optional > Section: net > Description: popular dns server > -Depends: libopenssl > +Depends: libopenssl libbind > Conflicts: dnsmasq > > Modified: trunk/freewrt/package/bind/ipkg/bind-tools.control > =================================================================== > --- trunk/freewrt/package/bind/ipkg/bind-tools.control 2007-10-04 16:24:59 > UTC (rev 3588) > +++ trunk/freewrt/package/bind/ipkg/bind-tools.control 2007-10-04 22:03:06 > UTC (rev 3589) > @@ -2,4 +2,4 @@ > Priority: optional > Section: net > Description: dig, host, nslookup, nsupdate, dnssec-keygen, dnssec-signzone, > named-checkconf, named-checkzone, rndc, rndc-confgen > -Depends: libopenssl > +Depends: libopenssl libbind > > _______________________________________________ > freewrt-commits mailing list > [EMAIL PROTECTED] > https://www.freewrt.org/lists/listinfo/freewrt-commits > _______________________________________________ freewrt-developers mailing list [email protected] https://www.freewrt.org/lists/listinfo/freewrt-developers
