Radix cross Linux

The main Radix cross Linux repository contains the build scripts of packages, which have the most complete and common functionality for desktop machines

383 Commits   1 Branch   1 Tag
Index: 2.9.4/Makefile
===================================================================
--- 2.9.4/Makefile	(nonexistent)
+++ 2.9.4/Makefile	(revision 5)
@@ -0,0 +1,299 @@
+
+COMPONENT_TARGETS  = $(HARDWARE_INTEL_PC32)
+COMPONENT_TARGETS += $(HARDWARE_INTEL_PC64)
+COMPONENT_TARGETS += $(HARDWARE_EBOX_3350DX2)
+COMPONENT_TARGETS += $(HARDWARE_CB1X)
+COMPONENT_TARGETS += $(HARDWARE_CB2X)
+COMPONENT_TARGETS += $(HARDWARE_CB3X)
+COMPONENT_TARGETS += $(HARDWARE_ORANGE_PP2E)
+COMPONENT_TARGETS += $(HARDWARE_NANOPI_NEO)
+COMPONENT_TARGETS += $(HARDWARE_ORANGE_PP)
+COMPONENT_TARGETS += $(HARDWARE_ORANGE_PL2)
+COMPONENT_TARGETS += $(HARDWARE_WECHIP_TX6)
+COMPONENT_TARGETS += $(HARDWARE_FFRK3288)
+COMPONENT_TARGETS += $(HARDWARE_POIN2)
+COMPONENT_TARGETS += $(HARDWARE_RK3328_CC)
+COMPONENT_TARGETS += $(HARDWARE_KHADAS_EDGE)
+COMPONENT_TARGETS += $(HARDWARE_LEEZ_P710)
+COMPONENT_TARGETS += $(HARDWARE_M201)
+COMPONENT_TARGETS += $(HARDWARE_MXV)
+COMPONENT_TARGETS += $(HARDWARE_P201)
+COMPONENT_TARGETS += $(HARDWARE_NEXBOX_A95X)
+COMPONENT_TARGETS += $(HARDWARE_ODROID_C2)
+COMPONENT_TARGETS += $(HARDWARE_P212)
+COMPONENT_TARGETS += $(HARDWARE_KHADAS_VIM)
+COMPONENT_TARGETS += $(HARDWARE_Q201)
+COMPONENT_TARGETS += $(HARDWARE_ENYBOX_X2)
+COMPONENT_TARGETS += $(HARDWARE_KHADAS_VIM2)
+COMPONENT_TARGETS += $(HARDWARE_NIT6Q)
+COMPONENT_TARGETS += $(HARDWARE_OKMX6DL_C)
+COMPONENT_TARGETS += $(HARDWARE_OKMX6Q_C)
+COMPONENT_TARGETS += $(HARDWARE_BONE_BLACK)
+COMPONENT_TARGETS += $(HARDWARE_OMAP5UEVM)
+COMPONENT_TARGETS += $(HARDWARE_DRA7XXEVM)
+COMPONENT_TARGETS += $(HARDWARE_CI20)
+COMPONENT_TARGETS += $(HARDWARE_BAIKAL_T1)
+COMPONENT_TARGETS += $(HARDWARE_BAIKAL_M1)
+COMPONENT_TARGETS += $(HARDWARE_S824L)
+COMPONENT_TARGETS += $(HARDWARE_VESNIN)
+COMPONENT_TARGETS += $(HARDWARE_S824L_LSB)
+COMPONENT_TARGETS += $(HARDWARE_VESNIN_LSB)
+COMPONENT_TARGETS += $(HARDWARE_TL2WK2)
+COMPONENT_TARGETS += $(HARDWARE_TL2SV2)
+COMPONENT_TARGETS += $(HARDWARE_TL2WK2_LSB)
+COMPONENT_TARGETS += $(HARDWARE_TL2SV2_LSB)
+COMPONENT_TARGETS += $(HARDWARE_SIFIVE_U740)
+
+
+NEED_ABS_PATH      = true
+COMPONENT_IS_3PP   = true
+
+
+include ../../../build-system/constants.mk
+
+
+SOURCE_REQUIRES    = sources/packages/a/man-db
+SOURCE_REQUIRES   += sources/packages/a/man2html
+
+REQUIRES           = app/groff/1.22.4
+REQUIRES          += app/less/580
+REQUIRES          += app/gzip/1.10
+REQUIRES          += libs/gdbm/1.23
+REQUIRES          += libs/libpipeline/1.5.4
+REQUIRES          += libs/zlib/1.2.13
+
+# ======= __END_OF_REQUIRES__ =======
+
+
+version            = 2.9.4
+tar_xz_archive     = $(SRC_PACKAGE_PATH)/packages/a/man-db/man-db-$(version).tar.xz
+SRC_ARCHIVE        = $(tar_xz_archive)
+SRC_DIR            = $(TARGET_BUILD_DIR)/man-db-$(version)
+src_dir_name       = man-db-$(version)
+src_done           = $(TARGET_BUILD_DIR)/.source_done
+
+man2html_version    = 20200125
+man2html_archive    = $(SRC_PACKAGE_PATH)/packages/a/man2html/man2html-$(man2html_version).tar.xz
+MAN2HTML_SRC_DIR    = $(TARGET_BUILD_DIR)/man2html-$(man2html_version)
+man2html_src_done   = $(TARGET_BUILD_DIR)/.man2html-source-done
+
+PATCHES = PATCHES
+
+build_dir          = $(TARGET_BUILD_DIR)/build
+build_target       = $(TARGET_BUILD_DIR)/.build_done
+install_target     = $(TARGET_BUILD_DIR)/.install_done
+
+cron_daemon        = $(CURDIR)/cron
+man_config         = $(CURDIR)/man-config
+profile_d          = $(CURDIR)/profile.d
+
+
+####### Targets
+
+PKG_GROUP = app
+
+#
+# *PKG_NAME & *PKG_VERSION shouldn't be a reference to value.
+#
+MANDB_PKG_NAME                = man-db
+MANDB_PKG_VERSION             = 2.9.4
+MANDB_PKG_ARCH                = $(PKGARCH)
+MANDB_PKG_DISTRO_NAME         = $(DISTRO_NAME)
+MANDB_PKG_DISTRO_VERSION      = $(DISTRO_VERSION)
+MANDB_PKG_GROUP               = $(PKG_GROUP)
+###                            |---handy-ruler-------------------------------|
+MANDB_PKG_SHORT_DESCRIPTION   = database-driven manual pager suite
+MANDB_PKG_URL                 = $(BUG_URL)
+MANDB_PKG_LICENSE             = GPLv2
+MANDB_PKG_DESCRIPTION_FILE    = $(TARGET_BUILD_DIR)/$(MANDB_PKG_NAME)-pkg-description
+MANDB_PKG_DESCRIPTION_FILE_IN = $(MANDB_PKG_NAME)-pkg-description.in
+MANDB_PKG_INSTALL_SCRIPT      = $(MANDB_PKG_NAME)-pkg-install.sh
+
+MANDB_PKG        = $(CURDIR)/$(TARGET_BUILD_DIR)/$(MANDB_PKG_NAME)-package
+
+pkg_basename     = $(MANDB_PKG_NAME)-$(MANDB_PKG_VERSION)-$(MANDB_PKG_ARCH)-$(MANDB_PKG_DISTRO_NAME)-$(MANDB_PKG_DISTRO_VERSION)
+
+pkg_archive      = $(TARGET_BUILD_DIR)/$(PKG_GROUP)/$(pkg_basename).$(pkg_arch_suffix)
+pkg_certificate  = $(call cert-name,$(pkg_archive))
+pkg_signature    = $(call sign-name,$(pkg_archive))
+pkg_description  = $(call desc-name,$(pkg_archive))
+products         = $(call pkg-files,$(pkg_archive))
+
+BUILD_TARGETS    = $(build_target)
+BUILD_TARGETS   += $(install_target)
+
+PRODUCT_TARGETS  = $(products)
+
+ROOTFS_TARGETS   = $(pkg_archive)
+
+
+include ../../../build-system/core.mk
+
+
+env_sysroot = DESTDIR=$(MANDB_PKG)
+
+
+extra_configure_switches  = --libdir=/usr/lib$(LIBSUFFIX)
+extra_configure_switches += --docdir=/usr/share/doc/$(src_dir_name)
+extra_configure_switches += --mandir=/usr/share/man
+extra_configure_switches += --disable-dependency-tracking
+extra_configure_switches += --sysconfdir=/etc
+extra_configure_switches += --localstatedir=/var
+extra_configure_switches += --sbindir=/usr/sbin
+extra_configure_switches += --bindir=/usr/bin
+
+extra_configure_switches += --disable-setuid
+extra_configure_switches += --disable-cache-owner
+
+
+CFLAGS += -Wno-unused-macros -Wno-null-dereference -Wstringop-overflow=0 -Wno-stringop-truncation
+
+TARGET_BIN_RPATH = /usr/lib$(LIBSUFFIX)/man-db:/usr/lib$(LIBSUFFIX)
+TARGET_LIB_RPATH = /usr/lib$(LIBSUFFIX)/man-db:/usr/lib$(LIBSUFFIX)
+
+
+####### Dependencies
+
+$(man2html_src_done): $(man2html_archive)
+	@echo "Expanding $(man2html_archive)"
+	@tar xJf $(man2html_archive) -C $(TARGET_BUILD_DIR)
+	@touch $@
+
+$(src_done): $(SRC_ARCHIVE) $(PATCHES_DEP) $(man2html_src_done)
+	$(UNPACK_SRC_ARCHIVE)
+	$(APPLY_PATCHES)
+	@touch $@
+
+$(build_target): $(src_done)
+	@cd $(SRC_DIR) && \
+	  $(BUILD_ENVIRONMENT) ../$(src_dir_name)/configure \
+	  --prefix=/usr               \
+	  --build=$(BUILD)            \
+	  --host=$(TARGET)            \
+	  $(extra_configure_switches)
+	@cd $(SRC_DIR) && $(BUILD_ENVIRONMENT) $(MAKE)
+	@touch $@
+
+$(install_target): $(build_target)
+	@mkdir -p $(MANDB_PKG)
+	@cd $(SRC_DIR) && $(BUILD_ENVIRONMENT) $(MAKE) -j1 install $(env_sysroot)
+	@mkdir -p $(MANDB_PKG)/usr/bin
+	@cat $(MAN2HTML_SRC_DIR)/man2html > $(MANDB_PKG)/usr/bin/man2html
+	@chmod 755 $(MANDB_PKG)/usr/bin/man2html
+	@mkdir -p $(MANDB_PKG)/var/cache/man
+	@chmod 0755 $(MANDB_PKG)/var/cache/man
+	# ======= Remove Systemd stuff =======
+	@rm -rf $(MANDB_PKG)/lib $(MANDB_PKG)/usr/lib/tmpfiles.d
+	# ======= Install /etc/profile.d scripts =======
+	@mkdir -p $(MANDB_PKG)/etc/profile.d
+	@cp -a $(profile_d)/man-db.* $(MANDB_PKG)/etc/profile.d
+	@chmod 0755 $(MANDB_PKG)/etc/profile.d/*
+	@mv $(MANDB_PKG)/etc/profile.d/man-db.{csh,csh.new}
+	@mv $(MANDB_PKG)/etc/profile.d/man-db.{sh,sh.new}
+	# ======= Install cron daemon script =======
+	@mkdir -p $(MANDB_PKG)/etc/cron.daily
+	@cp -a $(cron_daemon)/man-db.cron $(MANDB_PKG)/etc/cron.daily/man-db
+	@chmod 0755 $(MANDB_PKG)/etc/cron.daily/*
+	# ======= Install man-db config =======
+	@cat $(man_config)/man_db.conf > $(MANDB_PKG)/etc/man_db.conf
+	@mv $(MANDB_PKG)/etc/man_db.{conf,conf.new}
+	@chmod 644 $(MANDB_PKG)/etc/man_db.conf.new
+	# ======= Compress man pages =======
+	@if [ -d $(MANDB_PKG)/usr/share/man ]; then \
+	  ( cd $(MANDB_PKG)/usr/share/man ; \
+	    for manpagedir in `find . -type d -name "man*"` ; do \
+	      ( cd $$manpagedir ; \
+	        for eachpage in `find . -type l -maxdepth 1` ; do \
+	          ln -s `readlink $$eachpage`.gz $$eachpage.gz ; \
+	          rm $$eachpage ; \
+	        done ; \
+	        gzip -9 *.?  ; \
+	      ) \
+	    done \
+	  ) \
+	 fi
+	# ======= Install Documentation =======
+	@mkdir -p $(MANDB_PKG)/usr/doc/$(src_dir_name)
+	@cp -a $(SRC_DIR)/docs/COPYING* \
+	       $(MANDB_PKG)/usr/doc/$(src_dir_name)
+	@mkdir -p $(MANDB_PKG)/usr/share/doc/$(src_dir_name)
+	@( cd $(SRC_DIR) ; \
+	   cp -a FAQ README docs/man* docs/COPYING* \
+	         docs/HACKING docs/INSTALL.quick docs/TODO \
+	         $(MANDB_PKG)/usr/share/doc/$(src_dir_name) \
+	 )
+	@( cd $(SRC_DIR) ; \
+	   if [ -r ChangeLog ]; then \
+	     DOCSDIR=`echo $(MANDB_PKG)/usr/share/doc/$(src_dir_name)` ; \
+	     cat ChangeLog | head -n 1000 > $$DOCSDIR/ChangeLog ; \
+	     touch -r ChangeLog $$DOCSDIR/ChangeLog ; \
+	   fi \
+	 )
+	@( cd $(SRC_DIR) ; \
+	   if [ -r NEWS ]; then \
+	     DOCSDIR=`echo $(MANDB_PKG)/usr/share/doc/$(src_dir_name)` ; \
+	     cat NEWS | head -n 1000 > $$DOCSDIR/NEWS ; \
+	     touch -r NEWS $$DOCSDIR/NEWS ; \
+	   fi \
+	 )
+	# ======= remove toolchain path from target libtool *.la files =======
+	@( cd $(MANDB_PKG)/usr/lib$(LIBSUFFIX)/man-db ; \
+	   sed -i "s,$(TARGET_DEST_DIR),,g" libman.la libmandb.la ; \
+	 )
+	# ======= Install the same to $(TARGET_DEST_DIR) =======
+	$(call install-into-devenv, $(MANDB_PKG))
+	# ======= tune libtool *.la search path to the target destination for development =======
+	@( cd $(TARGET_DEST_DIR)/usr/lib$(LIBSUFFIX)/man-db ; \
+	   sed -i "s,/usr,$(TARGET_DEST_DIR)/usr,g"   libman.la libmandb.la ; \
+	   sed -i "s,L/lib,L$(TARGET_DEST_DIR)/lib,g" libman.la libmandb.la ; \
+	 )
+	# ======= Strip binaries =======
+	@( cd $(MANDB_PKG) ; \
+	   find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs $(STRIP) --strip-unneeded 2> /dev/null ; \
+	   find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs $(STRIP) --strip-unneeded 2> /dev/null ; \
+	 )
+ifneq ($(PATCHELF),)
+	# ======= Set RPATH/RUNPATH for target binaries =======
+	@( cd $(MANDB_PKG)/usr ; \
+	   for file in `find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs echo` ; do \
+	     rpath=`$(PATCHELF) --print-rpath $$file 2> /dev/null` ; \
+	     if echo "$$rpath" | grep -q "$(TARGET_DEST_DIR)" ; then \
+	       $(PATCHELF) --set-rpath $(TARGET_BIN_RPATH) $$file 1> /dev/null 2> /dev/null ; \
+	     fi ; \
+	   done ; \
+	 )
+	# ======= Set RPATH/RUNPATH for target shared objects =======
+	@( cd $(MANDB_PKG)/usr/lib$(LIBSUFFIX)/man-db ; \
+	   for file in `find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs echo` ; do \
+	     rpath=`$(PATCHELF) --print-rpath $$file 2> /dev/null` ; \
+	     if echo "$$rpath" | grep -q "$(TARGET_DEST_DIR)" ; then \
+	       $(PATCHELF) --set-rpath $(TARGET_LIB_RPATH) $$file 1> /dev/null 2> /dev/null ; \
+	     fi ; \
+	   done ; \
+	 )
+endif
+	@touch $@
+
+$(MANDB_PKG_DESCRIPTION_FILE): $(MANDB_PKG_DESCRIPTION_FILE_IN)
+	@cat $< | $(SED) -e "s/@VERSION@/$(version)/g" > $@
+
+$(pkg_certificate) : $(pkg_archive) ;
+$(pkg_signature)   : $(pkg_archive) ;
+$(pkg_description) : $(pkg_archive) ;
+
+$(pkg_archive): $(install_target) $(MANDB_PKG_DESCRIPTION_FILE) $(MANDB_PKG_INSTALL_SCRIPT)
+	@cp $(MANDB_PKG_DESCRIPTION_FILE) $(MANDB_PKG)/.DESCRIPTION
+	@cp $(MANDB_PKG_INSTALL_SCRIPT) $(MANDB_PKG)/.INSTALL
+	@$(BUILD_PKG_REQUIRES) $(MANDB_PKG)/.REQUIRES
+	@echo "pkgname=$(MANDB_PKG_NAME)"                            >  $(MANDB_PKG)/.PKGINFO ; \
+	 echo "pkgver=$(MANDB_PKG_VERSION)"                          >> $(MANDB_PKG)/.PKGINFO ; \
+	 echo "arch=$(MANDB_PKG_ARCH)"                               >> $(MANDB_PKG)/.PKGINFO ; \
+	 echo "distroname=$(MANDB_PKG_DISTRO_NAME)"                  >> $(MANDB_PKG)/.PKGINFO ; \
+	 echo "distrover=$(MANDB_PKG_DISTRO_VERSION)"                >> $(MANDB_PKG)/.PKGINFO ; \
+	 echo "group=$(MANDB_PKG_GROUP)"                             >> $(MANDB_PKG)/.PKGINFO ; \
+	 echo "short_description=\"$(MANDB_PKG_SHORT_DESCRIPTION)\"" >> $(MANDB_PKG)/.PKGINFO ; \
+	 echo "url=$(MANDB_PKG_URL)"                                 >> $(MANDB_PKG)/.PKGINFO ; \
+	 echo "license=$(MANDB_PKG_LICENSE)"                         >> $(MANDB_PKG)/.PKGINFO
+	@$(PSEUDO) sh -c "cd $(MANDB_PKG) && \
+	                  chown -R root:root . && \
+	                  $(MAKE_PACKAGE) -J --linkadd=yes $(GNUPG_OPTIONS) -m -d .. ."
Index: 2.9.4/PATCHES
===================================================================
--- 2.9.4/PATCHES	(nonexistent)
+++ 2.9.4/PATCHES	(revision 5)
@@ -0,0 +1,2 @@
+
+../../../sources/packages/a/man-db/patches/man-db-2.9.4-dont-write-in-usr.patch -p0
Index: 2.9.4/cron/man-db.cron
===================================================================
--- 2.9.4/cron/man-db.cron	(nonexistent)
+++ 2.9.4/cron/man-db.cron	(revision 5)
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+# man-db daily cronjob, part of the man-db package:
+
+# Unset $MANPATH so that mandb will get it from man_db.conf rather than
+# the environment:
+unset MANPATH
+
+# Make sure the man-db cache directory exists:
+mkdir -p /var/cache/man
+
+# Regenerate the index databases caches used by man-db.
+# These increase perfomance and provide features such as whatis and apropos.
+ionice -c3 nice -n 19 /usr/bin/mandb --no-purge --quiet
Index: 2.9.4/cron
===================================================================
--- 2.9.4/cron	(nonexistent)
+++ 2.9.4/cron	(revision 5)

Property changes on: 2.9.4/cron
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~
Index: 2.9.4/man-config/man_db.conf
===================================================================
--- 2.9.4/man-config/man_db.conf	(nonexistent)
+++ 2.9.4/man-config/man_db.conf	(revision 5)
@@ -0,0 +1,138 @@
+# man_db.conf
+#
+# This file is used by the man-db package to configure the man and cat paths.
+# It is also used to provide a manpath for those without one by examining
+# their PATH environment variable. For details see the manpath(5) man page.
+#
+# Lines beginning with `#' are comments and are ignored. Any combination of
+# tabs or spaces may be used as `whitespace' separators.
+#
+# There are three mappings allowed in this file:
+# --------------------------------------------------------
+# MANDATORY_MANPATH			manpath_element
+# MANPATH_MAP		path_element	manpath_element
+# MANDB_MAP		global_manpath	[relative_catpath]
+#---------------------------------------------------------
+# every automatically generated MANPATH includes these fields
+#
+#MANDATORY_MANPATH 			/usr/src/pvm3/man
+#
+MANDATORY_MANPATH			/usr/man
+MANDATORY_MANPATH			/usr/share/man
+MANDATORY_MANPATH			/usr/local/man
+MANDATORY_MANPATH			/usr/local/share/man
+MANDATORY_MANPATH			/opt/man
+
+#---------------------------------------------------------
+# set up PATH to MANPATH mapping
+# ie. what man tree holds man pages for what binary directory.
+#
+#		*PATH*        ->	*MANPATH*
+#
+MANPATH_MAP	/bin			/usr/share/man
+MANPATH_MAP	/usr/bin		/usr/share/man
+MANPATH_MAP	/sbin			/usr/share/man
+MANPATH_MAP	/usr/sbin		/usr/share/man
+MANPATH_MAP	/usr/local/bin		/usr/local/man
+MANPATH_MAP	/usr/local/bin		/usr/local/share/man
+MANPATH_MAP	/usr/local/sbin		/usr/local/man
+MANPATH_MAP	/usr/local/sbin		/usr/local/share/man
+MANPATH_MAP	/usr/X11R6/bin		/usr/X11R6/man
+MANPATH_MAP	/usr/bin/X11		/usr/X11R6/man
+MANPATH_MAP	/usr/games		/usr/share/man
+MANPATH_MAP	/opt/bin		/opt/man
+MANPATH_MAP	/opt/sbin		/opt/man
+MANPATH_MAP	/usr/lib/java/bin	/usr/lib/java/man
+
+#---------------------------------------------------------
+# For a manpath element to be treated as a system manpath (as most of those
+# above should normally be), it must be mentioned below. Each line may have
+# an optional extra string indicating the catpath associated with the
+# manpath. If no catpath string is used, the catpath will default to the
+# given manpath.
+#
+# You *must* provide all system manpaths, including manpaths for alternate
+# operating systems, locale specific manpaths, and combinations of both, if
+# they exist, otherwise the permissions of the user running man/mandb will
+# be used to manipulate the manual pages. Also, mandb will not initialise
+# the database cache for any manpaths not mentioned below unless explicitly
+# requested to do so.
+#
+# In a per-user configuration file, this directive only controls the
+# location of catpaths and the creation of database caches; it has no effect
+# on privileges.
+#
+# Any manpaths that are subdirectories of other manpaths must be mentioned
+# *before* the containing manpath. E.g. /usr/man/preformat must be listed
+# before /usr/man.
+#
+#		*MANPATH*     ->	*CATPATH*
+#
+MANDB_MAP	/usr/man		/var/cache/man/usr-man
+MANDB_MAP	/usr/share/man		/var/cache/man/usr-share-man
+MANDB_MAP	/usr/local/man		/var/cache/man/usr-local-man
+MANDB_MAP	/usr/local/share/man	/var/cache/man/usr-local-share-man
+MANDB_MAP	/usr/X11R6/man		/var/cache/man/usr-X11R6-man
+MANDB_MAP	/opt/man		/var/cache/man/opt-man
+MANDB_MAP	/snap/man		/var/cache/man/snap-man
+MANDB_MAP	/usr/lib/java/man	/var/cache/man/usr-lib-java-man
+
+#---------------------------------------------------------
+# Program definitions.  These are commented out by default as the value
+# of the definition is already the default.  To change: uncomment a
+# definition and modify it.
+#
+#DEFINE 	pager	less
+#DEFINE 	cat	cat
+#DEFINE 	tr	tr '\255\267\264\327' '\055\157\047\170'
+#DEFINE		grep	grep
+#DEFINE 	troff 	groff -mandoc
+#DEFINE 	nroff 	nroff -mandoc
+#DEFINE 	eqn 	eqn
+#DEFINE 	neqn	neqn
+#DEFINE 	tbl 	tbl
+#DEFINE 	col 	col
+#DEFINE 	vgrind 	
+#DEFINE 	refer 	refer
+#DEFINE 	grap 	
+#DEFINE 	pic 	pic -S
+#
+#DEFINE		compressor	gzip -c7
+#---------------------------------------------------------
+# Misc definitions: same as program definitions above.
+#
+#DEFINE		whatis_grep_flags		-i
+#DEFINE		apropos_grep_flags		-iEw
+#DEFINE		apropos_regex_grep_flags	-iE
+#---------------------------------------------------------
+# Section names. Manual sections will be searched in the order listed here;
+# the default is 1, n, l, 8, 3, 0, 2, 5, 4, 9, 6, 7. Multiple SECTION
+# directives may be given for clarity, and will be concatenated together in
+# the expected way.
+# If a particular extension is not in this list (say, 1mh), it will be
+# displayed with the rest of the section it belongs to. The effect of this
+# is that you only need to explicitly list extensions if you want to force a
+# particular order. Sections with extensions should usually be adjacent to
+# their main section (e.g. "1 1mh 8 ...").
+#
+SECTION		1 n l 8 3 0 2 5 4 9 6 7
+#
+#---------------------------------------------------------
+# Range of terminal widths permitted when displaying cat pages. If the
+# terminal falls outside this range, cat pages will not be created (if
+# missing) or displayed.
+#
+#MINCATWIDTH	80
+#MAXCATWIDTH	80
+#
+# If CATWIDTH is set to a non-zero number, cat pages will always be
+# formatted for a terminal of the given width, regardless of the width of
+# the terminal actually being used. This should generally be within the
+# range set by MINCATWIDTH and MAXCATWIDTH.
+#
+#CATWIDTH	0
+#
+#---------------------------------------------------------
+# Flags.
+# NOCACHE keeps man from creating cat pages.
+NOCACHE
Index: 2.9.4/man-config
===================================================================
--- 2.9.4/man-config	(nonexistent)
+++ 2.9.4/man-config	(revision 5)

Property changes on: 2.9.4/man-config
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~
Index: 2.9.4/man-db-pkg-description.in
===================================================================
--- 2.9.4/man-db-pkg-description.in	(nonexistent)
+++ 2.9.4/man-db-pkg-description.in	(revision 5)
@@ -0,0 +1,19 @@
+# HOW TO EDIT THIS FILE:
+# The "handy ruler" below makes it easier to edit a package description.  Line
+# up the first '|' above the ':' following the base package name, and the '|'
+# on the right side marks the last column you can put a character in.  You must
+# make exactly 11 lines for the formatting to be correct.  It's also
+# customary to leave one space after the ':'.
+
+      |-----handy-ruler------------------------------------------------------|
+man-db: man-db @VERSION@ (database-driven manual pager suite)
+man-db:
+man-db: This package provides the man command and related utilities
+man-db: for examining on-line help files (manual pages). It has several
+man-db: enhancements over man, including an indexed database for searches
+man-db: with -k or apropos, the ability to easily view man pages in
+man-db: a browser, better i18n support, and a much more efficient
+man-db: implementation of the -K (full text search) option.
+man-db:
+man-db: Homepage: http://www.nongnu.org/man-db/
+man-db:
Index: 2.9.4/man-db-pkg-install.sh
===================================================================
--- 2.9.4/man-db-pkg-install.sh	(nonexistent)
+++ 2.9.4/man-db-pkg-install.sh	(revision 5)
@@ -0,0 +1,55 @@
+#!/bin/sh
+
+# Preserve new files
+install_file() {
+  NEW="$1"
+  OLD="`dirname $NEW`/`basename $NEW .new`"
+  # If there's no file by that name, mv it over:
+  if [ ! -r $OLD ]; then
+    mv $NEW $OLD
+  elif [ "`cat $OLD | md5sum`" = "`cat $NEW | md5sum`" ]; then # toss the redundant copy
+    rm $NEW
+  fi
+  # Otherwise, we leave the .new copy for the admin to consider...
+}
+
+
+# arg 1:  the new package version
+pre_install() {
+  /bin/true
+}
+
+# arg 1:  the new package version
+post_install() {
+  install_file etc/man_db.conf.new
+  install_file etc/profile.d/man-db.csh.new
+  install_file etc/profile.d/man-db.sh.new
+}
+
+# arg 1:  the new package version
+# arg 2:  the old package version
+pre_update() {
+  /bin/true
+}
+
+# arg 1:  the new package version
+# arg 2:  the old package version
+post_update() {
+  post_install
+}
+
+# arg 1:  the old package version
+pre_remove() {
+  /bin/true
+}
+
+# arg 1:  the old package version
+post_remove() {
+  /bin/true
+}
+
+
+operation=$1
+shift
+
+$operation $*

Property changes on: 2.9.4/man-db-pkg-install.sh
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Index: 2.9.4/profile.d/man-db.csh
===================================================================
--- 2.9.4/profile.d/man-db.csh	(nonexistent)
+++ 2.9.4/profile.d/man-db.csh	(revision 5)
@@ -0,0 +1,7 @@
+#!/bin/csh
+
+# Choose a default for the system's manual pager:
+
+#setenv MANPAGER less
+#setenv MANPAGER more
+#setenv MANPAGER most
Index: 2.9.4/profile.d/man-db.sh
===================================================================
--- 2.9.4/profile.d/man-db.sh	(nonexistent)
+++ 2.9.4/profile.d/man-db.sh	(revision 5)
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+# Choose a default for the system's manual pager:
+
+#export MANPAGER=less
+#export MANPAGER=more
+#export MANPAGER=most
Index: 2.9.4/profile.d
===================================================================
--- 2.9.4/profile.d	(nonexistent)
+++ 2.9.4/profile.d	(revision 5)

Property changes on: 2.9.4/profile.d
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~
Index: 2.9.4
===================================================================
--- 2.9.4	(nonexistent)
+++ 2.9.4	(revision 5)

Property changes on: 2.9.4
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~
Index: .
===================================================================
--- .	(nonexistent)
+++ .	(revision 5)

Property changes on: .
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~