Changeset 3606
- Timestamp:
- 10/22/07 22:18:05 (4 years ago)
- Files:
-
- trunk/freewrt/Config.in (modified) (1 diff)
- trunk/freewrt/mk/pkg-bottom.mk (modified) (2 diffs)
- trunk/freewrt/mk/vars.mk (modified) (1 diff)
- trunk/freewrt/rules.mk (modified) (1 diff)
- trunk/freewrt/scripts/genhtman.sh (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/freewrt/Config.in
r3424 r3606 185 185 Locale support weighs in about 50K on mips. 186 186 187 # Note: 188 # The software to convert the manual pages to HTML requires you to reproduce 189 # the following advertising clause: 190 # This product includes material provided by Thorsten Glaser. 191 # If your FreeWRT derivate does not do this, you must remove this option. 192 config FWRT_MANPAGES 193 bool "Collect package manpages" 194 default n 195 help 196 This will collect manual pages installed by packages on the 197 build system and produce HTML equivalents of them. 198 187 199 endmenu 188 200 trunk/freewrt/mk/pkg-bottom.mk
r3179 r3606 130 130 DESTDIR='${WRKINST}' ${FAKE_FLAGS} ${INSTALL_TARGET} 131 131 else ifneq ($(filter bsd,${INSTALL_STYLE}),) 132 @mkdir -p ${WRKINST}/{,usr/}{bin,include,lib,sbin }132 @mkdir -p ${WRKINST}/{,usr/}{bin,include,lib,sbin,share/man/{cat,man}{1,2,3,3p,4,5,6,7,8,9}} 133 133 cd ${WRKBUILD} && env ${MAKE_ENV} ${BSDMAKE} -f ${MAKE_FILE} \ 134 134 DESTDIR='${WRKINST}' ${FAKE_FLAGS} ${INSTALL_TARGET} … … 186 186 >>'${STAGING_PARENT}/pkg/${PKG_NAME}'; \ 187 187 done 188 ifeq (${FWRT_MANPAGES},y) 189 @${MKSH} ${TOPDIR}/scripts/genhtman.sh '${WRKINST}' '${WRKDIR}' 190 endif 188 191 touch $@ 189 192 trunk/freewrt/mk/vars.mk
r3552 r3606 24 24 BSDMAKE_FLAGS+= DOCOWN=${BUILD_USER} DOCGRP=${BUILD_GROUP} 25 25 BSDMAKE_FLAGS+= NONBINMODE=0644 BINMODE=0755 CONFGRP=${BUILD_GROUP} 26 BSDMAKE_FLAGS+= MACHINE=${ARCH} MACHINE_ARCH=${ARCH} NOMAN=Yes26 BSDMAKE_FLAGS+= MACHINE=${ARCH} MACHINE_ARCH=${ARCH} OStype=Linux 27 27 BSDMAKE_FLAGS+= RTLD_TYPE=GNU STRIP=: INSTALL_STRIP= OBJECT_FMT=ELF 28 BSDMAKE_FLAGS+= OStype=Linux29 28 BSDMAKE_FLAGS+= HOSTCC='${HOSTCC}' HOSTLDFLAGS='${HOSTLDFLAGS}' \ 30 29 HOSTCFLAGS='${HOSTCPPFLAGS} ${HOSTCFLAGS}' trunk/freewrt/rules.mk
r3420 r3606 61 61 62 62 include $(TOPDIR)/mk/vars.mk 63 64 ifneq (${FWRT_MANPAGES},y) 65 BSDMAKE_FLAGS+= NOMAN=Yes 66 endif 63 67 64 68 TARGET_CC:= $(strip ${TARGET_CC})


