# Buildsheet autogenerated by ravenadm tool -- Do not edit. NAMEBASE= findutils VERSION= 4.6.0 KEYWORDS= misc VARIANTS= standard nls SDESC[nls]= GNU find utilities with native language support SDESC[standard]= GNU find utilities (static) HOMEPAGE= http://www.gnu.org/software/findutils/ CONTACT= nobody DOWNLOAD_GROUPS= main SITES[main]= GNU/findutils DISTFILE[1]= findutils-4.6.0.tar.gz:main DF_INDEX= 1 SPKGS[nls]= single SPKGS[standard]= single OPTIONS_AVAILABLE= NLS OPTIONS_STANDARD= none VOPTS[nls]= NLS=ON USES= charsetfix cpe gmake LICENSE= GPLv3:single LICENSE_SCHEME= solo LICENSE_FILE= GPLv3:{{WRKSRC}}/COPYING INFO= single:find single:find-maint CPE_VENDOR= gnu FPC_EQUIVALENT= misc/findutils INFO_SUBDIR= . MUST_CONFIGURE= gnu CONFIGURE_ARGS= --program-prefix=g --localstatedir="/var/db" MAKE_ARGS= INSTALL_SCRIPT="{{INSTALL_SCRIPT}}" [NLS].CONFIGURE_ENABLE_BOTH= nls [NLS].USES_ON= gettext-runtime post-install: ${RM} -r ${STAGEDIR}/var [FILE:399:descriptions/desc.single] The Free Software Foundation's "find" utilities, including "find", "locate", and "xargs". These utilities exist in the FreeBSD base collection, but the GNU versions have added functionality that is sometimes useful. Note that this port will install these utilities with a `g' prefix, eg., glocate, gfind, gxargs, but the texinfo documentation will refer to these utilities without the `g' prefix. [FILE:101:distinfo] ded4c9f73731cd48fec3b6bdaccce896473b6d8e337e9612e16cf1431bb1169d 3780154 findutils-4.6.0.tar.gz [FILE:175:manifests/plist.single.standard] bin/ gfind glocate gupdatedb gxargs libexec/ gbigram gcode gfrcode share/man/man1/ gfind.1.gz glocate.1.gz gupdatedb.1.gz gxargs.1.gz share/man/man5/glocatedb.5.gz [FILE:1824:manifests/plist.single.nls] bin/ gfind glocate gupdatedb gxargs libexec/ gbigram gcode gfrcode share/man/man1/ gfind.1.gz glocate.1.gz gupdatedb.1.gz gxargs.1.gz share/man/man5/glocatedb.5.gz share/locale/be/LC_MESSAGES/findutils.mo share/locale/bg/LC_MESSAGES/findutils.mo share/locale/ca/LC_MESSAGES/findutils.mo share/locale/cs/LC_MESSAGES/findutils.mo share/locale/da/LC_MESSAGES/findutils.mo share/locale/de/LC_MESSAGES/findutils.mo share/locale/el/LC_MESSAGES/findutils.mo share/locale/eo/LC_MESSAGES/findutils.mo share/locale/es/LC_MESSAGES/findutils.mo share/locale/et/LC_MESSAGES/findutils.mo share/locale/fi/LC_MESSAGES/findutils.mo share/locale/fr/LC_MESSAGES/findutils.mo share/locale/ga/LC_MESSAGES/findutils.mo share/locale/gl/LC_MESSAGES/findutils.mo share/locale/hr/LC_MESSAGES/findutils.mo share/locale/hu/LC_MESSAGES/findutils.mo share/locale/id/LC_MESSAGES/findutils.mo share/locale/it/LC_MESSAGES/findutils.mo share/locale/ja/LC_MESSAGES/findutils.mo share/locale/ko/LC_MESSAGES/findutils.mo share/locale/lg/LC_MESSAGES/findutils.mo share/locale/lt/LC_MESSAGES/findutils.mo share/locale/ms/LC_MESSAGES/findutils.mo share/locale/nb/LC_MESSAGES/findutils.mo share/locale/nl/LC_MESSAGES/findutils.mo share/locale/pl/LC_MESSAGES/findutils.mo share/locale/pt/LC_MESSAGES/findutils.mo share/locale/pt_BR/LC_MESSAGES/findutils.mo share/locale/ro/LC_MESSAGES/findutils.mo share/locale/ru/LC_MESSAGES/findutils.mo share/locale/rw/LC_MESSAGES/findutils.mo share/locale/sk/LC_MESSAGES/findutils.mo share/locale/sl/LC_MESSAGES/findutils.mo share/locale/sr/LC_MESSAGES/findutils.mo share/locale/sv/LC_MESSAGES/findutils.mo share/locale/tr/LC_MESSAGES/findutils.mo share/locale/uk/LC_MESSAGES/findutils.mo share/locale/vi/LC_MESSAGES/findutils.mo share/locale/zh_CN/LC_MESSAGES/findutils.mo share/locale/zh_TW/LC_MESSAGES/findutils.mo [FILE:436:patches/patch-configure] --- configure.orig Sun Nov 5 17:53:42 2006 +++ configure Sun Nov 5 18:02:59 2006 @@ -16231,6 +16231,15 @@ + if test $ac_use_included_regex = yes; then + case $LIBOBJS in + "regex.$ac_objext" | \ + *" regex.$ac_objext" | \ + "regex.$ac_objext "* | \ + *" regex.$ac_objext "* ) ;; + *) LIBOBJS="$LIBOBJS regex.$ac_objext" ;; + esac + fi { echo "$as_me:$LINENO: checking for C/C++ restrict keyword" >&5 [FILE:345:patches/patch-gnulib-lib-fdopendir.c] --- gl/lib/fdopendir.c.orig 2012-12-15 14:42:45.000000000 +0100 +++ gl/lib/fdopendir.c 2013-02-02 17:11:52.000000000 +0100 @@ -182,9 +182,11 @@ # include # include +# include # undef fdopendir +extern DIR *fdopendir(int); /* Like fdopendir, but work around GNU/Hurd bug by validating FD. */ DIR * [FILE:1284:patches/patch-locate__updatedb.sh] --- locate/updatedb.sh.orig 2011-04-03 23:53:12.000000000 +0100 +++ locate/updatedb.sh 2011-05-17 18:20:29.000000000 +0100 @@ -250,7 +250,7 @@ if test -n "$SEARCHPATHS"; then if [ "$LOCALUSER" != "" ]; then # : A1 - su $LOCALUSER `select_shell $LOCALUSER` -c \ + su -m $LOCALUSER -c \ "$find $SEARCHPATHS $FINDOPTIONS \ \\( $prunefs_exp \ -type d -regex '$PRUNEREGEX' \\) -prune -o $print_option" @@ -266,7 +266,7 @@ myuid=`getuid` if [ "$myuid" = 0 ]; then # : A3 - su $NETUSER `select_shell $NETUSER` -c \ + su -m $NETUSER -c \ "$find $NETPATHS $FINDOPTIONS \\( -type d -regex '$PRUNEREGEX' -prune \\) -o $print_option" || exit $? else @@ -319,7 +319,7 @@ if test -n "$SEARCHPATHS"; then if [ "$LOCALUSER" != "" ]; then # : A5 - su $LOCALUSER `select_shell $LOCALUSER` -c \ + su -m $LOCALUSER -c \ "$find $SEARCHPATHS $FINDOPTIONS \ \( $prunefs_exp \ -type d -regex '$PRUNEREGEX' \) -prune -o $print_option" || exit $? @@ -335,7 +335,7 @@ myuid=`getuid` if [ "$myuid" = 0 ]; then # : A7 - su $NETUSER `select_shell $NETUSER` -c \ + su -m $NETUSER -c \ "$find $NETPATHS $FINDOPTIONS \\( -type d -regex '$PRUNEREGEX' -prune \\) -o $print_option" || exit $? else