Changeset 6d9a6f6 in freewrt
- Timestamp:
- Jun 26, 2007, 2:40:44 PM (18 years ago)
- Children:
- 8bedfe5
- Parents:
- 737fca2a
- Location:
- package
- Files:
-
- 7 added
- 1 deleted
- 4 edited
-
Depends.mk (modified) (1 diff)
-
portmap/Config.in (modified) (1 diff)
-
portmap/Makefile (modified) (2 diffs)
-
portmap/ipkg/portmap.control (modified) (1 diff)
-
portmap/patches/debian-subset.patch (deleted)
-
portmap/patches/patch-Makefile (added)
-
portmap/patches/patch-daemon_c (added)
-
portmap/patches/patch-from_local_c (added)
-
portmap/patches/patch-pmap_check_c (added)
-
portmap/patches/patch-pmap_dump_c (added)
-
portmap/patches/patch-pmap_set_c (added)
-
portmap/patches/patch-portmap_c (added)
Legend:
- Unmodified
- Added
- Removed
-
package/Depends.mk
r737fca2a r6d9a6f6 100 100 palantir-compile: jpeg-compile 101 101 peercast-compile: uclibc++-compile 102 ifneq ($(strip ${FWRT_PACKAGE_PORTMAP_LIBWRAP}),) 102 103 portmap-compile: tcp_wrappers-compile 104 endif 103 105 postgresql-compile: zlib-compile 104 106 privoxy-compile: pcre-compile -
package/portmap/Config.in
r737fca2a r6d9a6f6 3 3 tristate 4 4 default n 5 select FWRT_PACKAGE_LIBWRAP6 5 help 7 6 Portmap is a server that converts RPC (Remote Procedure Call) program 8 7 numbers into DARPA protocol port numbers. It must be running in order 9 8 to make RPC calls. Services that use RPC include NFS and NIS. 9 10 config FWRT_PACKAGE_PORTMAP_LIBWRAP 11 bool " Use tcp_wrappers" 12 default n 13 select FWRT_PACKAGE_LIBWRAP -
package/portmap/Makefile
r737fca2a r6d9a6f6 19 19 $(eval $(call PKG_template,PORTMAP,portmap,${PKG_VERSION}-${PKG_RELEASE},${ARCH})) 20 20 21 TCPPFLAGS+= -DHOSTS_ACCESS -DFACILITY=LOG_DAEMON -DIGNORE_SIGCHLD 21 ifneq ($(strip ${FWRT_PACKAGE_PORTMAP_LIBWRAP}),) 22 TCPPFLAGS+= -DHOSTS_ACCESS -DUSE_LIBWRAP 23 MAKE_FLAGS+= WRAP_LIB='-L${STAGING_DIR}/usr/lib -lwrap' 24 else 25 MAKE_FLAGS+= WRAP_LIB= 26 endif 27 TCPPFLAGS+= -DFACILITY=LOG_DAEMON -DIGNORE_SIGCHLD 22 28 BUILD_STYLE:= auto 23 29 MAKE_FLAGS+= ${TARGET_CONFIGURE_OPTS} \ 24 CFLAGS='${TCFLAGS} ${TCPPFLAGS}' \ 25 WRAP_LIB="-L${STAGING_DIR}/usr/lib -lwrap" \ 30 CFLAGS='${TCFLAGS} ${TCPPFLAGS}' 26 31 27 32 do-install: … … 31 36 ${IDIR_PORTMAP}/etc/init.d/portmap 32 37 ${INSTALL_BIN} ${WRKBUILD}/portmap ${IDIR_PORTMAP}/usr/sbin/ 38 ifneq ($(strip ${FWRT_PACKAGE_PORTMAP_LIBWRAP}),) 39 echo 'Depends: libwrap' >>${IDIR_PORTMAP}/CONTROL/control 40 endif 33 41 34 42 include ${TOPDIR}/mk/pkg-bottom.mk -
package/portmap/ipkg/portmap.control
r737fca2a r6d9a6f6 2 2 Priority: optional 3 3 Section: net 4 Depends: libwrap5 4 Description: The RPC Portmapper
Note:
See TracChangeset
for help on using the changeset viewer.
