Index: head/Mk/bsd.linux-rpm.mk =================================================================== --- head/Mk/bsd.linux-rpm.mk (revision 413167) +++ head/Mk/bsd.linux-rpm.mk (revision 413168) @@ -1,196 +1,218 @@ #-*- tab-width: 4; -*- # ex:ts=4 # # $FreeBSD$ # # Variables: # LINUX_DIST - Will be used to set some dist-specific presets. # Valid values: fedora # LINUX_DIST_VER - Use depends upon the dist-specific presets. # Valid values for "fedora": all version numbers # e.g. 10 for fedora 10 # Valid values for "centos": all version numbers # e.g. 6.7 for centos 6.7 # This is used to set MASTER_SITE_{,SRC_}SUBDIR # if it isn't already set. # MASTER_SITE_SRC_SUBDIR # - The subdir for the src RPM's. # DISTFILES - For simple cases this will be set automatically # based upon the DISTNAME. # SRC_DISTFILES - Variable which contains the corresponding src RPM's. # If there's no corresponding src RPM, it has to be # set to the empty value (SRC_DISTFILES= ""). # AUTOMATIC_PLIST - Generate a dynamic plist (please have a look at the # porters handbook section which talks about plists. # This feature is reserved for rare cases). # BRANDELF_DIRS - A list of directories with executables to brand # as a linux executable. The directories has to not # contain libraries. # BRANDELF_FILES - A list of files to brand as a linux executable in # case BRANDELF_DIRS can't be used. .if !defined(_POSTMKINCLUDED) && !defined(Linux_RPM_Pre_Include) Linux_RPM_Include_MAINTAINER= emulation@FreeBSD.org Linux_RPM_Pre_Include= bsd.linux-rpm.mk EXTRACT_SUFX?= .${LINUX_RPM_ARCH}.rpm SRC_SUFX?= .src.rpm USE_LINUX?= yes USE_LINUX_PREFIX= yes NO_WRKSUBDIR= yes NO_BUILD= yes -. if ${USE_LINUX} == "c6" || ${USE_LINUX} == "yes" # default to CentOS +. if ${USE_LINUX} == "c6" || ${USE_LINUX} == "c6_64" || ${USE_LINUX} == "yes" # default to CentOS # Do not build CentOS 6 ports if overridden by f10 -. if defined(OVERRIDE_LINUX_NONBASE_PORT) && ${OVERRIDE_LINUX_NONBASE_PORTS} == "f10" +. if defined(OVERRIDE_LINUX_NONBASE_PORTS) && ${OVERRIDE_LINUX_NONBASE_PORTS} == "f10" IGNORE= This port requires CentOS ${LINUX_DIST_VER}. Please remove OVERRIDE_LINUX_NONBASE_PORTS=f10 in /etc/make.conf. . endif . endif .endif .if defined(_POSTMKINCLUDED) && !defined(Linux_RPM_Post_Include) Linux_RPM_Post_Include= bsd.linux-rpm.mk .if ${USE_LINUX} == "f10" USE_LINUX?= "f10" LINUX_DIST= fedora LINUX_DIST_VER= 10 .else # default to CentOS LINUX_DIST= centos LINUX_DIST_VER= 6.7 .endif .if defined(LINUX_DIST) DIST_SUBDIR?= rpm/${LINUX_RPM_ARCH}/${LINUX_DIST}/${LINUX_DIST_VER} . if ${LINUX_DIST} == "fedora" # we do not want to define MASTER_SITES and MASTER_SITE_* if they are already defined # ex.: MASTER_SITES=file:///... . ifndef MASTER_SITES MASTER_SITES= ${MASTER_SITE_FEDORA_LINUX} . if ${LINUX_DIST_VER} == 10 MASTER_SITE_SUBDIR?= ../releases/${LINUX_DIST_VER}/Everything/${LINUX_RPM_ARCH}/os/Packages \ ../updates/${LINUX_DIST_VER}/${LINUX_RPM_ARCH} MASTER_SITE_SRC_SUBDIR?= ../releases/${LINUX_DIST_VER}/Everything/source/SRPMS \ ../updates/${LINUX_DIST_VER}/SRPMS . else MASTER_SITE_SUBDIR?= ${LINUX_DIST_VER}/${LINUX_RPM_ARCH}/os/Fedora/RPMS \ updates/${LINUX_DIST_VER}/${LINUX_RPM_ARCH} MASTER_SITE_SRC_SUBDIR?= ${LINUX_DIST_VER}/SRPMS \ updates/${LINUX_DIST_VER}/SRPMS . endif . endif . elif ${LINUX_DIST} == "centos" MASTER_SITES?= ${MASTER_SITE_CENTOS_LINUX} ${MASTER_SITE_CENTOS_LINUX_UPDATES} MASTER_SITE_SUBDIR?= centos/${LINUX_DIST_VER}/os/${LINUX_REPO_ARCH}/Packages/ \ centos/${LINUX_DIST_VER}/updates/${LINUX_REPO_ARCH}/Packages/ . if ${LINUX_DIST_VER} == "5" #needed for Qt... LINUX_RPM_ARCH= i386 MASTER_SITE_SUBDIR= centos/5/os/i386/Packages/ . endif . if defined(PACKAGE_BUILDING) MASTER_SITES+= http://vault.centos.org/%SUBDIR%/:SOURCE MASTER_SITE_SUBDIR+= ${LINUX_DIST_VER}/os/Source/SPackages/:SOURCE . endif . endif .endif PKGNAMEPREFIX?= linux-${USE_LINUX}- # DISTFILES and SRC_DISTFILES assume that there is only one bindist # and one src file. # Please, define them in the Makefile of the port in case this assumption # is not true. DISTVERSION= ${PORTVERSION}-${RPMVERSION} DISTNAME?= ${PORTNAME}-${DISTVERSION} DISTFILES?= ${DISTNAME}${EXTRACT_SUFX} -BIN_DISTFILES:= ${DISTFILES} +BIN_DISTFILES:= ${DISTFILES} ${LIB_DISTFILES} SRC_DISTFILES?= ${DISTNAME}${SRC_SUFX}:SOURCE EXTRACT_ONLY?= ${BIN_DISTFILES:C/:[^:]+$//} WRKSRC:= ${WRKSRC:S/-${RPMVERSION}$//} + +# Define files to install. +# Ports can want to install 32bit things only (if OVERRIDE_LINUX_NONBASE_PORTS) is off, +# they can want to install both 32bit and 64bit things of only one package, +# or they can want to install a 64bit only binary and e.g. 32/64bit libraries. + +# The following glue is supposed to handle this. +# FIXME: Sensibly refactor this part, it looks like spaghetti. + +. if defined(OVERRIDE_LINUX_NONBASE_PORTS) && ${OVERRIDE_LINUX_NONBASE_PORTS} == "c6_64" +_32BIT_LINUX_RPM_ARCH= i686 +. if ${DISTFILES} == ${DISTNAME}${EXTRACT_SUFX} && ${USE_LINUX_RPM} != "nolib" +_32BIT_LIB_DISTFILES:= ${DISTFILES:S/${LINUX_RPM_ARCH}/${_32BIT_LINUX_RPM_ARCH}/g} +. elif defined(LIB_DISTFILES) +_32BIT_LIB_DISTFILES= ${LIB_DISTFILES:S/${LINUX_RPM_ARCH}/${_32BIT_LINUX_RPM_ARCH}/g} +. endif + +BIN_DISTFILES:= ${BIN_DISTFILES} ${_32BIT_LIB_DISTFILES} +DISTFILES+= ${_32BIT_LIB_DISTFILES} +. endif +DISTFILES+= ${LIB_DISTFILES} + . if defined(PACKAGE_BUILDING) DISTFILES+= ${SRC_DISTFILES} MASTER_SITE_SUBDIR+= ${MASTER_SITE_SRC_SUBDIR} ALWAYS_KEEP_DISTFILES= yes . endif .if !defined(USE_LINUX_RPM_BAD_PERMS) EXTRACT_CMD?= ${TAR} EXTRACT_BEFORE_ARGS?= --no-same-permissions --no-same-owner -xf EXTRACT_AFTER_ARGS?= .else EXTRACT_DEPENDS+= rpm2archive:archivers/rpm4 EXTRACT_CMD?= rpm2archive EXTRACT_BEFORE_ARGS?= < EXTRACT_AFTER_ARGS?= | ${TAR} xf - --no-same-permissions --no-same-owner .endif DISTINFO_FILE?= ${MASTERDIR}/distinfo.${LINUX_RPM_ARCH} BRANDELF_DIRS?= BRANDELF_FILES?= # For ports that define PORTDOCS, be sure not to install # documentation if NOPORTDOCS is defined . if defined(PORTDOCS) && defined(NOPORTDOCS) pre-patch: linux-rpm-clean-portdocs . if !target(linux-rpm-clean-portdocs) linux-rpm-clean-portdocs: . for x in ${PORTDOCS} @${RM} -f ${WRKSRC}/${DOCSDIR_REL}/${x} . endfor @${RMDIR} ${WRKSRC}/${DOCSDIR_REL} . endif . endif . if ${USE_LINUX} != "f10" PLIST?= ${MASTERDIR}/pkg-plist.${LINUX_RPM_ARCH} . endif . if defined(AUTOMATIC_PLIST) . if ${USE_LINUX} == "f10" _LINUX_BASE_SUFFIX= f10 . elif ${USE_LINUX} == "c6" || ${USE_LINUX} == "yes" _LINUX_BASE_SUFFIX= c6 . elif ${USE_LINUX} == "c6_64" _LINUX_BASE_SUFFIX= c6 . else # other linux_base ports do not provide a pkg-plist file IGNORE= uses AUTOMATIC_PLIST with an unsupported USE_LINUX, \"${USE_LINUX}\". Supported values are \"yes\", \"f10\", \"c6\", and \"c6_64\" . endif PLIST?= ${WRKDIR}/.PLIST.linux-rpm pre-install: linux-rpm-generate-plist . if !target(linux-rpm-generate-plist) linux-rpm-generate-plist: cd ${WRKSRC} && \ ${FIND} * ! -type d | ${SORT} > ${PLIST} . endif . endif . if !target(do-install) do-install: . if ${BRANDELF_DIRS} @cd ${WRKSRC} && ${FIND} ${BRANDELF_DIRS} -type f -print0 \ | ${XARGS} -0 ${FILE} | ${GREP} ELF | ${CUT} -d : -f 1 \ | ${XARGS} ${BRANDELF} -t Linux . endif . if ${BRANDELF_FILES} @cd ${WRKSRC} && ${BRANDELF} -t Linux ${BRANDELF_FILES} . endif cd ${WRKSRC} && ${FIND} * -type d -exec ${MKDIR} "${STAGEDIR}${PREFIX}/{}" \; cd ${WRKSRC} && ${FIND} * ! -type d | ${CPIO} -pm -R root:wheel ${STAGEDIR}${PREFIX} . endif .endif Index: head/Mk/bsd.port.mk =================================================================== --- head/Mk/bsd.port.mk (revision 413167) +++ head/Mk/bsd.port.mk (revision 413168) @@ -1,5829 +1,5831 @@ #-*- tab-width: 4; -*- # ex:ts=4 # # $FreeBSD$ # $NetBSD: $ # # bsd.port.mk - 940820 Jordan K. Hubbard. # This file is in the public domain. # # Please view me with 4 column tabs! # This is the master file for the most common elements to all port # Makefile in the ports system. For a more general overview of its # use and importance, see the Porter's Handbook. # There are two different types of "maintainers" in the ports framework. # The maintainer alias of the bsd.port.mk file is listed below in the # FreeBSD_MAINTAINER entry. You should consult them if you have any # questions/suggestions regarding this file. # # DO NOT COMMIT CHANGES TO THIS FILE BY YOURSELF, EVEN IF YOU DID NOT GET # A RESPONSE FROM THE MAINTAINER(S) WITHIN A REASONABLE TIMEFRAME! ALL # UNAUTHORISED CHANGES WILL BE UNCONDITIONALLY REVERTED! FreeBSD_MAINTAINER= portmgr@FreeBSD.org # For each port, the MAINTAINER variable is what you should consult for # contact information on the person(s) to contact if you have questions/ # suggestions about that specific port. By default (if no MAINTAINER # is listed), a port is maintained by the subscribers of the ports@FreeBSD.org # mailing list, and any correspondence should be directed there. # # MAINTAINER - The e-mail address of the contact person for this port. # Default: ports@FreeBSD.org # # These are meta-variables that are automatically set to the system # you are running on. These are provided in case you need to take # different actions for different values. # # ARCH - The architecture of the target machine, such as would be # returned by "uname -p". # OPSYS - Portability clause. This is the operating system the # makefile is being used on. Automatically set to # "FreeBSD," "NetBSD," or "OpenBSD" as appropriate. # OSREL - The release version (numeric) of the operating system. # OSVERSION - The value of __FreeBSD_version. # # This is the beginning of the list of all variables that need to be # defined in a port, listed in order that they should be included # to fit in with existing conventions. (Exception: MAINTAINER actually # should appear after EXTRACT_ONLY and before MASTER_SITE_BACKUP). # # These variables are used to identify your port. # # PORTNAME - Name of software. Mandatory. # PORTVERSION - Version of software. Mandatory when no DISTVERSION is given. # PORTREVISION - Version of port. Optional. Commonly used to indicate # that an update has happened that affects the port # framework itself, but not the distributed software # (e.g., local patches or Makefile changes). # PORTEPOCH - Optional. In certain odd cases, the PORTREVISION logic # can be fooled by ports that appear to go backwards # numerically (e.g. if port-0.3 is newer than port-1998). # In this case, incrementing PORTEPOCH forces the revision. # Default: 0 (no effect). # PKGNAME - Always defined as # ${PKGNAMEPREFIX}${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION}. # Do not define this in your Makefile. # PKGNAMEPREFIX - Prefix to specify that port is language-specific, etc. # Optional. # PKGNAMESUFFIX - Suffix to specify compilation options or a version # designator (in case there are different versions of # one port as is the case for Tcl). # Optional. # PKGVERSION - Always defined as ${PORTVERSION}. # Do not define this in your Makefile. # DISTVERSION - Vendor version of the distribution. # Default: ${PORTVERSION} # DISTNAME - Name of port or distribution used in generating # WRKSRC and DISTFILES below. # Default: # ${PORTNAME}-${DISTVERSIONPREFIX}${DISTVERSION}${DISTVERSIONSUFFIX} # CATEGORIES - A list of descriptive categories into which this port falls. # Mandatory. # # These variable describe how to fetch files required for building the port. # # DISTFILES - Name(s) of archive file(s) containing distribution. # Set this to an empty string if the port doesn't require it. # Default: ${DISTNAME}${EXTRACT_SUFX} # EXTRACT_SUFX - Suffix for archive names # You never have to set both DISTFILES and EXTRACT_SUFX. # Default: .tar.bz2 if USES=tar:bzip2 is set, .tar.xz if # USES=tar:xz USE_XZ is set, .tar.gz otherwise). # MASTER_SITES - Primary location(s) for distribution files if not found # locally. See bsd.sites.mk for common choices for # MASTER_SITES. # MASTER_SITE_SUBDIR # - Subdirectory of MASTER_SITES. Will sometimes need to be # set to ${PORTNAME} for (e.g.) MASTER_SITE_SOURCEFORGE. # Only guaranteed to work for choices of ${MASTER_SITES} # defined in bsd.sites.mk. # Default: not set. # PATCHFILES - Name(s) of additional files that contain distribution # patches. Make will look for them at PATCH_SITES (see below). # They will automatically be uncompressed before patching if # the names end with ".gz", ".bz2" or ".Z". # For each file you can optionally specify a strip # flag of patch(1) after a colon if it has a different # base directory, e.g. "file1 file2:-p1 file3". # You can also use a :group at the end for matching up to # dist file groups. See Porters Handbook for more information. # Syntax: PATCHFILES= patch[:-pX][:group] # Default: not set. # PATCH_SITES - Primary location(s) for distribution patch files # if not found locally. # DIST_SUBDIR - Suffix to ${DISTDIR}. If set, all ${DISTFILES} and # ${PATCHFILES} will be put in this subdirectory of # ${DISTDIR} (see below). Also they will be fetched in this # subdirectory from FreeBSD mirror sites. # ALLFILES - All of ${DISTFILES} and ${PATCHFILES}. # NOFETCHFILES - If set, don't download these files from the ${MASTER_SITES} # or ${MASTER_SITE_BACKUP} (but do from # ${MASTER_SITE_OVERRIDE}) # EXTRACT_ONLY - If set, a subset of ${DISTFILES} you want to # actually extract. # ALWAYS_KEEP_DISTFILES # - If set, the package building cluster will save the distfiles # along with the packages. This may be required to comply with # some licenses, e.g. GPL in some cases. # Default: not set. # # (NOTE: by convention, the MAINTAINER entry (see above) should go here.) # # These variables are typically set in /etc/make.conf to indicate # the user's preferred location to fetch files from. You should # rarely need to set these. # # MASTER_SITE_BACKUP # - Backup location(s) for distribution files and patch # files if not found locally and ${MASTER_SITES}/${PATCH_SITES}. # This should *not* be changed. # Default: # http://distcache.FreeBSD.org/ports-distfiles/${DIST_SUBDIR}/ # MASTER_SITE_OVERRIDE # - If set, prepend the MASTER_SITES setting with this value. # MASTER_SITE_FREEBSD # - If set, prepend ${MASTER_SITE_BACKUP} in MASTER_SITES. # # Set these if your port should not be built under certain circumstances. # These are string variables; you should set them to the reason why # they are necessary. # # RESTRICTED - Prevent the distribution of distfiles and packages to # the FTP sites or on CDROM (e.g. forbidden by license # considerations). # NO_CDROM - Packages and distfiles may not go on CDROM (e.g. must # not be re-sold) but can go on FTP sites. # NO_PACKAGE - Port should not be packaged for ftp sites or CDROMs, # but distfiles can be put on ftp sites and CDROMs. # FORBIDDEN - Package build should not be attempted because of # security vulnerabilities. # LEGAL_TEXT - Port has legal issues (e.g., special permission to distribute, lacks a license). # LEGAL_PACKAGE - Port has no legal issues but defines NO_PACKAGE # IGNORE - Package build should be skipped entirely (e.g. # because of serious unfixable problems in the build, # because it cannot be manually fetched, etc). Error # logs will not appear on pointyhat, so this should be # used sparingly. # BROKEN - Port is believed to be broken. Package builds can # still be attempted using TRYBROKEN to test this # assumption. # BROKEN_${ARCH} - Port is believed to be broken on ${ARCH}. Package builds # can still be attempted using TRYBROKEN to # test this assumption. # BROKEN_${OPSYS} - Port is believed to be broken on ${OPSYS}. Package builds # can still be attempted using TRYBROKEN to # test this assumption. # BROKEN_${OPSYS}_${OSREL:R} - Port is believed to be broken on a single # release of ${OPSYS}, e.g BROKEN_FreeBSD_8 # would affect all point releases of FreeBSD 8 # unless TRYBROKEN is also set. # BROKEN_${OPSYS}_${OSREL:R}_${ARCH} - Port is believed to be broken on a # single release of ${OPSYS} and specific architecture, # e.g BROKEN_FreeBSD_8_i386 would affect all point # releases of FreeBSD 8 in i386 # unless TRYBROKEN is also set. # DEPRECATED - Port is deprecated to install. Advisory only. # EXPIRATION_DATE # - If DEPRECATED is set, determines a date when # the port is planed to remove. The date format is # ISO 8601 (YYYY-MM-DD). # # DISABLE_VULNERABILITIES # - If set, do not check if the port is listed in the # vulnerabilities database. # # In addition to RESTRICTED or NO_CDROM, if only a subset of distfiles # or patchfiles have redistribution restrictions, set the following # to the list of such files. # # RESTRICTED_FILES # - List of files that cannot be redistributed. # Default: "${DISTFILES} ${PATCHFILES}" if RESTRICTED # or NO_CDROM is set, empty otherwise. # # These variables are booleans, so you don't need to set them to the reason. # # IS_INTERACTIVE # - Set this if your port needs to interact with the user # during any step in a package build. User can then decide # to skip this port by setting ${BATCH}, or compiling only # the interactive ports by setting ${INTERACTIVE}. # Default: not set. # USE_SUBMAKE - Set this if you want that each of the port's main 7 targets # (extract, patch, configure, build, stage, install and # package) to be executed in a separate make(1) process. # Useful when one of the stages needs to influence make(1) # variables of the later stages using ${WRKDIR}/Makefile.inc # generated on the fly. # Default: not set. # # NO_ARCH - Set this if port is architecture neutral. # # Set these if your port only makes sense to certain architectures. # They are lists containing names for them (e.g., "amd64 i386"). # (Defaults: not set.) # # ONLY_FOR_ARCHS # - Only build ports if ${ARCH} matches one of these. # NOT_FOR_ARCHS - Only build ports if ${ARCH} doesn't match one of these. # ONLY_FOR_ARCHS_REASON # ONLY_FOR_ARCHS_REASON_${ARCH} # - Reason why it's only for ${ONLY_FOR_ARCHS}s # NOT_FOR_ARCHS_REASON # NOT_FOR_ARCHS_REASON_${ARCH} # - Reason why it's not for ${NOT_FOR_ARCHS}s # IA32_BINARY_PORT # - Set this instead of ONLY_FOR_ARCHS if the given port # fetches and installs compiled i386 binaries. # # Dependency checking. Use these if your port requires another port # not in the list below. (Default: empty.) # # EXTRACT_DEPENDS # - A list of "path:dir[:target]" tuples of other ports this # package depends on in the "extract" stage. "path" is # the name of a file if it starts with a slash (/), an # executable otherwise. make will test for the existence # (if it is a full pathname) or search for it in your # $PATH (if it is an executable) and go into "dir" to do # a "make all install" if it's not found. If the third # field ("target") exists, it will be used instead of # ${DEPENDS_TARGET}. The first field also supports a # package name with a version range, in the form package>=1.2 # if a particular version is desired. # PATCH_DEPENDS - A list of "path:dir[:target]" tuples of other ports this # package depends on in the "patch" stage. "path" is the # name of a file if it starts with a slash (/), an # executable otherwise. make will test for the existence # (if it is a full pathname) or search for it in your # $PATH (if it is an executable) and go into "dir" to do # a "make all install" if it's not found. If the third # field ("target") exists, it will be used instead of # ${DEPENDS_TARGET}. The first field also supports a # package name with a version range, in the form package>=1.2 # if a particular version is desired. # FETCH_DEPENDS - A list of "path:dir[:target]" tuples of other ports this # package depends in the "fetch" stage. "path" is the # name of a file if it starts with a slash (/), an # executable otherwise. make will test for the # existence (if it is a full pathname) or search for # it in your $PATH (if it is an executable) and go # into "dir" to do a "make all install" if it's not # found. If the third field ("target") exists, it will # be used instead of ${DEPENDS_TARGET}. The first field # also supports a package name with a version range, in # the form package>=1.2 if a particular version is desired. # BUILD_DEPENDS - A list of "path:dir[:target]" tuples of other ports this # package depends to build (between the "extract" and # "build" stages, inclusive). The test done to # determine the existence of the dependency is the # same as FETCH_DEPENDS. If the third field ("target") # exists, it will be used instead of ${DEPENDS_TARGET}. # RUN_DEPENDS - A list of "path:dir[:target]" tuples of other ports this # package depends to run. The test done to determine # the existence of the dependency is the same as # FETCH_DEPENDS. This will be checked during the # "install" stage and the name of the dependency will # be put into the package as well. If the third field # ("target") exists, it will be used instead of # ${DEPENDS_TARGET}. The first field also supports a # package name with a version range, in the form package>=1.2 # if a particular version is desired. # LIB_DEPENDS - A list of "lib:dir[:target]" tuples of other ports this # package depends on. "lib" is the name of a shared library. # TEST_DEPENDS - A list of "path:dir[:target]" tuples of other ports this # package depends on in the "test" stage. "path" is the # name of a file if it starts with a slash (/), an # executable otherwise. make will test for the existence # (if it is a full pathname) or search for it in your # $PATH (if it is an executable) and go into "dir" to do # a "make all install" if it's not found. If the third # field ("target") exists, it will be used instead of # ${DEPENDS_TARGET}. The first field also supports a # package name with a version range, in the form package>=1.2 # if a particular version is desired. # DEPENDS_TARGET # - The default target to execute when a port is calling a # dependency. # Default: install # # These variables control options about how a port gets built and/or # are shorthand notations for common sets of dependencies. # Use these if your port uses some of the common software packages. By # convention these should be set to 'yes', although they only need to be # defined. Defaults: not set, unless explicitly indicated below. # # Note: the distinction between the USE_* and WANT_* variables, and the # WITH_* and WITHOUT_* variables, are that the former are restricted to # usage inside the ports framework, and the latter are reserved for user- # settable options. (Setting USE_* in /etc/make.conf is always wrong). # # WITH_DEBUG - If set, debugging flags are added to CFLAGS and the # binaries don't get stripped by INSTALL_PROGRAM or # INSTALL_LIB. Besides, individual ports might # add their specific to produce binaries for debugging # purposes. You can override the debug flags that are # passed to the compiler by setting DEBUG_FLAGS. It is # set to "-g" at default. # # WITH_DEBUG_PORTS - A list of origins for which WITH_DEBUG will be set # # WITHOUT_SSP - Disable SSP. # # SSP_CFLAGS - Defaults to -fstack-protector. This value # is added to CFLAGS and the necessary flags # are added to LDFLAGS. Note that SSP_UNSAFE # can be used in Makefiles by port maintainers # if a port breaks with it (it should be # extremely rare). # # USE_GCC - If set, this port requires this version of gcc, either in # the system or installed from a port. # USE_CSTD - Override the default C language standard (gnu89, gnu99) # USE_CXXSTD Override the default C++ language standard # USE_BINUTILS - Use binutils suite from port instead of the version in base. # CFLAGS_${ARCH} Append the cflags to CFLAGS only on the specified architecture # CXXFLAGS_${ARCH} # Append the cxxflags to CXXFLAGS only on the specified architecture ## # USE_GL - A list of Mesa or GL related dependencies needed by the port. # Supported components are: egl, glesv2, glut, glu, glw, and gl. # If set to "yes", this is equivalent to "glu". Note that # glew and glut depend on glu, glw and glu depend on gl. ## # USE_SDL - If set, this port uses the sdl libraries. # See bsd.sdl.mk for more information. ## # USE_OPENSSL - If set, this port relies on the OpenSSL package. ## # USE_OPENLDAP - If set, this port uses the OpenLDAP libraries. # Implies: WANT_OPENLDAP_VER?=24 # WANT_OPENLDAP_VER # - Legal values are: 23, 24 # If set to an unknown value, the port is marked BROKEN. # WANT_OPENLDAP_SASL # - If set, the system should use OpenLDAP libraries # with SASL support. ## # USE_AUTOTOOLS - If set, this port uses various GNU autotools # (libtool, autoconf, autoheader, automake et al.) # See bsd.autotools.mk for more details. ## # USE_FPC - If set, this port relies on the Free Pascal language. # Implies inclusion of bsd.fpc.mk. (Also see # that file for more information on WANT_FPC_*). # USE_JAVA - If set, this port relies on the Java language. # Implies inclusion of bsd.java.mk. (Also see # that file for more information on USE_JAVA_*). # USE_OCAML - If set, this port relies on the OCaml language. # Implies inclusion of bsd.ocaml.mk. (Also see # that file for more information on USE_OCAML*). # USE_RUBY - If set, this port relies on the Ruby language. # Implies inclusion of bsd.ruby.mk. (Also see # that file for more information on USE_RUBY_*). ## # USE_GECKO - If set, this port uses the Gecko/Mozilla product. # See bsd.gecko.mk for more details. ## # USE_WX - If set, this port uses the WxWidgets library and related # components. See bsd.wx.mk for more details. ## # USE_KDE4 - A list of the KDE 4 dependencies the port has (e.g., # kdelibs, kdebase). Implies that the port needs KDE. # Implies inclusion of bsd.kde4.mk. See bsd.kde4.mk # for more details. # # USE_QT4 - A list of the Qt 4 dependencies the port has (e.g, # corelib, webkit). Implies that the port needs Qt. # Implies the inclusion of bsd.qt.mk. See bsd.qt.mk # for more details. # # USE_QT5 - A list of the Qt 5 dependencies the port has (e.g, # core, webkit). Implies that the port needs Qt. # Implies the inclusion of bsd.qt.mk. See bsd.qt.mk # for more details. # # USE_LINUX - Set to yes to say the port needs the default linux base port. # Set to value , if the port needs emulators/linux_base-. # Implies appropriate settings for STRIP and STRIP_CMD. # USE_LINUX_PREFIX # - controls the action of PREFIX (see above). Only use this # if the port is a linux infrastructure port (e.g. contains libs # or a sound server which supports the FreeBSD native one), # use the default or the X11 prefix if it's a leaf port # (e.g. a game or program). # Implies NO_MTREE=yes, and, if USE_LDCONFIG is defined: # - USE_LINUX=yes # - appropriate invocation of the Linux ldconfig # USE_LINUX_RPM - Set to yes to pull in variables and targets useful to Linux # RPM ports. +# Set to nolib if your port does not contain an architecture- +# specific library. # Implies inclusion of bsd.linux-rpm.mk. # # LINUX_OSRELEASE - Contains the value of compat.linux.osrelease sysctl. # Will be used to distinguish which linux # infrastructure ports should be used. # Valid values: 2.6.16. # # OVERRIDE_LINUX_BASE_PORT # - This specifies the default linux base to use, for valid # values have a look at the description of USE_LINUX. This is # an user-only variable. Don't use it in any port, it's meant # to be used in make.conf. # # LINUX_BASE_PORT # - This is a read-only variable, it gets set to a value which is # usable in *_DEPENDS (e.g. BUILD_DEPENDS=${LINUX_BASE_PORT}). # It honors USE_LINUX=foo and OVERRIDE_LINUX_BASE_PORT. ## # USE_XORG - Set to a list of X.org module dependencies. # Implies inclusion of bsd.xorg.mk. ## # USE_TEX - A list of the TeX dependencies the port has. # ## # USE_RC_SUBR - If set, the ports startup/shutdown script uses the common # routines found in /etc/rc.subr. # If this is set to a list of files, these files will be # automatically added to ${SUB_FILES}, some %%VAR%%'s will # automatically be expanded, they will be installed in # ${PREFIX}/etc/rc.d if ${PREFIX} is not /usr, otherwise they # will be installed in /etc/rc.d/ and added to the packing list. ## # USE_APACHE - If set, this port relies on an apache webserver. # # Conflict checking. Use if your port cannot be installed at the same time as # another package. # # CONFLICTS - A list of package name patterns that the port conflicts # with, separated by blanks. The names may include shell # pattern meta-characters "*", "?", "[", "]", and "!". # Example: apache*-1.2* apache*-1.3.[012345] apache-*+ssl_* # # CONFLICTS_BUILD # - Check conflict prior to the build. # # CONFLICTS_INSTALL # - Check conflict prior to the installation stage. # # Various directory definitions and variables to control them. # You rarely need to redefine any of these except WRKSRC and NO_WRKSUBDIR. # # LOCALBASE - Where ports install things. # Default: /usr/local # LINUXBASE - Where Linux ports install things. # Default: /compat/linux # PREFIX - Where *this* port installs its files. # Default: ${LINUXBASE} if USE_LINUX_PREFIX is set, # otherwise ${LOCALBASE} # # IGNORE_PATH_CHECKS # - There are some sanity checks against PREFIX. # You can disable these checks with defining # this variable, but this is not recommended! # Only do this if you really know what you are # doing. These sanity checks are the following: # - PREFIX has to be an absolute path. # - PREFIX can't have a trailing slash. # # BUNDLE_LIBS Teach pkg(8) to not automatically add all shared libraries # installed by a port as shared libraries "provided" for # other packages (i.e., do not expose them in the solver). # This has to be used for ports that bundle third party # libraries for internal usage. # MASTERDIR - Where the port finds patches, package files, etc. Define # this is you have two or more ports that share most of the # files. # Default: ${.CURDIR} # PORTSDIR - The root of the ports tree. # Default: /usr/ports # DISTDIR - Where to search for and store copies of original sources # Default: ${PORTSDIR}/distfiles # PACKAGES - A top level directory where all packages go (rather than # going locally to each port). # Default: ${PORTSDIR}/packages # WRKDIRPREFIX - The place to root the temporary working directory # hierarchy. # Default: none # WRKDIR - A temporary working directory that gets *clobbered* on clean # Default: ${WRKDIRPREFIX}${.CURDIR}/work # WRKSRC - A subdirectory of ${WRKDIR} where the distribution actually # unpacks to. # Default: ${WRKDIR}/${DISTNAME} # WRKSRC_SUBDIR - A subdirectory of ${WRKSRC} where the distribution actually # builds in. # Default: not set # NO_WRKSUBDIR - Assume port unpacks without a subdirectory, and extract it in # ${WRKSRC} instead of ${WRKDIR}. # PATCHDIR - A directory containing any additional patches you made # to port this software to FreeBSD. # Default: ${MASTERDIR}/files # SCRIPTDIR - A directory containing any auxiliary scripts # Default: ${MASTERDIR}/scripts # FILESDIR - A directory containing any miscellaneous additional files. # Default: ${MASTERDIR}/files # PKGDIR - A directory containing any package creation files. # Default: ${MASTERDIR} # SRC_BASE - The root of the src tree. (Some ports require this to get # kernel sources). Default: /usr/src # UID_FILES - A list of files containing information about registered UIDs. # Note that files have decreasing priority. # GID_FILES - A list of files containing information about registered GIDs. # Note that files have decreasing priority. # # Variables that serve as convenient "aliases" for your *-install targets. # Use these like: "${INSTALL_PROGRAM} ${WRKSRC}/prog ${PREFIX}/bin". # # INSTALL_PROGRAM # - A command to install binary executables. (By # default, also strips them, unless ${STRIP} is # overridden to be the empty string). # INSTALL_KLD - As INSTALL_PROGRAM, but without the STRIP. # INSTALL_LIB - As INSTALL_DATA, but also strips the file. # INSTALL_SCRIPT # - A command to install executable scripts. # INSTALL_DATA - A command to install sharable data. # INSTALL_MAN - A command to install manpages. # COPYTREE_BIN # COPYTREE_SHARE # - Similiar to INSTALL_PROGRAM and INSTALL_DATA commands but # working on whole trees of directories, takes 3 arguments, # last one is find(1) arguments and optional. # Example use: # cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${DOCSDIR} "! -name *\.bak" # # Installs all directories and files from ${WRKSRC}/doc # to ${DOCSDIR} except sed(1) backup files. # # MANPREFIX - The directory prefix for ${MAN} and ${MLINKS}. # Default: ${PREFIX} # MANPREFIX # - If manual pages of some sections install in different # locations than others, use these. # Default: ${MANPREFIX} # # Set the following to specify all .info files your port installs. # # INFO - A list of .info files (omitting the trailing ".info"); # only one entry per document! These files are listed in # the path relative to ${INFO_PATH}. # INFO_PATH - Path, where all .info files will be installed by your # port, relative to ${PREFIX} # Default: "share/info" if ${PREFIX} is equal to /usr # and "info" otherwise. # # Set the following to specify all documentation your port installs into # ${DOCSDIR} # # PORTDOCS - A list of files and directories relative to DOCSDIR. # Shell glob patterns can be used, directories include # the entire subtree of contained files and directories. # Should not be set when no documentation files are # installed. # Useful for dynamically generated documentation. # # Set the following to specify all documentation your port installs into # ${EXAMPLESDIR} # # PORTEXAMPLES - A list of files and directories relative to EXAMPLESDIR. # Shell glob patterns can be used, directories include # the entire subtree of contained files and directories. # Should not be set when no examples files are # installed. # Useful for dynamically generated examples. # # Set the following to specify all files and directories your port installs into # ${DATADIR} # # PORTDATA - A list of files and directories relative to DATADIR. # Shell glob patterns can be used, directories include # the entire subtree of contained files and directories. # Should not be set when no data files are # installed. # Useful for dynamically generated data files. # # Default targets and their behaviors: # # fetch - Retrieves missing ${DISTFILES} and ${PATCHFILES} for this # port. # fetch-list - Show list of commands to retrieve missing ${DISTFILES} and # ${PATCHFILES} for this port. # fetch-recursive # - Retrieves missing ${DISTFILES} and ${PATCHFILES} for this # port and dependencies. # fetch-recursive-list # - Show list of commands to retrieve missing ${DISTFILES} and # ${PATCHFILES} for this port and dependencies. # fetch-required # - Retrieves missing ${DISTFILES} and ${PATCHFILES} for this # port and dependencies. # fetch-required-list # - Show list of commands to retrieve missing ${DISTFILES} and # ${PATCHFILES} for this port and dependencies. # fetch-url-list # - Show list of URLS to retrieve missing ${DISTFILES} and # ${PATCHFILES} for this port. # fetch-urlall-list # - Show list of URLS to retrieve ${DISTFILES} and # ${PATCHFILES} for this port. # # all-depends-list # - Show all directories which are dependencies # for this port. # build-depends-list # - Show all directories which are build-dependencies # for this port. # package-depends-list # - Show all directories which are package-dependencies # for this port. This is based upon the dependency # tree as recorded in the Makefiles of the ports # collection, not as recorded in the currently # installed ports. # actual-package-depends # - Like package-depends-list but with the difference # that the dependencies of the currently installed # ports are used instead of the dependencies as # recorded in the ports collection. # run-depends-list # - Show all directories which are run-dependencies # for this port. # test-depends-list # - Show all directories which are test-dependencies # for this port. # # extract - Unpacks ${DISTFILES} into ${WRKDIR}. # patch - Apply any provided patches to the source. # configure - Runs either GNU configure, one or more local configure # scripts or nothing, depending on what's available. # build - Actually compile the sources. # install - Install the results of a build. # reinstall - Install the results of a build, ignoring "already installed" # flag. # deinstall - Remove the installation. # deinstall-all - Remove all installations with the same PKGORIGIN. # test - Run tests for the port. # package - Create a package from an _installed_ port. # package-recursive # - Create a package for a port and _all_ of its dependencies. # describe - Try to generate a one-line description for each port for # use in INDEX files and the like. # check-plist - Checks for files missing from the plist, and files in the plist # that are not installed by the port. # check-sanity - Perform some basic checks of the port layout. # checkpatch - Do a "patch -C" instead of a "patch". Note that it may # give incorrect results if multiple patches deal with # the same file. # checksum - Use distinfo to ensure that your distfiles are valid. # checksum-recursive # - Run checksum in this port and all dependencies. # makesum - Generate distinfo (only do this for your own ports!). # clean - Remove ${WRKDIR} and other temporary files used for building. # clean-depends - Do a "make clean" for all dependencies. # config - Configure options for this port (using ${DIALOG}). # Automatically run prior to extract, patch, configure, build, # install, and package. # config-recursive # - Configure options for this port for a port and all its # dependencies. # showconfig - Display options config for this port. # showconfig-recursive # - Display options config for this port and all its # dependencies. # rmconfig - Remove the options config for this port. # rmconfig-recursive # - Remove the options config for this port and all its # dependencies. # # Default sequence for "all" is: # # check-sanity fetch checksum extract patch configure build # # Please read the comments in the targets section below; you # should be able to use the pre-* or post-* targets/scripts # (which are available for every stage except checksum) or # override the do-* targets to do pretty much anything you want. # # The TARGET_ORDER_OVERRIDE variable can be set to multiple : # to change the ordering of targets, have a look at the _SEQ variables at the # end of this file for the default order and priorities. # # NEVER override the "regular" targets unless you want to open # a major can of worms. # # Set these variables if your port doesn't need some of the steps. # Note that there are no NO_PATCH or NO_CONFIGURE variables because # those steps are empty by default. NO_EXTRACT is not allowed anymore # since we need to at least create ${WRKDIR}. Also, NO_CHECKSUM is a user # variable and is not to be set in a port's Makefile. See above for NO_PACKAGE. # # NO_BUILD - Use a dummy (do-nothing) build target. # NO_INSTALL - Use a dummy (do-nothing) install target. # NO_TEST - Use a dummy (do-nothing) test target. # # Here are some variables used in various stages. # # For options see bsd.options.mk # # For fetch: # # FETCH_BINARY - Path to ftp/http fetch command if not in $PATH. # Default: "/usr/bin/fetch" # FETCH_ARGS - Arguments to ftp/http fetch command. # Default: "-Fpr" # FETCH_CMD - ftp/http fetch command. # Default: ${FETCH_BINARY} ${FETCH_ARGS} # FETCH_BEFORE_ARGS # - Arguments to ${FETCH_CMD} before filename. # Default: none # FETCH_AFTER_ARGS # - Arguments to ${FETCH_CMD} following filename. # Default: none # FETCH_ENV - Environment to pass to ${FETCH_CMD}. # Default: none # FETCH_REGET - Times to retry fetching of files on checksum errors. # Default: 1 # CLEAN_FETCH_ENV # - Disable package dependency in fetch target for mass # fetching. User settable. # # For extract: # # EXTRACT_CMD - Command for extracting archive # Default: ${TAR} # EXTRACT_BEFORE_ARGS # - Arguments to ${EXTRACT_CMD} before filename. # Default: "-xf" # EXTRACT_AFTER_ARGS # - Arguments to ${EXTRACT_CMD} following filename. # Default: "--no-same-owner --no-same-permissions" # For patch: # # EXTRA_PATCHES - Define this variable if you have patches not in # ${PATCHDIR}. This usually happens when you need to # do some pre-processing before some distribution # patches can be applied. In that case, fetch them as # extra distfiles, put the processed results in # ${WRKDIR}, then point EXTRA_PATCHES to them. # The patches specified by this variable will be # applied after the normal distribution patches but # before those in ${PATCHDIR}. # PATCH_WRKSRC - Directory to apply patches in. # Default: ${WRKSRC} # # For configure: # # HAS_CONFIGURE - If set, this port has its own configure script. The # configure stage will not do anything if this is not set. # GNU_CONFIGURE - If set, you are using GNU configure (optional). Implies # HAS_CONFIGURE. # CONFIGURE_WRKSRC # - Directory to run configure in. # Default: ${WRKSRC} # CONFIGURE_SCRIPT # - Name of configure script, relative to ${CONFIGURE_WRKSRC}. # Default: "Makefile.PL" if USES=perl5 and USE_PERL5=configure # are set, "configure" otherwise. # CONFIGURE_TARGET # - The name of target to call when GNU_CONFIGURE is # defined. # Default: ${ARCH}-portbld-${OPSYS:tl}${OSREL} # GNU_CONFIGURE_PREFIX # - The directory passed as prefix to the configure script if # GNU_CONFIGURE is set. # Default: ${PREFIX} # CONFIGURE_ARGS # - Pass these args to configure if ${HAS_CONFIGURE} is set. # Default: "--prefix=${GNU_CONFIGURE_PREFIX} # --infodir=${PREFIX}/${INFO_PATH} --localstatedir=/var # --mandir=${MANPREFIX}/man --build=${CONFIGURE_TARGET}" if # GNU_CONFIGURE is set, "CC=${CC} CFLAGS=${CFLAGS} # PREFIX=${PREFIX} INSTALLPRIVLIB=${PREFIX}/lib # INSTALLARCHLIB=${PREFIX}/lib" if USES=perl5 and # USE_PERL5=configure are set, empty otherwise. # CONFIGURE_ENV - Pass these env (shell-like) to configure if # ${HAS_CONFIGURE} is set. # CONFIGURE_LOG - The name of configure log file. It will be printed to # the screen if configure fails. # Default: config.log # CONFIGURE_FAIL_MESSAGE # - A message displayed to users when configure # fails (note: this assumes the do-configure # target has not been overwritten). This message # will be passed through /usr/bin/fmt before # being shown to the user. # # WITHOUT_FBSD10_FIX Disable FreeBSD 10.0 autotools workaround. # # For build and install: # # MAKEFILE - Name of the makefile. # Default: Makefile # ALL_TARGET - Default target for sub-make in build stage. # Default: all # BUILD_WRKSRC - Directory to do build in (default: ${WRKSRC}). # MAKE_ENV - Additional environment vars passed to sub-make in build # and install stages. # Default: see below # MAKE_ARGS - Any extra arguments to sub-make in build and install stages. # Default: none ## # MAKE_JOBS_UNSAFE # - Disallow multiple jobs even when user set a global override. # To be used with known bad ports. # DISABLE_MAKE_JOBS # - Set to disable the multiple jobs feature. User settable. # MAKE_JOBS_NUMBER # - Override the number of make jobs to be used. User settable. # MAKE_JOBS_NUMBER_LIMIT # - Set a limit for maximum number of make jobs allowed to be # used. ## cacche # # WITH_CCACHE_BUILD # - Enable CCACHE support (devel/ccache). User settable. # CCACHE_DIR # - Which directory to use for ccache (default: $HOME/.ccache) # NO_CCACHE # - Disable CCACHE support for example for certain ports if # CCACHE is enabled. User settable. # # For test: # # TEST_TARGET - Target for sub-make in test stage. If not defined, # no default test target is provided. # Default: (none) # TEST_WRKSRC - Directory to do test in (default: ${WRKSRC}). # TEST_ENV - Additional environment vars passed to sub-make in test # stage # Default: ${MAKE_ENV} # TEST_ARGS - Any extra arguments to sub-make in test stage # Default: ${MAKE_ARGS} # # For install: # # INSTALL_TARGET # - Default target for sub-make in install stage. # Default: install # INSTALL_WRKSRC # - Directory to install from # Default: ${WRKSRC} # NO_MTREE - If set, will not invoke mtree from bsd.port.mk from # the "install" target. # MTREE_FILE - The name of the mtree file. # Default: ${PORTSDIR}/Templates/BSD.local.dist or # /etc/mtree/BSD.usr.dist if ${PREFIX} == "/usr". # PLIST_DIRS - Directories to be added to packing list # PLIST_FILES - Files and symbolic links to be added to packing list # # PLIST - Name of the `packing list' file. # Change this to ${WRKDIR}/PLIST or something if you # need to write to it. (It is not a good idea for a port # to write to any file outside ${WRKDIR} during a normal # build.) # Default: ${PKGDIR}/pkg-plist # TMPPLIST - Name of the `packing list' file after processing # Default: ${WRKDIR}/.PLIST.mktmp # PLIST_SUB - List of "variable=value" pair for substitution in ${PLIST} # Default: see below # # SUB_FILES - Files that should be passed through sed(1) and redirected to # ${WRKDIR}. # - For each file specified in SUB_FILES, there must be a # corresponding file in ${FILESDIR} whose suffix is ".in". For # instance, if the Makefile specifies "SUB_FILES= pkg-message" # then there must be a file called pkg-message.in in # ${FILESDIR}. # - The substitution process is the same as PLIST_FILES, as # described below except that any line beginning with @comment # is deleted. # SUB_LIST - List of "variable=value" pair for substitution in ${SUB_FILES} # Some pairs are added by default: eg. PREFIX=${PREFIX} # # USE_LDCONFIG - If set to "yes", this adds ${PREFIX}/lib to the list of # directories to be searched for shared libraries. # Otherwise, this is a list of directories to be added to that # list. The directory names are written to # ${LOCALBASE}/libdata/ldconfig/${PKGBASE} which is then # used by the ldconfig startup script. # This mechanism replaces ldconfig scripts installed by some # ports, often under such names as 000.${UNQUENAME}.sh. # If USE_LINUX_PREFIX is defined, the Linux version of # ldconfig will be used instead of the native FreeBSD # version, and the directory list given will be ignored. # USE_LDCONFIG32 # - Same as USE_LDCONFIG but the target file is # ${LOCALBASE}/libdata/ldconfig32/${PKGBASE} instead. # Note: that should only be used on 64-bit architectures. # # DOCSDIR - Name of the directory to install the packages docs in. # Default: ${PREFIX}/share/doc/${PORTNAME} # DOCSDIR_REL - The DOCSDIR relative to ${PREFIX} # EXAMPLESDIR - Name of the directory to install the packages examples in. # Default: ${PREFIX}/share/examples/${PORTNAME} # EXAMPLESDIR_REL # - The EXAMPLESDIR relative to ${PREFIX} # DATADIR - Name of the directory to install the packages shared data in. # Default: ${PREFIX}/share/${PORTNAME} # DATADIR_REL - The DATADIR relative to ${PREFIX} # # WWWDIR - Name of the directory to install the packages www data in. # Default: ${PREFIX}/www/${PORTNAME} # WWWDIR_REL - The WWWDIR relative to ${PREFIX} # # USERS - List of users to create at install time. Each login must # have a corresponding entry in ${UID_FILES}. # GROUPS - List of groups to create at install time. Each group must # have a corresponding entry in ${GID_FILES}. # # DESKTOPDIR - Name of the directory to install ${DESKTOP_ENTRIES} in. # Default: ${PREFIX}/share/applications # DESKTOP_ENTRIES # - List of desktop entry files to generate and install in # ${DESKTOPDIR}. The format is # "Name" "Comment" "Icon" "Exec" "Categories" StartupNotify # Rules: # * Only add desktop entries for applications which do not # require a terminal (ie. X applications). # * If the upstream distribution already installs .desktop # files, you do not need to use this. # * If you require a more elaborate .desktop file than this # variable permits, write it yourself and install it # in ${DESKTOPDIR}. # Notes: # * Comment, Icon and StartupNotify may be empty # strings (""). Categories may be an empty string in some # cases (see below). The other fields are mandatory. # * If Comment is an empty string, port ${COMMENT} will be # used. # * If set, Icon must be either absolute path (usually # ${PREFIX}/share/pixmaps/${PORTNAME}.png) or icon name # without extension if installed icons follow Icon Theme # Specification. # * If Categories is an empty string, bsd.port.mk will try # to deduce a default value using the CATEGORIES variable. # If the deduction fails, you will have to set Categories # manually. You should check the generated value using # "make desktop-categories", and override it if necessary. # * Exec will also be used to name the .desktop file. # * StartupNotify may be true, false or empty (see Desktop # Entry Specification for details). # * The files will be automatically added to ${PLIST}. # Example: # "X Window Information" \ # "Get information about X windows" \ # "${PREFIX}/share/pixmaps/wininfo.png" \ # "${PREFIX}/bin/wininfo" \ # "System;" \ # "" # See http://standards.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html # for an explanation of the fields. If you need to create more # than one file, just chain them into a single variable. # # Note that the install target will automatically add manpages (see # above) and also substitute special sequences of characters (delimited # by "%%") as defined in PLIST_SUB to generate ${TMPPLIST}. For # instance, "OSREL=${OSREL}" in PLIST_SUB causes all occurrences of # "%%OSREL%%" in ${PLIST} to be substituted by the value of OSREL. # ${TMPPLIST} is generated before the do-install stage. If you are # generating the packing list on-the-fly, make sure it's generated before # do-install is called! # # This is used in all stages: # # SCRIPTS_ENV - Additional environment vars passed to scripts in # ${SCRIPTDIR} executed by bsd.port.mk. # Default: see below # # Finally, variables to change if you want a special behavior. These # are for debugging purposes. Don't set them in your Makefile. # # ECHO_MSG - Used to print all the '===>' style prompts - override this # to turn them off. # Default: ${ECHO_CMD} # PATCH_DEBUG - If set, print out more information about the patches as # it attempts to apply them. # PKG_DBDIR - Where package installation is recorded; this directory # must not contain anything else. # Default: /var/db/pkg # PORT_DBDIR - Where port configuration options are recorded. # Default: /var/db/ports # NO_PKG_REGISTER # - Don't register a port installation as a package. # FORCE_PKG_REGISTER # - If set, it will overwrite any existing package # registration information in ${PKG_DBDIR}/${PKGNAME}. # NO_DEPENDS - Don't verify build of dependencies. # STRICT_DEPENDS # - Verify dependencies but consider missing dependencies as # fatal. # CHECKSUM_ALGORITHMS # - Different checksum algorithms to check for verifying the # integrity of the distfiles. The absence of the algorithm # in distinfo doesn't make it fail. # Default: sha256 # NO_CHECKSUM - Don't verify the checksum. Typically used when # when you noticed the distfile you just fetched has # a different checksum and you intend to verify if # the port still works with it. # USE_PACKAGE_DEPENDS # - Try to install dependencies from existing packages instead # of building the port from scratch. Fallback on source # if an existing package is not present. # USE_PACKAGE_DEPENDS_ONLY # - Like USE_PACKAGE_DEPENDS, but do not fallback on source. # INSTALL_AS_USER # - Define this to install as the current user, intended # for systems where you have no root access. # DISABLE_SIZE - Do not check the size of a distfile even if the SIZE field # has been specified in distinfo. This is useful # when using an alternate FETCH_CMD. # # PKG_CREATE_VERBOSE - If set, pass the -v option to pkg create which # ensures periodic output during packaging and # will help prevent timeouts by build monitors # # End of the list of all variables that need to be defined in a port. # Most port authors should not need to understand anything after this point. # # These need to be absolute since we don't know how deep in the ports # tree we are and thus can't go relative. They can, of course, be overridden # by individual Makefiles or local system make configuration. PORTSDIR?= /usr/ports LOCALBASE?= /usr/local LINUXBASE?= /compat/linux DISTDIR?= ${PORTSDIR}/distfiles _DISTDIR?= ${DISTDIR}/${DIST_SUBDIR} INDEXDIR?= ${PORTSDIR} SRC_BASE?= /usr/src USESDIR?= ${PORTSDIR}/Mk/Uses SCRIPTSDIR?= ${PORTSDIR}/Mk/Scripts LIB_DIRS?= /lib /usr/lib ${LOCALBASE}/lib STAGEDIR?= ${WRKDIR}/stage NOTPHONY?= MINIMAL_PKG_VERSION= 1.6.0 # make sure bmake treats -V as expected .MAKE.EXPAND_VARIABLES= yes .include "${PORTSDIR}/Mk/bsd.commands.mk" .if defined(X_BUILD_FOR) .if !defined(.PARSEDIR) IGNORE= Cross building can only be done when using bmake(1) as make(1) .endif # Do not define CPP on purpose .if !defined(HOSTCC) HOSTCC:= ${CC} HOSTCXX:= ${CXX} .endif .if !exists(/usr/${X_BUILD_FOR}/usr/bin/cc) X_SYSROOT= ${LOCALBASE}/${X_BUILD_FOR} .else X_SYSROOT= /usr/${X_BUILD_FOR} .endif CC= ${X_SYSROOT}/usr/bin/cc CXX= ${X_SYSROOT}/usr/bin/c++ NM= ${X_BUILD_FOR}-nm STRIP_CMD= ${X_BUILD_FOR}-strip # only bmake support the below STRIPBIN= ${STRIP_CMD} .export.env STRIPBIN .endif # # DESTDIR section to start a chrooted process if invoked with DESTDIR set # .if defined(DESTDIR) && !empty(DESTDIR) && !defined(CHROOTED) && \ !defined(BEFOREPORTMK) && !defined(INOPTIONSMK) .include "${PORTSDIR}/Mk/bsd.destdir.mk" .else .if !target(makepatch) makepatch: @${SETENV} WRKDIR=${WRKDIR} PATCHDIR=${PATCHDIR} \ PATCH_WRKSRC=${PATCH_WRKSRC} \ STRIP_COMPONENTS="${PATCH_STRIP:S/-p//}" \ ${SH} ${SCRIPTSDIR}/smart_makepatch.sh .endif # Start of options section .if defined(INOPTIONSMK) || ( !defined(USEOPTIONSMK) && !defined(AFTERPORTMK) ) # Get the default maintainer MAINTAINER?= ports@FreeBSD.org # Get the architecture .if !defined(ARCH) ARCH!= ${UNAME} -p .endif _EXPORTED_VARS+= ARCH # Get the operating system type .if !defined(OPSYS) OPSYS!= ${UNAME} -s .endif _EXPORTED_VARS+= OPSYS .if !defined(_OSRELEASE) _OSRELEASE!= ${UNAME} -r .endif _EXPORTED_VARS+= _OSRELEASE # Get the operating system revision OSREL?= ${_OSRELEASE:C/-.*//} _EXPORTED_VARS+= OSREL # Get __FreeBSD_version .if !defined(OSVERSION) .if exists(/usr/include/sys/param.h) OSVERSION!= ${AWK} '/^\#define[[:blank:]]__FreeBSD_version/ {print $$3}' < /usr/include/sys/param.h .elif exists(${SRC_BASE}/sys/sys/param.h) OSVERSION!= ${AWK} '/^\#define[[:blank:]]__FreeBSD_version/ {print $$3}' < ${SRC_BASE}/sys/sys/param.h .else .error Unable to determine OS version. Either define OSVERSION, install /usr/include/sys/param.h or define SRC_BASE. .endif .endif _EXPORTED_VARS+= OSVERSION # Convert OSVERSION to major release number _OSVERSION_MAJOR= ${OSVERSION:C/([0-9]?[0-9])([0-9][0-9])[0-9]{3}/\1/} # Sanity checks for chroot/jail building. # Skip if OSVERSION specified on cmdline for testing. Only works for bmake. .if !defined(.MAKEOVERRIDES) || !${.MAKEOVERRIDES:MOSVERSION} .if ${_OSVERSION_MAJOR} != ${_OSRELEASE:R} .error UNAME_r (${_OSRELEASE}) and OSVERSION (${OSVERSION}) do not agree on major version number. .elif ${_OSVERSION_MAJOR} != ${OSREL:R} .error OSREL (${OSREL}) and OSVERSION (${OSVERSION}) do not agree on major version number. .endif .endif # Only define tools here (for transition period with between pkg tools) .include "${PORTSDIR}/Mk/bsd.commands.mk" .if !defined(_PKG_CHECKED) && !defined(PACKAGE_BUILDING) && exists(${PKG_BIN}) .if !defined(_PKG_VERSION) _PKG_VERSION!= ${PKG_BIN} -v .endif _PKG_STATUS!= ${PKG_BIN} version -t ${_PKG_VERSION:C/-.*//g} ${MINIMAL_PKG_VERSION} .if ${_PKG_STATUS} == "<" IGNORE= pkg(8) must be version ${MINIMAL_PKG_VERSION} or greater, but you have ${_PKG_VERSION}. You must upgrade the ${PKG_ORIGIN} port first .endif _PKG_CHECKED= 1 .endif _EXPORTED_VARS+= _PKG_CHECKED MASTERDIR?= ${.CURDIR} .if ${MASTERDIR} != ${.CURDIR} SLAVE_PORT?= yes MASTER_PORT?=${MASTERDIR:C/[^\/]+\/\.\.\///:C/[^\/]+\/\.\.\///:C/^.*\/([^\/]+\/[^\/]+)$/\\1/} .else SLAVE_PORT?= no MASTER_PORT?= .endif # If they exist, include Makefile.inc, then architecture/operating # system specific Makefiles, then local Makefile.local. .if ${MASTERDIR} != ${.CURDIR} && exists(${.CURDIR}/../Makefile.inc) .include "${.CURDIR}/../Makefile.inc" USE_SUBMAKE= yes .endif .if exists(${MASTERDIR}/../Makefile.inc) .include "${MASTERDIR}/../Makefile.inc" USE_SUBMAKE= yes .endif .if exists(${MASTERDIR}/Makefile.${ARCH}-${OPSYS}) .include "${MASTERDIR}/Makefile.${ARCH}-${OPSYS}" USE_SUBMAKE= yes .elif exists(${MASTERDIR}/Makefile.${OPSYS}) .include "${MASTERDIR}/Makefile.${OPSYS}" USE_SUBMAKE= yes .elif exists(${MASTERDIR}/Makefile.${ARCH}) .include "${MASTERDIR}/Makefile.${ARCH}" USE_SUBMAKE= yes .endif .if exists(${MASTERDIR}/Makefile.local) .include "${MASTERDIR}/Makefile.local" USE_SUBMAKE= yes .elif ${MASTERDIR} != ${.CURDIR} && exists(${.CURDIR}/Makefile.local) .include "${.CURDIR}/Makefile.local" USE_SUBMAKE= yes .endif .for _CATEGORY in ${CATEGORIES} PKGCATEGORY?= ${_CATEGORY} .endfor _PORTDIRNAME= ${.CURDIR:T} PORTDIRNAME?= ${_PORTDIRNAME} PKGORIGIN?= ${PKGCATEGORY}/${PORTDIRNAME} # where 'make config' records user configuration options PORT_DBDIR?= /var/db/ports UID_FILES?= ${PORTSDIR}/UIDs GID_FILES?= ${PORTSDIR}/GIDs UID_OFFSET?= 0 GID_OFFSET?= 0 # predefined accounts from src/etc/master.passwd # alpha numeric sort order USERS_BLACKLIST= _dhcp _pflogd auditdistd bin bind daemon games hast kmem mailnull man news nobody operator pop proxy root smmsp sshd toor tty uucp www LDCONFIG_DIR= libdata/ldconfig LDCONFIG32_DIR= libdata/ldconfig32 .endif # At least KDE needs TMPDIR for the package building, # so we're setting it to the known default value. .if defined(PACKAGE_BUILDING) TMPDIR?= /tmp .endif # defined(PACKAGE_BUILDING) .if defined(WITH_DEBUG_PORTS) .if ${WITH_DEBUG_PORTS:M${PKGORIGIN}} WITH_DEBUG= yes .endif .endif .include "${PORTSDIR}/Mk/bsd.options.mk" # Start of pre-makefile section. .if !defined(AFTERPORTMK) && !defined(INOPTIONSMK) .if defined(PORTNAME) .include "${PORTSDIR}/Mk/bsd.sanity.mk" .endif _PREMKINCLUDED= yes .if defined(PORTVERSION) .if ${PORTVERSION:M*[-_,]*}x != x IGNORE= PORTVERSION ${PORTVERSION} may not contain '-' '_' or ',' .endif DISTVERSION?= ${PORTVERSION:S/:/::/g} .elif defined(DISTVERSION) PORTVERSION= ${DISTVERSION:tl:C/([a-z])[a-z]+/\1/g:C/([0-9])([a-z])/\1.\2/g:C/:(.)/\1/g:C/[^a-z0-9+]+/./g} .endif PORTREVISION?= 0 .if ${PORTREVISION} != 0 _SUF1= _${PORTREVISION} .endif PORTEPOCH?= 0 .if ${PORTEPOCH} != 0 _SUF2= ,${PORTEPOCH} .endif PKGVERSION= ${PORTVERSION:C/[-_,]/./g}${_SUF1}${_SUF2} PKGNAME= ${PKGNAMEPREFIX}${PORTNAME}${PKGNAMESUFFIX}-${PKGVERSION} DISTVERSIONFULL= ${DISTVERSIONPREFIX}${DISTVERSION:C/:(.)/\1/g}${DISTVERSIONSUFFIX} .if defined(USE_GITHUB) && empty(MASTER_SITES:MGHC) && empty(DISTNAME) && empty(USE_GITHUB:Mnodefault) _GITHUB_MUST_SET_DISTNAME= yes .else DISTNAME?= ${PORTNAME}-${DISTVERSIONFULL} .endif INDEXFILE?= INDEX-${OSVERSION:C/([0-9]*)[0-9]{5}/\1/} DOCSDIR?= ${PREFIX}/share/doc/${PORTNAME} EXAMPLESDIR?= ${PREFIX}/share/examples/${PORTNAME} DATADIR?= ${PREFIX}/share/${PORTNAME} WWWDIR?= ${PREFIX}/www/${PORTNAME} ETCDIR?= ${PREFIX}/etc/${PORTNAME} .if defined(USE_LINUX_RPM) .include "${PORTSDIR}/Mk/bsd.linux-rpm.mk" .endif .if defined(USE_LINUX_APPS) .include "${PORTSDIR}/Mk/bsd.linux-apps.mk" .endif .if defined(USE_XORG) || defined(XORG_CAT) .include "${PORTSDIR}/Mk/bsd.xorg.mk" .endif PACKAGES?= ${PORTSDIR}/packages TEMPLATES?= ${PORTSDIR}/Templates KEYWORDS?= ${PORTSDIR}/Keywords PATCHDIR?= ${MASTERDIR}/files FILESDIR?= ${MASTERDIR}/files SCRIPTDIR?= ${MASTERDIR}/scripts PKGDIR?= ${MASTERDIR} .if defined(USE_LINUX_PREFIX) PREFIX:= ${LINUXBASE} NO_MTREE= yes .else PREFIX?= ${LOCALBASE} .endif .if defined(USE_LINUX_PREFIX) LDCONFIG_CMD?= ${LINUXBASE}/sbin/ldconfig -r ${LINUXBASE} .endif PKGCOMPATDIR?= ${LOCALBASE}/lib/compat/pkg .if defined(USE_LOCAL_MK) .include "${PORTSDIR}/Mk/bsd.local.mk" .endif .if defined(USE_OPENSSL) .include "${PORTSDIR}/Mk/bsd.openssl.mk" .endif .if defined(USE_EMACS) .include "${PORTSDIR}/Mk/bsd.emacs.mk" .endif .if defined(USE_PHP) .include "${PORTSDIR}/Mk/bsd.php.mk" .endif .if defined(USE_FPC) || defined(WANT_FPC_BASE) || defined(WANT_FPC_ALL) .include "${PORTSDIR}/Mk/bsd.fpc.mk" .endif .if defined(USE_JAVA) .include "${PORTSDIR}/Mk/bsd.java.mk" .endif .if defined(USE_RUBY) || defined(USE_LIBRUBY) .include "${PORTSDIR}/Mk/bsd.ruby.mk" .endif .if defined(USE_OCAML) .include "${PORTSDIR}/Mk/bsd.ocaml.mk" .endif .if defined(USE_APACHE) || defined(USE_APACHE_BUILD) || defined(USE_APACHE_RUN) .include "${PORTSDIR}/Mk/bsd.apache.mk" .endif .if defined(USE_QT4) || defined(USE_QT5) .include "${PORTSDIR}/Mk/bsd.qt.mk" .endif .if defined(USE_TEX) .include "${PORTSDIR}/Mk/bsd.tex.mk" .endif .if defined(USE_GECKO) .include "${PORTSDIR}/Mk/bsd.gecko.mk" .endif .if defined(WANT_GNOME) || defined(USE_GNOME) || defined(INSTALLS_ICONS) USES+= gnome .endif .if defined(USE_MATE) USES+= mate .endif .if defined(WANT_WX) || defined(USE_WX) || defined(USE_WX_NOT) .include "${PORTSDIR}/Mk/bsd.wx.mk" .endif .if defined(WANT_GSTREAMER) || defined(USE_GSTREAMER) || defined(USE_GSTREAMER1) .include "${PORTSDIR}/Mk/bsd.gstreamer.mk" .endif .if defined(USE_SDL) .include "${PORTSDIR}/Mk/bsd.sdl.mk" .endif .if defined(USE_KDE4) || defined(KDE4_BUILDENV) .include "${PORTSDIR}/Mk/bsd.kde4.mk" .endif .if !defined(UID) UID!= ${ID} -u .endif DESTDIRNAME?= DESTDIR # setup empty variables for USES targets .for target in sanity fetch extract patch configure build install test package stage _USES_${target}?= .endfor # Loading features .for f in ${USES} _f:= ${f:C/\:.*//} .if !defined(${_f}_ARGS) ${_f}_ARGS:= ${f:C/^[^\:]*(\:|\$)//:S/,/ /g} .endif .endfor .for f in ${USES} .include "${USESDIR}/${f:C/\:.*//}.mk" .endfor EXTRACT_SUFX?= .tar.gz # You can force skipping these test by defining IGNORE_PATH_CHECKS .if !defined(IGNORE_PATH_CHECKS) .if ! ${PREFIX:M/*} .BEGIN: @${ECHO_MSG} "PREFIX must be defined as an absolute path so that when 'make'" @${ECHO_MSG} "is invoked in the work area PREFIX points to the right place." @${FALSE} .endif .endif # Owner and group of the WWW user WWWOWN?= www WWWGRP?= www # Keep PKGNG_ORIGIN/WITH_PKGNG for compat with scripts which are looking for it PKG_ORIGIN?= ports-mgmt/pkg PKGNG_ORIGIN= ${PKG_ORIGIN} WITH_PKGNG?= yes WITH_PKG?= ${WITH_PKGNG} .endif # End of pre-makefile section. # Start of post-makefile section. .if !defined(BEFOREPORTMK) && !defined(INOPTIONSMK) .if defined(_POSTMKINCLUDED) DEV_ERROR+= "${PKGNAME}: Makefile error: you cannot include bsd.port[.post].mk twice" @${FALSE} .endif _POSTMKINCLUDED= yes .if defined(BUNDLE_LIBS) PKG_NOTES+= no_provide_shlib PKG_NOTE_no_provide_shlib= yes .endif TEST_ARGS?= ${MAKE_ARGS} TEST_ENV?= ${MAKE_ENV} PKG_ENV+= PORTSDIR=${PORTSDIR} CONFIGURE_ENV+= XDG_DATA_HOME=${WRKDIR} \ XDG_CONFIG_HOME=${WRKDIR} \ HOME=${WRKDIR} MAKE_ENV+= XDG_DATA_HOME=${WRKDIR} \ XDG_CONFIG_HOME=${WRKDIR} \ HOME=${WRKDIR} # Respect TMPDIR passed via make.conf or similar and pass it down # to configure and make. .if defined(TMPDIR) MAKE_ENV+= TMPDIR="${TMPDIR}" CONFIGURE_ENV+= TMPDIR="${TMPDIR}" .endif # defined(TMPDIR) QA_ENV+= STAGEDIR=${STAGEDIR} \ PREFIX=${PREFIX} \ LINUXBASE=${LINUXBASE} \ LOCALBASE=${LOCALBASE} \ "STRIP=${STRIP}" \ TMPPLIST=${TMPPLIST} \ PKGBASE=${PKGBASE} .if !empty(USES:Mdesktop-file-utils) QA_ENV+= USESDESKTOPFILEUTILS=yes .endif .if !empty(USES:Mlibtool*) QA_ENV+= USESLIBTOOL=yes .endif .if !empty(USES:Mshared-mime-info) QA_ENV+= USESSHAREDMIMEINFO=yes .endif .if !empty(USES:Mterminfo) QA_ENV+= USESTERMINFO=yes .endif CO_ENV+= STAGEDIR=${STAGEDIR} \ PREFIX=${PREFIX} \ LOCALBASE=${LOCALBASE} \ WRKDIR=${WRKDIR} \ WRKSRC=${WRKSRC} \ MTREE_FILE=${MTREE_FILE} \ TMPPLIST=${TMPPLIST} \ SCRIPTSDIR=${SCRIPTSDIR} \ PLIST_SUB_SED="${PLIST_SUB_SED}" \ PORT_OPTIONS="${PORT_OPTIONS}" \ PORTSDIR="${PORTSDIR}" .if defined(X_BUILD_FOR) BUILD_DEPENDS+= ${X_BUILD_FOR}-cc:devel/${X_BUILD_FOR}-xdev PKG_ENV+= ABI_FILE=${X_SYSROOT}/usr/lib/crt1.o MAKE_ENV+= NM=${NM} \ STRIPBIN=${X_BUILD_FOR}-strip \ PKG_CONFIG_SYSROOT_DIR="${X_SYSROOT}" CONFIGURE_ENV+= PKG_CONFIG_SYSROOT_DIR="${X_SYSROOT}" .endif WRKDIR?= ${WRKDIRPREFIX}${.CURDIR}/work .if !defined(IGNORE_MASTER_SITE_GITHUB) && defined(USE_GITHUB) WRKSRC?= ${WRKDIR}/${GH_PROJECT}-${GH_TAGNAME_EXTRACT} .endif # If the distname is not extracting into a specific subdirectory, have the # ports framework force extract into a subdirectory so that metadata files # do not get in the way of the build, and vice-versa. .if defined(NO_WRKSUBDIR) # Some ports have DISTNAME=PORTNAME, and USE_RC_SUBR=PORTNAME, in those case, # the rc file will conflict with WRKSRC, as WRKSRC is artificial, make it the # most unlikely to conflict as we can. WRKSRC?= ${WRKDIR}/${PKGNAME} EXTRACT_WRKDIR:= ${WRKSRC} .else WRKSRC?= ${WRKDIR}/${DISTNAME} EXTRACT_WRKDIR:= ${WRKDIR} .endif .if defined(WRKSRC_SUBDIR) WRKSRC:= ${WRKSRC}/${WRKSRC_SUBDIR} .endif PATCH_WRKSRC?= ${WRKSRC} CONFIGURE_WRKSRC?= ${WRKSRC} BUILD_WRKSRC?= ${WRKSRC} INSTALL_WRKSRC?=${WRKSRC} TEST_WRKSRC?= ${WRKSRC} PLIST_SUB+= OSREL=${OSREL} PREFIX=%D LOCALBASE=${LOCALBASE} \ RESETPREFIX=${PREFIX} SUB_LIST+= PREFIX=${PREFIX} LOCALBASE=${LOCALBASE} \ DATADIR=${DATADIR} DOCSDIR=${DOCSDIR} EXAMPLESDIR=${EXAMPLESDIR} \ WWWDIR=${WWWDIR} ETCDIR=${ETCDIR} # This is used for check-stagedir.sh and check_leftover.sh to replace # directories/files with PLIST_SUB %%KEYS%%. # Remove VARS that are too generic # Remove empty values # Remove @comment values # Remove quotes # Replace . with \. for later sed(1) usage PLIST_SUB_SED_MIN?= 2 PLIST_SUB_SED?= ${PLIST_SUB:C/.*=.{1,${PLIST_SUB_SED_MIN}}$//g:NEXTRACT_SUFX=*:NOSREL=*:NLIB32DIR=*:NPREFIX=*:NLOCALBASE=*:NRESETPREFIX=*:N*="":N*="@comment*:C/([^=]*)="?([^"]*)"?/s!\2!%%\1%%!g;/g:C/\./\\./g} # kludge to strip trailing whitespace from CFLAGS; # sub-configure will not # survive double space CFLAGS:= ${CFLAGS:C/ $//} .if defined(WITHOUT_CPU_CFLAGS) .if defined(_CPUCFLAGS) .if !empty(_CPUCFLAGS) CFLAGS:= ${CFLAGS:C/${_CPUCFLAGS}//} .endif .endif .endif # Reset value from bsd.own.mk. .if defined(WITH_DEBUG) && !defined(WITHOUT_DEBUG) .if !defined(INSTALL_STRIPPED) STRIP= #none MAKE_ENV+= DONTSTRIP=yes STRIP_CMD= ${TRUE} .endif DEBUG_FLAGS?= -g CFLAGS:= ${CFLAGS:N-O*:N-fno-strict*} ${DEBUG_FLAGS} .if defined(INSTALL_TARGET) INSTALL_TARGET:= ${INSTALL_TARGET:S/^install-strip$/install/g} .endif .endif .if !defined(WITHOUT_SSP) .include "${PORTSDIR}/Mk/bsd.ssp.mk" .endif # XXX PIE support to be added here MAKE_ENV+= NO_PIE=yes # We will control debug files. Don't let builds that use /usr/share/mk # split out debug symbols since the plist won't know to expect it. MAKE_ENV+= WITHOUT_DEBUG_FILES=yes MAKE_ENV+= WITHOUT_KERNEL_SYMBOLS=yes .if defined(NOPORTDOCS) PLIST_SUB+= PORTDOCS="@comment " .else PLIST_SUB+= PORTDOCS="" .endif .if defined(NOPORTEXAMPLES) PLIST_SUB+= PORTEXAMPLES="@comment " .else PLIST_SUB+= PORTEXAMPLES="" .endif CONFIGURE_SHELL?= ${SH} MAKE_SHELL?= ${SH} CONFIGURE_ENV+= SHELL=${CONFIGURE_SHELL} CONFIG_SHELL=${CONFIGURE_SHELL} MAKE_ENV+= SHELL=${MAKE_SHELL} NO_LINT=YES .if defined(PATCHFILES) && ${PATCHFILES:M*.zip} PATCH_DEPENDS+= ${LOCALBASE}/bin/unzip:archivers/unzip .endif # Check the compatibility layer for amd64/ia64 .if ${ARCH} == "amd64" || ${ARCH} =="ia64" .if exists(/usr/lib32) HAVE_COMPAT_IA32_LIBS?= YES .endif .if !defined(HAVE_COMPAT_IA32_KERN) HAVE_COMPAT_IA32_KERN!= if ${SYSCTL} -n compat.ia32.maxvmem >/dev/null 2>&1; then echo YES; fi; echo .if empty(HAVE_COMPAT_IA32_KERN) .undef HAVE_COMPAT_IA32_KERN .endif .endif .endif _EXPORTED_VARS+= HAVE_COMPAT_IA32_KERN .if defined(IA32_BINARY_PORT) && ${ARCH} != "i386" .if ${ARCH} == "amd64" || ${ARCH} == "ia64" .if !defined(HAVE_COMPAT_IA32_KERN) IGNORE= requires a kernel with compiled-in IA32 compatibility .elif !defined(HAVE_COMPAT_IA32_LIBS) IGNORE= requires 32-bit libraries installed under /usr/lib32 .endif _LDCONFIG_FLAGS=-32 LIB32DIR= lib32 .else IGNORE= requires i386 (or compatible) platform to run .endif .else LIB32DIR= lib .endif PLIST_SUB+= LIB32DIR=${LIB32DIR} .if ${WITH_PKG} == devel PKG_ORIGIN= ports-mgmt/pkg-devel .endif .if !defined(PKG_DEPENDS) && !defined(CLEAN_FETCH_ENV) PKG_DEPENDS+= ${LOCALBASE}/sbin/pkg:${PKG_ORIGIN} .endif .if defined(USE_GCC) .include "${PORTSDIR}/Mk/bsd.gcc.mk" .endif .if defined(USE_BINUTILS) && !defined(DISABLE_BINUTILS) BUILD_DEPENDS+= ${LOCALBASE}/bin/as:devel/binutils BINUTILS?= ADDR2LINE AR AS CPPFILT GPROF LD NM OBJCOPY OBJDUMP RANLIB \ READELF SIZE STRINGS BINUTILS_NO_MAKE_ENV?= . for b in ${BINUTILS} ${b}= ${LOCALBASE}/bin/${b:C/PP/++/:tl} . if defined(GNU_CONFIGURE) || defined(BINUTILS_CONFIGURE) CONFIGURE_ENV+= ${b}="${${b}}" . endif . if ${BINUTILS_NO_MAKE_ENV:M${b}} == "" MAKE_ENV+= ${b}="${${b}}" . endif . endfor .endif .if defined(USE_OPENLDAP) || defined(WANT_OPENLDAP_VER) .include "${PORTSDIR}/Mk/bsd.ldap.mk" .endif .if defined(USE_RC_SUBR) && ${USE_RC_SUBR:tu} != "YES" SUB_FILES+= ${USE_RC_SUBR} .endif .if defined(USE_RCORDER) SUB_FILES+= ${USE_RCORDER} .endif .if defined(USE_LDCONFIG) && ${USE_LDCONFIG:tl} == "yes" USE_LDCONFIG= ${PREFIX}/lib .endif .if defined(USE_LDCONFIG32) && ${USE_LDCONFIG32:tl} == "yes" IGNORE= has USE_LDCONFIG32 set to yes, which is not correct .endif .if defined(USE_LINUX_PREFIX) && defined(USE_LDCONFIG) # we need ${LINUXBASE}/sbin/ldconfig USE_LINUX?= yes .endif .if defined(USE_LINUX) . if !defined(LINUX_OSRELEASE) LINUX_OSRELEASE!= ${ECHO_CMD} `${SYSCTL} -n compat.linux.osrelease 2>/dev/null` . endif _EXPORTED_VARS+= LINUX_OSRELEASE # install(1) also does a brandelf on strip, so don't strip with FreeBSD tools. STRIP= . if exists(${LINUXBASE}/usr/bin/strip) STRIP_CMD= ${LINUXBASE}/usr/bin/strip . else STRIP_CMD= ${TRUE} . endif # Allow the user to specify another linux_base version. . if defined(OVERRIDE_LINUX_BASE_PORT) . if ${USE_LINUX:tl} == yes || (${USE_LINUX} == "c6" && ${OVERRIDE_LINUX_BASE_PORT} == "c6_64") USE_LINUX= ${OVERRIDE_LINUX_BASE_PORT} . endif . endif # NOTE: when you update the default linux_base version (case "yes"), # don't forget to update the Handbook! . if exists(${PORTSDIR}/emulators/linux_base-${USE_LINUX}) LINUX_BASE_PORT= ${LINUXBASE}/bin/sh:emulators/linux_base-${USE_LINUX} . else . if ${USE_LINUX:tl} == "yes" USE_LINUX= c6 LINUX_BASE_PORT= ${LINUXBASE}/etc/redhat-release:emulators/linux_base-c6 . elif ${USE_LINUX} == "c6_64" LINUX_BASE_PORT= ${LINUXBASE}/etc/redhat-release:emulators/linux_base-c6 . else IGNORE= cannot be built: there is no emulators/linux_base-${USE_LINUX}, perhaps wrong use of USE_LINUX or OVERRIDE_LINUX_BASE_PORT . endif . endif . if ${USE_LINUX} == "c6_64" || (defined(OVERRIDE_LINUX_BASE_PORT) && ${OVERRIDE_LINUX_BASE_PORT} == "c6_64") . if ${ARCH} != "amd64" IGNORE= Cannot install 64 bit Linux on non-64bit platforms . endif LINUX_RPM_ARCH?= x86_64 LINUX_REPO_ARCH?= x86_64 . elif ${USE_LINUX} == "c6" || ${USE_LINUX} == "yes" # default to CentOS LINUX_RPM_ARCH?= i686 LINUX_REPO_ARCH?= i386 . elif ${USE_LINUX} == "f10" LINUX_RPM_ARCH?= i386 LINUX_REPO_ARCH?= i386 . endif RUN_DEPENDS+= ${LINUX_BASE_PORT} .endif PKG_IGNORE_DEPENDS?= 'this_port_does_not_exist' _GL_gbm_LIB_DEPENDS= libgbm.so:graphics/gbm _GL_glesv2_BUILD_DEPENDS= libglesv2>0:graphics/libglesv2 _GL_glesv2_RUN_DEPENDS= libglesv2>0:graphics/libglesv2 _GL_egl_BUILD_DEPENDS= libEGL>0:graphics/libEGL _GL_egl_RUN_DEPENDS= libEGL>0:graphics/libEGL _GL_gl_BUILD_DEPENDS= libGL>0:graphics/libGL _GL_gl_RUN_DEPENDS= libGL>0:graphics/libGL _GL_gl_USE_XORG= glproto dri2proto _GL_glew_LIB_DEPENDS= libGLEW.so:graphics/glew _GL_glu_LIB_DEPENDS= libGLU.so:graphics/libGLU _GL_glu_USE_XORG= glproto dri2proto _GL_glw_LIB_DEPENDS= libGLw.so:graphics/libGLw _GL_glut_LIB_DEPENDS= libglut.so:graphics/freeglut .if defined(USE_GL) . if ${USE_GL:tl} == "yes" USE_GL= glu . endif . for _component in ${USE_GL} . if !defined(_GL_${_component}_LIB_DEPENDS) && \ !defined(_GL_${_component}_RUN_DEPENDS) IGNORE= uses unknown GL component . else USE_XORG+= ${_GL_${_component}_USE_XORG} BUILD_DEPENDS+= ${_GL_${_component}_BUILD_DEPENDS} LIB_DEPENDS+= ${_GL_${_component}_LIB_DEPENDS} RUN_DEPENDS+= ${_GL_${_component}_RUN_DEPENDS} . endif . endfor .endif .if defined(_DESTDIR_VIA_ENV) MAKE_ENV+= ${DESTDIRNAME}=${STAGEDIR} .else MAKE_ARGS+= ${DESTDIRNAME}=${STAGEDIR} .endif .if defined(NO_PREFIX_RMDIR) CO_ENV+= NO_PREFIX_RMDIR=1 .else CO_ENV+= NO_PREFIX_RMDIR=0 .endif METADIR= ${WRKDIR}/.metadir MANIFESTF= ${METADIR}/+MANIFEST PKGPREINSTALL?= ${PKGDIR}/pkg-pre-install PKGPOSTINSTALL?= ${PKGDIR}/pkg-post-install PKGPREDEINSTALL?= ${PKGDIR}/pkg-pre-deinstall PKGPOSTDEINSTALL?= ${PKGDIR}/pkg-post-deinstall PKGPREUPGRADE?= ${PKGDIR}/pkg-pre-upgrade PKGPOSTUPGRADE?= ${PKGDIR}/pkg-post-upgrade PKGUPGRADE?= ${PKGDIR}/pkg-upgrade _FORCE_POST_PATTERNS= rmdir kldxref mkfontscale mkfontdir fc-cache \ fonts.dir fonts.scale gtk-update-icon-cache \ gio-querymodules \ gtk-query-immodules \ ldconfig \ load-octave-pkg \ ocamlfind \ update-desktop-database update-mime-database \ gdk-pixbuf-query-loaders catalog.ports \ glib-compile-schemas \ ccache-update-links .if defined(USE_LOCAL_MK) .include "${PORTSDIR}/Mk/bsd.local.mk" .endif .if defined(USE_XORG) || defined(XORG_CAT) .include "${PORTSDIR}/Mk/bsd.xorg.mk" .endif .if defined(USE_MYSQL) || defined(WANT_MYSQL_VER) || \ defined(USE_BDB) || defined(USE_SQLITE) || defined(USE_FIREBIRD) .include "${PORTSDIR}/Mk/bsd.database.mk" .endif .if defined(WANT_GSTREAMER) || defined(USE_GSTREAMER) || defined(USE_GSTREAMER1) .include "${PORTSDIR}/Mk/bsd.gstreamer.mk" .endif .if defined(USE_JAVA) .include "${PORTSDIR}/Mk/bsd.java.mk" .endif .if defined(USE_OCAML) .include "${PORTSDIR}/Mk/bsd.ocaml.mk" .endif .if defined(USE_LINUX_RPM) .include "${PORTSDIR}/Mk/bsd.linux-rpm.mk" .endif .if defined(USE_LINUX_APPS) .include "${PORTSDIR}/Mk/bsd.linux-apps.mk" .endif .if defined(USE_QT4) || defined(USE_QT5) .include "${PORTSDIR}/Mk/bsd.qt.mk" .endif .if defined(USE_SDL) .include "${PORTSDIR}/Mk/bsd.sdl.mk" .endif .if defined(USE_PHP) .include "${PORTSDIR}/Mk/bsd.php.mk" .endif .if defined(USE_WX) || defined(USE_WX_NOT) .include "${PORTSDIR}/Mk/bsd.wx.mk" .endif .if defined(USE_APACHE) || defined(USE_APACHE_BUILD) || defined(USE_APACHE_RUN) .include "${PORTSDIR}/Mk/bsd.apache.mk" .endif .if defined(USE_AUTOTOOLS) .include "${PORTSDIR}/Mk/bsd.autotools.mk" .endif .if defined(USE_FPC) || defined(WANT_FPC_BASE) || defined(WANT_FPC_ALL) .include "${PORTSDIR}/Mk/bsd.fpc.mk" .endif .if defined(USE_GECKO) .include "${PORTSDIR}/Mk/bsd.gecko.mk" .endif .if defined(USE_KDE4) .include "${PORTSDIR}/Mk/bsd.kde4.mk" .endif .if exists(${PORTSDIR}/Makefile.inc) .include "${PORTSDIR}/Makefile.inc" USE_SUBMAKE= yes .endif # Loading features .for f in ${_USES_POST} _f:= ${f:C/\:.*//} .if !defined(${_f}_ARGS) ${_f}_ARGS:= ${f:C/^[^\:]*(\:|\$)//:S/,/ /g} .endif .endfor .for f in ${_USES_POST} .include "${USESDIR}/${f:C/\:.*//}.mk" .endfor .if defined(USE_XORG) # Add explicit X options to avoid problems with false positives in configure .if defined(GNU_CONFIGURE) CONFIGURE_ARGS+=--x-libraries=${LOCALBASE}/lib --x-includes=${LOCALBASE}/include .endif .endif # Macro for doing in-place file editing using regexps REINPLACE_ARGS?= -i.bak REINPLACE_CMD?= ${SED} ${REINPLACE_ARGS} # Names of cookies used to skip already completed stages EXTRACT_COOKIE?= ${WRKDIR}/.extract_done.${PORTNAME}.${PREFIX:S/\//_/g} CONFIGURE_COOKIE?= ${WRKDIR}/.configure_done.${PORTNAME}.${PREFIX:S/\//_/g} INSTALL_COOKIE?= ${WRKDIR}/.install_done.${PORTNAME}.${PREFIX:S/\//_/g} BUILD_COOKIE?= ${WRKDIR}/.build_done.${PORTNAME}.${PREFIX:S/\//_/g} PATCH_COOKIE?= ${WRKDIR}/.patch_done.${PORTNAME}.${PREFIX:S/\//_/g} PACKAGE_COOKIE?= ${WRKDIR}/.package_done.${PORTNAME}.${PREFIX:S/\//_/g} STAGE_COOKIE?= ${WRKDIR}/.stage_done.${PORTNAME}.${PREFIX:S/\//_/g} # How to do nothing. Override if you, for some strange reason, would rather # do something. DO_NADA?= ${TRUE} # Use this as the first operand to always build dependency. NONEXISTENT?= /nonexistent CHECKSUM_ALGORITHMS?= sha256 DISTINFO_FILE?= ${MASTERDIR}/distinfo MAKE_FLAGS?= -f MAKEFILE?= Makefile MAKE_CMD?= ${BSDMAKE} MAKE_ENV+= PREFIX=${PREFIX} \ LOCALBASE=${LOCALBASE} \ LIBDIR="${LIBDIR}" \ CC="${CC}" CFLAGS="${CFLAGS}" \ CPP="${CPP}" CPPFLAGS="${CPPFLAGS}" \ LDFLAGS="${LDFLAGS}" LIBS="${LIBS}" \ CXX="${CXX}" CXXFLAGS="${CXXFLAGS}" \ MANPREFIX="${MANPREFIX}" # Add -fno-strict-aliasing to CFLAGS with optimization level -O2 or higher. # gcc 4.x enable strict aliasing optimization with -O2 which is known to break # a lot of ports. .if !defined(WITHOUT_NO_STRICT_ALIASING) .if ${CC} != "icc" .if empty(CFLAGS:M-fno-strict-aliasing) CFLAGS+= -fno-strict-aliasing .endif .endif .endif .for lang in C CXX .if defined(USE_${lang}STD) ${lang}FLAGS:= ${${lang}FLAGS:N-std=*} -std=${USE_${lang}STD} .endif .if defined(${lang}FLAGS_${ARCH}) ${lang}FLAGS+= ${${lang}FLAGS_${ARCH}} .endif .endfor # Multiple make jobs support .if defined(DISABLE_MAKE_JOBS) || defined(MAKE_JOBS_UNSAFE) _MAKE_JOBS?= # MAKE_JOBS_NUMBER= 1 .else .if defined(MAKE_JOBS_NUMBER) _MAKE_JOBS_NUMBER:= ${MAKE_JOBS_NUMBER} .else .if !defined(_SMP_CPUS) _SMP_CPUS!= ${SYSCTL} -n kern.smp.cpus .endif _EXPORTED_VARS+= _SMP_CPUS _MAKE_JOBS_NUMBER= ${_SMP_CPUS} .endif .if defined(MAKE_JOBS_NUMBER_LIMIT) && ( ${MAKE_JOBS_NUMBER_LIMIT} < ${_MAKE_JOBS_NUMBER} ) MAKE_JOBS_NUMBER= ${MAKE_JOBS_NUMBER_LIMIT} .else MAKE_JOBS_NUMBER= ${_MAKE_JOBS_NUMBER} .endif _MAKE_JOBS?= -j${MAKE_JOBS_NUMBER} BUILD_FAIL_MESSAGE+= Try to set MAKE_JOBS_UNSAFE=yes and rebuild before reporting the failure to the maintainer. .endif .include "${PORTSDIR}/Mk/bsd.ccache.mk" FETCH_ENV?= SSL_NO_VERIFY_PEER=1 SSL_NO_VERIFY_HOSTNAME=1 FETCH_BINARY?= /usr/bin/fetch FETCH_ARGS?= -Fpr FETCH_REGET?= 1 .if !defined(DISABLE_SIZE) FETCH_BEFORE_ARGS+= $${CKSIZE:+-S $$CKSIZE} .endif FETCH_CMD?= ${FETCH_BINARY} ${FETCH_ARGS} .if defined(RANDOMIZE_MASTER_SITES) .if exists(/usr/games/random) RANDOM_CMD?= /usr/games/random RANDOM_ARGS?= "-w -f -" _RANDOMIZE_SITES= " |${RANDOM_CMD} ${RANDOM_ARGS}" .endif .endif TOUCH?= /usr/bin/touch TOUCH_FLAGS?= -f DISTORIG?= .bak.orig PATCH?= /usr/bin/patch PATCH_STRIP?= -p0 PATCH_DIST_STRIP?= -p0 .if defined(PATCH_DEBUG) PATCH_DEBUG_TMP= yes PATCH_ARGS?= -d ${PATCH_WRKSRC} -E ${PATCH_STRIP} PATCH_DIST_ARGS?= --suffix ${DISTORIG} -d ${PATCH_WRKSRC} -E ${PATCH_DIST_STRIP} .else PATCH_DEBUG_TMP= no PATCH_ARGS?= -d ${PATCH_WRKSRC} --forward --quiet -E ${PATCH_STRIP} PATCH_DIST_ARGS?= --suffix ${DISTORIG} -d ${PATCH_WRKSRC} --forward --quiet -E ${PATCH_DIST_STRIP} .endif .if !defined(QUIET) PATCH_SILENT= PATCH_SILENT=yes .endif .if defined(BATCH) PATCH_ARGS+= --batch PATCH_DIST_ARGS+= --batch .endif # Prevent breakage with VERSION_CONTROL=numbered PATCH_ARGS+= -V simple .if defined(PATCH_CHECK_ONLY) PATCH_ARGS+= -C PATCH_DIST_ARGS+= -C .endif .if ${PATCH} == "/usr/bin/patch" PATCH_ARGS+= --suffix .orig PATCH_DIST_ARGS+= --suffix .orig .endif TAR?= /usr/bin/tar # EXTRACT_SUFX is defined in .pre.mk section EXTRACT_CMD?= ${TAR} EXTRACT_BEFORE_ARGS?= -xf EXTRACT_AFTER_ARGS?= --no-same-owner --no-same-permissions # Figure out where the local mtree file is .if !defined(MTREE_FILE) && !defined(NO_MTREE) .if ${PREFIX} == /usr MTREE_FILE= /etc/mtree/BSD.usr.dist .else MTREE_FILE= ${PORTSDIR}/Templates/BSD.local.dist .endif .endif MTREE_CMD?= /usr/sbin/mtree MTREE_ARGS?= -U ${MTREE_FOLLOWS_SYMLINKS} -f ${MTREE_FILE} -d -e -p _SHAREMODE?= 0644 # A few aliases for *-install targets INSTALL_PROGRAM= ${INSTALL} ${COPY} ${STRIP} -m ${BINMODE} INSTALL_KLD= ${INSTALL} ${COPY} -m ${BINMODE} INSTALL_LIB= ${INSTALL} ${COPY} ${STRIP} -m ${SHAREMODE} INSTALL_SCRIPT= ${INSTALL} ${COPY} -m ${BINMODE} INSTALL_DATA= ${INSTALL} ${COPY} -m ${_SHAREMODE} INSTALL_MAN= ${INSTALL} ${COPY} -m ${MANMODE} INSTALL_MACROS= BSD_INSTALL_PROGRAM="${INSTALL_PROGRAM}" \ BSD_INSTALL_LIB="${INSTALL_LIB}" \ BSD_INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ BSD_INSTALL_DATA="${INSTALL_DATA}" \ BSD_INSTALL_MAN="${INSTALL_MAN}" MAKE_ENV+= ${INSTALL_MACROS} SCRIPTS_ENV+= ${INSTALL_MACROS} # Macro for copying entire directory tree with correct permissions COPYTREE_BIN= ${SH} -c '(${FIND} -d $$0 $$2 | ${CPIO} -dumpl $$1 >/dev/null \ 2>&1) && \ ${FIND} -d $$0 $$2 -type d -exec chmod 755 $$1/{} \; && \ ${FIND} -d $$0 $$2 -type f -exec chmod ${BINMODE} $$1/{} \;' -- COPYTREE_SHARE= ${SH} -c '(${FIND} -d $$0 $$2 | ${CPIO} -dumpl $$1 >/dev/null \ 2>&1) && \ ${FIND} -d $$0 $$2 -type d -exec chmod 755 $$1/{} \; && \ ${FIND} -d $$0 $$2 -type f -exec chmod ${SHAREMODE} $$1/{} \;' -- # The user can override the NO_PACKAGE by specifying this from # the make command line .if defined(FORCE_PACKAGE) .undef NO_PACKAGE .endif DESCR?= ${PKGDIR}/pkg-descr PLIST?= ${PKGDIR}/pkg-plist PKGHELP?= ${PKGDIR}/pkg-help PKGINSTALL?= ${PKGDIR}/pkg-install PKGDEINSTALL?= ${PKGDIR}/pkg-deinstall PKGREQ?= ${PKGDIR}/pkg-req PKGMESSAGE?= ${PKGDIR}/pkg-message TMPPLIST?= ${WRKDIR}/.PLIST.mktmp TMPPLIST_SORT?= ${WRKDIR}/.PLIST.mktmp.sorted TMPGUCMD?= ${WRKDIR}/.PLIST.gucmd .if defined(PKG_NOCOMPRESS) PKG_SUFX?= .tar .else PKG_SUFX?= .txz .endif # where pkg_add records its dirty deeds. PKG_DBDIR?= /var/db/pkg ALL_TARGET?= all INSTALL_TARGET?= install INSTALL_TARGET+= ${LATE_INSTALL_ARGS} # Integrate with the license auditing framework .if !defined (DISABLE_LICENSES) .include "${PORTSDIR}/Mk/bsd.licenses.mk" .endif # Popular master sites .include "${PORTSDIR}/Mk/bsd.sites.mk" # Empty declaration to avoid "variable MASTER_SITES recursive" error MASTER_SITES?= PATCH_SITES?= _MASTER_SITES_DEFAULT?= _PATCH_SITES_DEFAULT?= # Feed internal _{MASTER,PATCH}_SITES_n where n is a group designation # as per grouping rules (:something) # Organize _{MASTER,PATCH}_SITES_{DEFAULT,[^/:]+} according to grouping # rules (:something) .for _S in ${MASTER_SITES} _S_TEMP= ${_S:S/^${_S:C@/?:[^/:]+$@/@}//:S/^://} . if !empty(_S_TEMP) . for _group in ${_S_TEMP:S/,/ /g} _G_TEMP= ${_group} . if ${_G_TEMP} == all || ${_G_TEMP} == ALL || ${_G_TEMP} == default check-makevars:: @${ECHO_MSG} "Makefile error: the words all, ALL and default are reserved and cannot be" @${ECHO_MSG} "used in group definitions. Please fix your MASTER_SITES" @${FALSE} . endif _MASTER_SITES_${_group}+= ${_S:C@^(.*/):[^/:]+$@\1@} . endfor . else _MASTER_SITES_DEFAULT+= ${_S:C@^(.*/):[^/:]+$@\1@} . endif .endfor .for _S in ${PATCH_SITES} _S_TEMP= ${_S:S/^${_S:C@/:[^/:]+$@/@}//:S/^://} . if !empty(_S_TEMP) . for _group in ${_S_TEMP:S/,/ /g} _G_TEMP= ${_group} . if ${_G_TEMP} == all || ${_G_TEMP} == ALL || ${_G_TEMP} == default check-makevars:: @${ECHO_MSG} "The words all, ALL and default are reserved and cannot be" @${ECHO_MSG} "used in group definitions. Please fix your PATCH_SITES" @${FALSE} . endif _PATCH_SITES_${_group}+= ${_S:C@^(.*/):[^/:]+$@\1@} . endfor . else _PATCH_SITES_DEFAULT+= ${_S:C@^(.*/):[^/:]+$@\1@} . endif .endfor # Feed internal _{MASTER,PATCH}_SITE_SUBDIR_n where n is a group designation # as per grouping rules (:something) # Organize _{MASTER,PATCH}_SITE_SUBDIR_{DEFAULT,[^/:]+} according to grouping # rules (:something) .for _S in ${MASTER_SITE_SUBDIR} _S_TEMP= ${_S:S/^${_S:C@/:[^/:]+$@/@}//:S/^://} . if !empty(_S_TEMP) . for _group in ${_S_TEMP:S/,/ /g} _G_TEMP= ${_group} . if ${_G_TEMP} == all || ${_G_TEMP} == ALL || ${_G_TEMP} == default check-makevars:: @${ECHO_MSG} "Makefile error: the words all, ALL and default are reserved and cannot be" @${ECHO_MSG} "used in group definitions. Please fix your MASTER_SITE_SUBDIR" @${FALSE} . endif . if defined(_MASTER_SITES_${_group}) _MASTER_SITE_SUBDIR_${_group}+= ${_S:C@^(.*)/:[^/:]+$@\1@} . endif . endfor . else . if defined(_MASTER_SITES_DEFAULT) _MASTER_SITE_SUBDIR_DEFAULT+= ${_S:C@^(.*)/:[^/:]+$@\1@} . endif . endif .endfor .for _S in ${PATCH_SITE_SUBDIR} _S_TEMP= ${_S:S/^${_S:C@/:[^/:]+$@/@}//:S/^://} . if !empty(_S_TEMP) . for _group in ${_S_TEMP:S/,/ /g} _G_TEMP= ${_group} . if ${_G_TEMP} == all || ${_G_TEMP} == ALL || ${_G_TEMP} == default check-makevars:: @${ECHO_MSG} "Makefile error: the words all, ALL and default are reserved and cannot be" @${ECHO_MSG} "used in group definitions. Please fix your PATCH_SITE_SUBDIR" @${FALSE} . endif . if defined(_PATCH_SITES_${_group}) _PATCH_SITE_SUBDIR_${_group}+= ${_S:C@^(.*)/:[^/:]+$@\1@} . endif . endfor . else . if defined(_PATCH_SITES_DEFAULT) _PATCH_SITE_SUBDIR_DEFAULT+= ${_S:C@^(.*)/:[^/:]+$@\1@} . endif . endif .endfor # Substitute subdirectory names # XXX simpler/faster solution but not the best space wise, suggestions please .for _S in ${MASTER_SITES} _S_TEMP= ${_S:S/^${_S:C@/:[^/:]+$@/@}//:S/^://} . if !empty(_S_TEMP) . for _group in ${_S_TEMP:S/,/ /g} . if !defined(_MASTER_SITE_SUBDIR_${_group}) MASTER_SITES_TMP= ${_MASTER_SITES_${_group}:S^%SUBDIR%/^^} . else _S_TEMP_TEMP= ${_MASTER_SITES_${_group}:M*%SUBDIR%/*} . if empty(_S_TEMP_TEMP) MASTER_SITES_TMP= ${_MASTER_SITES_${_group}} . else MASTER_SITES_TMP= . for site in ${_MASTER_SITES_${_group}} _S_TEMP_TEMP= ${site:M*%SUBDIR%/*} . if empty(_S_TEMP_TEMP) MASTER_SITES_TMP+= ${site} . else . for dir in ${_MASTER_SITE_SUBDIR_${_group}} MASTER_SITES_TMP+= ${site:S^%SUBDIR%^\${dir}^} . endfor . endif . endfor . endif . endif _MASTER_SITES_${_group}:= ${MASTER_SITES_TMP} . endfor . endif .endfor .if defined(_MASTER_SITE_SUBDIR_DEFAULT) _S_TEMP= ${_MASTER_SITES_DEFAULT:M*%SUBDIR%/*} . if empty(_S_TEMP) MASTER_SITES_TMP= ${_MASTER_SITES_DEFAULT} . else MASTER_SITES_TMP= . for site in ${_MASTER_SITES_DEFAULT} _S_TEMP_TEMP= ${site:M*%SUBDIR%/*} . if empty(_S_TEMP_TEMP) MASTER_SITES_TMP+= ${site} . else . for dir in ${_MASTER_SITE_SUBDIR_DEFAULT} MASTER_SITES_TMP+= ${site:S^%SUBDIR%^\${dir}^} . endfor . endif . endfor . endif .else MASTER_SITES_TMP= ${_MASTER_SITES_DEFAULT:S^%SUBDIR%/^^} .endif _MASTER_SITES_DEFAULT:= ${MASTER_SITES_TMP} MASTER_SITES_TMP= .for _S in ${PATCH_SITES} _S_TEMP= ${_S:S/^${_S:C@/:[^/:]+$@/@}//:S/^://} . if !empty(_S_TEMP) . for _group in ${_S_TEMP:S/,/ /g} . if !defined(_PATCH_SITE_SUBDIR_${_group}) PATCH_SITES_TMP= ${_PATCH_SITES_${_group}:S^%SUBDIR%/^^} . else _S_TEMP_TEMP= ${_PATCH_SITES_${_group}:M*%SUBDIR%/*} . if empty(_S_TEMP_TEMP) PATCH_SITES_TMP= ${_PATCH_SITES_${_group}} . else PATCH_SITES_TMP= . for site in ${_PATCH_SITES_${_group}} _S_TEMP_TEMP= ${site:M*%SUBDIR%/*} . if empty(_S_TEMP_TEMP) PATCH_SITES_TMP+= ${site} . else . for dir in ${_PATCH_SITE_SUBDIR_${_group}} PATCH_SITES_TMP+= ${site:S^%SUBDIR%^\${dir}^} . endfor . endif . endfor . endif . endif _PATCH_SITES_${_group}:= ${PATCH_SITES_TMP} . endfor . endif .endfor .if defined(_PATCH_SITE_SUBDIR_DEFAULT) _S_TEMP= ${_PATCH_SITES_DEFAULT:M*%SUBDIR%/*} . if empty(_S_TEMP) PATCH_SITES_TMP= ${_PATCH_SITES_DEFAULT} . else PATCH_SITES_TMP= . for site in ${_PATCH_SITES_DEFAULT} _S_TEMP_TEMP= ${site:M*%SUBDIR%/*} . if empty(_S_TEMP_TEMP) PATCH_SITES_TMP+= ${site} . else . for dir in ${_PATCH_SITE_SUBDIR_DEFAULT} PATCH_SITES_TMP+= ${site:S^%SUBDIR%^\${dir}^} . endfor . endif . endfor . endif .else PATCH_SITES_TMP= ${_PATCH_SITES_DEFAULT:S^%SUBDIR%/^^} .endif _PATCH_SITES_DEFAULT:= ${PATCH_SITES_TMP} PATCH_SITES_TMP= # The primary backup site. MASTER_SITE_BACKUP?= \ http://distcache.FreeBSD.org/ports-distfiles/${DIST_SUBDIR}/ MASTER_SITE_BACKUP:= ${MASTER_SITE_BACKUP:S^\${DIST_SUBDIR}/^^} # If the user has MASTER_SITE_FREEBSD set, go to the FreeBSD repository # for everything, but don't search it twice by appending it to the end. .if defined(MASTER_SITE_FREEBSD) _MASTER_SITE_OVERRIDE:= ${MASTER_SITE_BACKUP} _MASTER_SITE_BACKUP:= # empty .else _MASTER_SITE_OVERRIDE= ${MASTER_SITE_OVERRIDE} _MASTER_SITE_BACKUP= ${MASTER_SITE_BACKUP} .endif NOFETCHFILES?= # Organize DISTFILES, PATCHFILES, _MASTER_SITES_ALL, _PATCH_SITES_ALL # according to grouping rules (:something) DISTFILES?= ${DISTNAME}${EXTRACT_SUFX} _MASTER_SITES_ALL= ${_MASTER_SITES_DEFAULT} _PATCH_SITES_ALL= ${_PATCH_SITES_DEFAULT} _G_TEMP= DEFAULT .for _D in ${DISTFILES} _D_TEMP= ${_D:S/^${_D:C/:[^:]+$//}//} . if !empty(_D_TEMP) . for _group in ${_D_TEMP:S/^://:S/,/ /g} . if !defined(_MASTER_SITES_${_group}) _G_TEMP_TEMP= ${_G_TEMP:M/${_group}/} . if empty(_G_TEMP_TEMP) _G_TEMP+= ${_group} _MASTER_SITES_ALL+= ${_MASTER_SITES_${_group}} . endif . endif . endfor _DISTFILES+= ${_D:C/:[^:]+$//} . else _DISTFILES+= ${_D} . endif .endfor _G_TEMP= DEFAULT .for _P in ${PATCHFILES} _P_TEMP= ${_P:C/:[^-:][^:]*$//} _P_groups= ${_P:S/^${_P:C/:[^:]+$//}//:S/^://} _P_file= ${_P_TEMP:C/:-[^:]+$//} _P_strip= ${_P_TEMP:S/^${_P_TEMP:C/:-[^:]*$//}//:S/^://} . if !empty(_P_groups) . for _group in ${_P_groups:S/,/ /g} . if !defined(_PATCH_SITES_${_group}) _G_TEMP_TEMP= ${_G_TEMP:M/${_group}/} . if empty(_G_TEMP_TEMP) _G_TEMP+= ${_group} _PATCH_SITES_ALL+= ${_PATCH_SITES_${_group}} . endif . endif . endfor . endif _PATCHFILES:= ${_PATCHFILES} ${_P_file} . if !empty(_P_strip) _PATCH_DIST_STRIP_CASES:= ${_PATCH_DIST_STRIP_CASES} ("${_P_file}") printf %s "${_P_strip}" ;; . endif .endfor _P_groups= _P_file= _P_strip= _G_TEMP= _G_TEMP_TEMP= ALLFILES?= ${_DISTFILES} ${_PATCHFILES} # # Sort the master site list according to the patterns in MASTER_SORT # MASTER_SORT?= MASTER_SORT_REGEX?= MASTER_SORT_REGEX+= ${MASTER_SORT:S|.|\\.|g:S|^|://[^/]*|:S|$|/|} MASTER_SORT_AWK= BEGIN { RS = " "; ORS = " "; IGNORECASE = 1 ; gl = "${MASTER_SORT_REGEX:S|\\|\\\\|g}"; } .for srt in ${MASTER_SORT_REGEX} MASTER_SORT_AWK+= /${srt:S|/|\\/|g}/ { good["${srt:S|\\|\\\\|g}"] = good["${srt:S|\\|\\\\|g}"] " " $$0 ; next; } .endfor MASTER_SORT_AWK+= { rest = rest " " $$0; } END { n=split(gl, gla); for(i=1;i<=n;i++) { print good[gla[i]]; } print rest; } SORTED_MASTER_SITES_DEFAULT_CMD= cd ${.CURDIR} && ${MAKE} master-sites-DEFAULT SORTED_PATCH_SITES_DEFAULT_CMD= cd ${.CURDIR} && ${MAKE} patch-sites-DEFAULT SORTED_MASTER_SITES_ALL_CMD= cd ${.CURDIR} && ${MAKE} master-sites-ALL SORTED_PATCH_SITES_ALL_CMD= cd ${.CURDIR} && ${MAKE} patch-sites-ALL # has similar effect to old targets, i.e., access only {MASTER,PATCH}_SITES, not working with the new _n variables master-sites-DEFAULT: @${ECHO_CMD} ${_MASTER_SITE_OVERRIDE} `${ECHO_CMD} '${_MASTER_SITES_DEFAULT}' | ${AWK} '${MASTER_SORT_AWK:S|\\|\\\\|g}'` ${_MASTER_SITE_BACKUP} patch-sites-DEFAULT: @${ECHO_CMD} ${_MASTER_SITE_OVERRIDE} `${ECHO_CMD} '${_PATCH_SITES_DEFAULT}' | ${AWK} '${MASTER_SORT_AWK:S|\\|\\\\|g}'` ${_MASTER_SITE_BACKUP} # # Sort the master site list according to the patterns in MASTER_SORT # according to grouping rules (:something) # # for use in the fetch targets .for _S in ${MASTER_SITES} _S_TEMP= ${_S:S/^${_S:C@/:[^/:]+$@/@}//} . if !empty(_S_TEMP) . for _group in ${_S_TEMP:S/^://:S/,/ /g} . if !target(master-sites-${_group}) SORTED_MASTER_SITES_${_group}_CMD= cd ${.CURDIR} && ${MAKE} master-sites-${_group} master-sites-${_group}: @${ECHO_CMD} ${_MASTER_SITE_OVERRIDE} `${ECHO_CMD} '${_MASTER_SITES_${_group}}' | ${AWK} '${MASTER_SORT_AWK:S|\\|\\\\|g}'` ${_MASTER_SITE_BACKUP} . endif . endfor . endif .endfor .for _S in ${PATCH_SITES} _S_TEMP= ${_S:S/^${_S:C@/:[^/:]+$@/@}//} . if !empty(_S_TEMP) . for _group in ${_S_TEMP:S/^://:S/,/ /g} . if !target(patch-sites-${_group}) SORTED_PATCH_SITES_${_group}_CMD= cd ${.CURDIR} && ${MAKE} patch-sites-${_group} patch-sites-${_group}: @${ECHO_CMD} ${_MASTER_SITE_OVERRIDE} `${ECHO_CMD} '${_PATCH_SITES_${_group}}' | ${AWK} '${MASTER_SORT_AWK:S|\\|\\\\|g}'` ${_MASTER_SITE_BACKUP} . endif . endfor . endif .endfor # # Hackery to enable simple fetch targets with several dynamic MASTER_SITES # _MASTER_SITES_ENV= _MASTER_SITES_DEFAULT="${_MASTER_SITES_DEFAULT}" .for _F in ${DISTFILES} _F_TEMP= ${_F:S/^${_F:C/:[^:]+$//}//:S/^://} . if !empty(_F_TEMP) . for _group in ${_F_TEMP:S/,/ /g} . if defined(_MASTER_SITES_${_group}) _MASTER_SITES_ENV+= _MASTER_SITES_${_group}="${_MASTER_SITES_${_group}}" . endif . endfor . endif .endfor _PATCH_SITES_ENV= _PATCH_SITES_DEFAULT="${_PATCH_SITES_DEFAULT}" .for _F in ${PATCHFILES} _F_TEMP= ${_F:S/^${_F:C/:[^-:][^:]*$//}//:S/^://} . if !empty(_F_TEMP) . for _group in ${_F_TEMP:S/,/ /g} . if defined(_PATCH_SITES_${_group}) _PATCH_SITES_ENV+= _PATCH_SITES_${_group}="${_PATCH_SITES_${_group}}" . endif . endfor . endif .endfor master-sites-ALL: @${ECHO_CMD} ${_MASTER_SITE_OVERRIDE} `${ECHO_CMD} '${_MASTER_SITES_ALL}' | ${AWK} '${MASTER_SORT_AWK:S|\\|\\\\|g}'` ${_MASTER_SITE_BACKUP} patch-sites-ALL: @${ECHO_CMD} ${_MASTER_SITE_OVERRIDE} `${ECHO_CMD} '${_PATCH_SITES_ALL}' | ${AWK} '${MASTER_SORT_AWK:S|\\|\\\\|g}'` ${_MASTER_SITE_BACKUP} # synonyms, mnemonics master-sites-all: master-sites-ALL patch-sites-all: patch-sites-ALL master-sites-default: master-sites-DEFAULT patch-sites-default: patch-sites-DEFAULT # compatibility with old behavior master-sites: master-sites-DEFAULT patch-sites: patch-sites-DEFAULT CKSUMFILES= ${ALLFILES} # List of all files, with ${DIST_SUBDIR} in front. Used for checksum. .if defined(DIST_SUBDIR) .if defined(CKSUMFILES) && ${CKSUMFILES}!="" _CKSUMFILES?= ${CKSUMFILES:S/^/${DIST_SUBDIR}\//} .endif .else _CKSUMFILES?= ${CKSUMFILES} .endif # This is what is actually going to be extracted, and is overridable # by user. EXTRACT_ONLY?= ${_DISTFILES} .if !target(maintainer) maintainer: @${ECHO_CMD} "${MAINTAINER}" .endif .if !defined(CATEGORIES) check-categories: @${ECHO_MSG} "${PKGNAME}: Makefile error: CATEGORIES is mandatory." @${FALSE} .else VALID_CATEGORIES+= accessibility afterstep arabic archivers astro audio \ benchmarks biology cad chinese comms converters databases \ deskutils devel docs dns editors elisp emulators enlightenment finance french ftp \ games geography german gnome gnustep graphics hamradio haskell hebrew hungarian \ ipv6 irc japanese java kde kld korean lang linux lisp \ mail mate math mbone misc multimedia net net-im net-mgmt net-p2p news \ palm parallel pear perl5 plan9 polish portuguese ports-mgmt \ print python ruby rubygems russian \ scheme science security shells spanish sysutils \ tcl textproc tk \ ukrainian vietnamese windowmaker www \ x11 x11-clocks x11-drivers x11-fm x11-fonts x11-servers x11-themes \ x11-toolkits x11-wm xfce zope check-categories: .for cat in ${CATEGORIES} . if empty(VALID_CATEGORIES:M${cat}) @${ECHO_MSG} "${PKGNAME}: Makefile error: category ${cat} not in list of valid categories."; \ ${FALSE}; . endif .endfor .endif PKGREPOSITORYSUBDIR?= All PKGREPOSITORY?= ${PACKAGES}/${PKGREPOSITORYSUBDIR} .if exists(${PACKAGES}) PKGFILE?= ${PKGREPOSITORY}/${PKGNAME}${PKG_SUFX} .else PKGFILE?= ${.CURDIR}/${PKGNAME}${PKG_SUFX} .endif WRKDIR_PKGFILE= ${WRKDIR}/pkg/${PKGNAME}${PKG_SUFX} # The "latest version" link -- ${PKGNAME} minus everthing after the last '-' PKGLATESTREPOSITORY?= ${PACKAGES}/Latest PKGBASE?= ${PKGNAMEPREFIX}${PORTNAME}${PKGNAMESUFFIX} PKGLATESTFILE= ${PKGLATESTREPOSITORY}/${PKGBASE}${PKG_SUFX} CONFIGURE_SCRIPT?= configure CONFIGURE_CMD?= ./${CONFIGURE_SCRIPT} CONFIGURE_TARGET?= ${ARCH}-portbld-${OPSYS:tl}${OSREL} CONFIGURE_TARGET:= ${CONFIGURE_TARGET:S/--build=//} CONFIGURE_LOG?= config.log # A default message to print if do-configure fails. CONFIGURE_FAIL_MESSAGE?= "Please report the problem to ${MAINTAINER} [maintainer] and attach the \"${CONFIGURE_WRKSRC}/${CONFIGURE_LOG}\" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. a ${PKG_INFO} -Ea)." .if defined(GNU_CONFIGURE) # Maximum command line length .if !defined(CONFIGURE_MAX_CMD_LEN) CONFIGURE_MAX_CMD_LEN!= ${SYSCTL} -n kern.argmax .endif _EXPORTED_VARS+= CONFIGURE_MAX_CMD_LEN GNU_CONFIGURE_PREFIX?= ${PREFIX} GNU_CONFIGURE_MANPREFIX?= ${MANPREFIX} CONFIG_SITE?= ${PORTSDIR}/Templates/config.site CONFIGURE_ARGS+= --prefix=${GNU_CONFIGURE_PREFIX} $${_LATE_CONFIGURE_ARGS} .if defined(X_BUILD_FOR) CONFIGURE_ARGS+= --host=${X_BUILD_FOR} .endif CONFIGURE_ENV+= CONFIG_SITE=${CONFIG_SITE} lt_cv_sys_max_cmd_len=${CONFIGURE_MAX_CMD_LEN} HAS_CONFIGURE= yes SET_LATE_CONFIGURE_ARGS= \ _LATE_CONFIGURE_ARGS="" ; \ if [ -z "${CONFIGURE_ARGS:M--localstatedir=*:Q}" ] && \ ./${CONFIGURE_SCRIPT} --help 2>&1 | ${GREP} -- --localstatedir > /dev/null; then \ _LATE_CONFIGURE_ARGS="$${_LATE_CONFIGURE_ARGS} --localstatedir=/var" ; \ fi ; \ if [ ! -z "`./${CONFIGURE_SCRIPT} --help 2>&1 | ${GREP} -- '--mandir'`" ]; then \ _LATE_CONFIGURE_ARGS="$${_LATE_CONFIGURE_ARGS} --mandir=${GNU_CONFIGURE_MANPREFIX}/man" ; \ fi ; \ if [ ! -z "`./${CONFIGURE_SCRIPT} --help 2>&1 | ${GREP} -- '--infodir'`" ]; then \ _LATE_CONFIGURE_ARGS="$${_LATE_CONFIGURE_ARGS} --infodir=${GNU_CONFIGURE_PREFIX}/${INFO_PATH}/${INFO_SUBDIR}" ; \ fi ; \ if [ -z "`./${CONFIGURE_SCRIPT} --version 2>&1 | ${EGREP} -i '(autoconf.*2\.13|Unrecognized option)'`" ]; then \ _LATE_CONFIGURE_ARGS="$${_LATE_CONFIGURE_ARGS} --build=${CONFIGURE_TARGET}" ; \ else \ _LATE_CONFIGURE_ARGS="$${_LATE_CONFIGURE_ARGS} ${CONFIGURE_TARGET}" ; \ fi ; .endif # Passed to most of script invocations SCRIPTS_ENV+= CURDIR=${MASTERDIR} DISTDIR=${DISTDIR} \ WRKDIR=${WRKDIR} WRKSRC=${WRKSRC} PATCHDIR=${PATCHDIR} \ SCRIPTDIR=${SCRIPTDIR} FILESDIR=${FILESDIR} \ PORTSDIR=${PORTSDIR} PREFIX=${PREFIX} LOCALBASE=${LOCALBASE} .if defined(BATCH) SCRIPTS_ENV+= BATCH=yes .endif .if ${PREFIX} == /usr MANPREFIX?= /usr/share .else MANPREFIX?= ${PREFIX} .endif MANDIRS+= ${MANPREFIX}/man .for sect in 1 2 3 4 5 6 7 8 9 MAN${sect}PREFIX?= ${MANPREFIX} .endfor MANLPREFIX?= ${MANPREFIX} MANNPREFIX?= ${MANPREFIX} .if ${PREFIX} == /usr INFO_PATH?= share/info .else INFO_PATH?= info .endif .if defined(INFO) RUN_DEPENDS+= indexinfo:print/indexinfo . for D in ${INFO:H} RD:= ${D} . if ${RD} != "." . if !defined(INFO_SUBDIR) INFO_SUBDIR:= ${RD} . elif ${INFO_SUBDIR} != ${RD} BROKEN= only one subdirectory in INFO is allowed . endif . endif .undef RD . endfor .endif DOCSDIR_REL?= ${DOCSDIR:S,^${PREFIX}/,,} EXAMPLESDIR_REL?= ${EXAMPLESDIR:S,^${PREFIX}/,,} DATADIR_REL?= ${DATADIR:S,^${PREFIX}/,,} WWWDIR_REL?= ${WWWDIR:S,^${PREFIX}/,,} ETCDIR_REL?= ${ETCDIR:S,^${PREFIX}/,,} PLIST_SUB+= DOCSDIR="${DOCSDIR_REL}" \ EXAMPLESDIR="${EXAMPLESDIR_REL}" \ DATADIR="${DATADIR_REL}" \ WWWDIR="${WWWDIR_REL}" \ ETCDIR="${ETCDIR_REL}" DESKTOPDIR?= ${PREFIX}/share/applications .MAIN: all ################################################################ # Many ways to disable a port. # # If we're in BATCH mode and the port is interactive, or we're # in interactive mode and the port is non-interactive, skip all # the important targets. The reason we have two modes is that # one might want to leave a build in BATCH mode running # overnight, then come back in the morning and do _only_ the # interactive ones that required your intervention. # # Ignore ports that can't be resold if building for a CDROM. # # Don't build a port if it's restricted and we don't want to get # into that. # # Don't build a port if it's broken, unless we're running a parallel # build (in case it's fixed). # # Don't build a port if it's forbidden for whatever reason. # # Don't build a port if the system is too old. ################################################################ # Check the machine architectures .if defined(ONLY_FOR_ARCHS) .for __ARCH in ${ONLY_FOR_ARCHS} .if ${ARCH:M${__ARCH}} != "" __ARCH_OK?= 1 .endif .endfor .else __ARCH_OK?= 1 .endif .if defined(NOT_FOR_ARCHS) .for __NARCH in ${NOT_FOR_ARCHS} .if ${ARCH:M${__NARCH}} != "" .undef __ARCH_OK .endif .endfor .endif .if !defined(__ARCH_OK) .if defined(ONLY_FOR_ARCHS) IGNORE= is only for ${ONLY_FOR_ARCHS}, .else # defined(NOT_FOR_ARCHS) IGNORE= does not run on ${NOT_FOR_ARCHS}, .endif IGNORE+= while you are running ${ARCH} .if defined(ONLY_FOR_ARCHS_REASON_${ARCH}) IGNORE+= (reason: ${ONLY_FOR_ARCHS_REASON_${ARCH}}) .elif defined(ONLY_FOR_ARCHS_REASON) IGNORE+= (reason: ${ONLY_FOR_ARCHS_REASON}) .endif .if defined(NOT_FOR_ARCHS_REASON_${ARCH}) IGNORE+= (reason: ${NOT_FOR_ARCHS_REASON_${ARCH}}) .elif defined(NOT_FOR_ARCHS_REASON) IGNORE+= (reason: ${NOT_FOR_ARCHS_REASON}) .endif .endif # Check the user interaction and legal issues .if !defined(NO_IGNORE) .if (defined(IS_INTERACTIVE) && defined(BATCH)) IGNORE= is an interactive port .elif (!defined(IS_INTERACTIVE) && defined(INTERACTIVE)) IGNORE= is not an interactive port .elif (defined(NO_CDROM) && defined(FOR_CDROM)) IGNORE= may not be placed on a CDROM: ${NO_CDROM} .elif (defined(RESTRICTED) && defined(NO_RESTRICTED)) IGNORE= is restricted: ${RESTRICTED} .elif (defined(NO_PACKAGE) && defined(PACKAGE_BUILDING)) IGNORE= may not be packaged: ${NO_PACKAGE} .elif defined(BROKEN) .if !defined(TRYBROKEN) IGNORE= is marked as broken: ${BROKEN} .endif .elif defined(BROKEN_${ARCH}) .if !defined(TRYBROKEN) IGNORE= is marked as broken on ${ARCH}: ${BROKEN_${ARCH}} .endif .elif defined(BROKEN_${OPSYS}_${OSREL:R}) .if !defined(TRYBROKEN) IGNORE= is marked as broken on ${OPSYS} ${OSREL}: ${BROKEN_${OPSYS}_${OSREL:R}} .endif .elif defined(BROKEN_${OPSYS}_${OSREL:R}_${ARCH}) .if !defined(TRYBROKEN) IGNORE= is marked as broken on ${OPSYS} ${OSREL} ${ARCH}: ${BROKEN_${OPSYS}_${OSREL:R}_${ARCH}} .endif .elif defined(BROKEN_${OPSYS}) .if !defined(TRYBROKEN) IGNORE= is marked as broken on ${OPSYS}: ${BROKEN_${OPSYS}} .endif .elif defined(FORBIDDEN) IGNORE= is forbidden: ${FORBIDDEN} .endif # Define the text to be output to LEGAL .if defined(LEGAL_TEXT) LEGAL= ${LEGAL_TEXT} .elif defined(RESTRICTED) LEGAL= ${RESTRICTED} .elif defined(NO_CDROM) LEGAL= ${NO_CDROM} .elif defined(NO_PACKAGE) && ! defined(LEGAL_PACKAGE) LEGAL= ${NO_PACKAGE} .endif .if (defined(MANUAL_PACKAGE_BUILD) && defined(PACKAGE_BUILDING)) IGNORE= has to be built manually: ${MANUAL_PACKAGE_BUILD} clean: @${IGNORECMD} .endif .if defined(IGNORE) .if defined(IGNORE_SILENT) IGNORECMD= ${DO_NADA} .else IGNORECMD= ${ECHO_MSG} "===> ${PKGNAME} "${IGNORE:Q}. | ${FMT} 75 79 ; exit 1 .endif _TARGETS= check-sanity fetch checksum extract patch configure all build \ install reinstall test package stage restage .for target in ${_TARGETS} .if !target(${target}) ${target}: @${IGNORECMD} .if defined(INSTALLS_DEPENDS) @${FALSE} .endif .endif .endfor .endif .endif .if defined(IGNORE) || defined(NO_PACKAGE) ignorelist: package-name .else ignorelist: @${DO_NADA} .endif .if defined(IGNORE) || defined(NO_PACKAGE) ignorelist-verbose: .if defined(IGNORE) @${ECHO_CMD} "${PKGNAME}|IGNORE: "${IGNORE:Q} .else @${ECHO_CMD} "${PKGNAME}|NO_PACKAGE: "${NO_PACKAGE:Q} .endif .else ignorelist-verbose: @${DO_NADA} .endif ################################################################ # Clean directories for ftp or CDROM. ################################################################ .if !defined(LICENSE) .if defined(RESTRICTED) clean-restricted: delete-distfiles delete-package clean-restricted-list: delete-distfiles-list delete-package-list RESTRICTED_FILES?= ${_DISTFILES} ${_PATCHFILES} .else clean-restricted: clean-restricted-list: .endif .if defined(NO_CDROM) clean-for-cdrom: delete-distfiles delete-package clean-for-cdrom-list: delete-distfiles-list delete-package-list RESTRICTED_FILES?= ${_DISTFILES} ${_PATCHFILES} .else clean-for-cdrom: clean-for-cdrom-list: .endif .endif # !defined(LICENSE) .if defined(ALL_HOOK) all: @cd ${.CURDIR} && ${SETENV} CURDIR=${.CURDIR} DISTNAME=${DISTNAME} \ DISTDIR=${DISTDIR} WRKDIR=${WRKDIR} WRKSRC=${WRKSRC} \ PATCHDIR=${PATCHDIR} SCRIPTDIR=${SCRIPTDIR} \ FILESDIR=${FILESDIR} PORTSDIR=${PORTSDIR} PREFIX=${PREFIX} \ BUILD_DEPENDS="${BUILD_DEPENDS}" RUN_DEPENDS="${RUN_DEPENDS}" \ CONFLICTS="${CONFLICTS}" \ ${ALL_HOOK} .endif .if !target(all) all: stage .endif .if !defined(DEPENDS_TARGET) .if defined(DEPENDS_PRECLEAN) DEPENDS_TARGET= clean DEPENDS_ARGS= NOCLEANDEPENDS=yes .endif .if make(reinstall) DEPENDS_TARGET+= reinstall .else DEPENDS_TARGET+= install .endif .if defined(DEPENDS_CLEAN) DEPENDS_TARGET+= clean DEPENDS_ARGS+= NOCLEANDEPENDS=yes .endif .endif ################################################################ # # Do preliminary work to detect if we need to run the config # target or not. # ################################################################ .if ((!defined(OPTIONS_DEFINE) && !defined(OPTIONS_SINGLE) && !defined(OPTIONS_MULTI)) \ && !defined(OPTIONS_GROUP) && !defined(OPTIONS_RADIO) \ || defined(CONFIG_DONE_${PKGBASE:tu}) || \ defined(PACKAGE_BUILDING) || defined(BATCH)) _OPTIONS_OK=yes .endif ################################################################ # The following are used to create easy dummy targets for # disabling some bit of default target behavior you don't want. # They still check to see if the target exists, and if so don't # do anything, since you might want to set this globally for a # group of ports in a Makefile.inc, but still be able to # override from an individual Makefile. ################################################################ # Disable checksum .if defined(NO_CHECKSUM) && !target(checksum) checksum: fetch @${DO_NADA} .endif # Disable build .if defined(NO_BUILD) && !target(build) build: configure @${TOUCH} ${TOUCH_FLAGS} ${BUILD_COOKIE} .endif # Disable test .if defined(NO_TEST) && !target(test) test: stage @${DO_NADA} .endif # Disable package .if defined(NO_PACKAGE) && !target(package) package: .if defined(IGNORE_SILENT) @${DO_NADA} .else @${ECHO_MSG} "===> ${PKGNAME} may not be packaged: "${NO_PACKAGE:Q}. .endif .endif # Disable describe .if defined(NO_DESCRIBE) && !target(describe) describe: @${DO_NADA} .endif ################################################################ # More standard targets start here. # # These are the body of the build/install framework. If you are # not happy with the default actions, and you can't solve it by # adding pre-* or post-* targets/scripts, override these. ################################################################ # Pre-everything pre-everything:: @${DO_NADA} .if defined(TRYBROKEN) && defined(BROKEN) buildanyway-message: @${ECHO_MSG} "Trying build of ${PKGNAME} even though it is marked BROKEN." .endif options-message: .if defined(GNOME_OPTION_MSG) && (!defined(PACKAGE_BUILDING) || !defined(BATCH)) @for m in ${GNOME_OPTION_MSG}; do \ ${ECHO_MSG} $$m; \ done .else @${DO_NADA} .endif .if defined(_OPTIONS_READ) @${ECHO_MSG} "===> Found saved configuration for ${_OPTIONS_READ}" .endif ${PKG_DBDIR} ${PREFIX} ${WRKDIR} ${EXTRACT_WRKDIR} ${WRKSRC}: @${MKDIR} ${.TARGET} # Warn user about deprecated packages. Advisory only. .if !target(check-deprecated) check-deprecated: .if defined(DEPRECATED) @${ECHO_MSG} "===> NOTICE:" @${ECHO_MSG} @${ECHO_MSG} "This port is deprecated; you may wish to reconsider installing it:" @${ECHO_MSG} @${ECHO_MSG} ${DEPRECATED:Q}. @${ECHO_MSG} .if defined(EXPIRATION_DATE) @${ECHO_MSG} "It is scheduled to be removed on or after ${EXPIRATION_DATE}." @${ECHO_MSG} .endif .endif .endif # Check if the port is listed in the vulnerability database AUDITFILE?= ${PKG_DBDIR}/vuln.xml check-vulnerable: .if !defined(DISABLE_VULNERABILITIES) && !defined(PACKAGE_BUILDING) @if [ -f "${AUDITFILE}" ]; then \ if [ -x "${PKG_BIN}" ]; then \ vlist=`${PKG_BIN} audit "${PKGNAME}" || :`; \ if [ "$${vlist}" = "0 problem(s) in the installed packages found." ]; then \ vlist=""; \ fi; \ elif [ "${PORTNAME}" = "pkg" ]; then \ vlist=""; \ fi; \ if [ -n "$$vlist" ]; then \ ${ECHO_MSG} "===> ${PKGNAME} has known vulnerabilities:"; \ ${ECHO_MSG} "$$vlist"; \ ${ECHO_MSG} "=> Please update your ports tree and try again."; \ ${ECHO_MSG} "=> Note: Vulnerable ports are marked as such even if there is no update available."; \ ${ECHO_MSG} "=> If you wish to ignore this vulnerability rebuild with 'make DISABLE_VULNERABILITIES=yes'"; \ exit 1; \ fi; \ fi .endif # set alg to any of SIZE, SHA256 (or any other checksum algorithm): DISTINFO_DATA?= if [ \( -n "${DISABLE_SIZE}" -a -n "${NO_CHECKSUM}" \) -o ! -f "${DISTINFO_FILE}" ]; then exit; fi; \ DIR=${DIST_SUBDIR}; ${AWK} -v alg=$$alg -v file=$${DIR:+$$DIR/}$${file} \ '$$1 == alg && $$2 == "(" file ")" {print $$4}' ${DISTINFO_FILE} # Fetch .if !target(do-fetch) do-fetch: @${MKDIR} ${_DISTDIR} @cd ${_DISTDIR};\ ${_MASTER_SITES_ENV} ; \ for _file in ${DISTFILES}; do \ file=$${_file%%:*}; \ if [ $$_file = $$file ]; then \ select=''; \ else \ select=`${ECHO_CMD} $${_file##*:} | ${SED} -e 's/,/ /g'` ; \ fi; \ force_fetch=false; \ filebasename=$${file##*/}; \ for afile in ${FORCE_FETCH}; do \ afile=$${afile##*/}; \ if [ "x$$afile" = "x$$filebasename" ]; then \ force_fetch=true; \ fi; \ done; \ if [ ! -f $$file -a ! -f $$filebasename -o "$$force_fetch" = "true" ]; then \ if [ -L $$file -o -L $$filebasename ]; then \ ${ECHO_MSG} "=> ${_DISTDIR}/$$file is a broken symlink."; \ ${ECHO_MSG} "=> Perhaps a filesystem (most likely a CD) isn't mounted?"; \ ${ECHO_MSG} "=> Please correct this problem and try again."; \ exit 1; \ fi; \ if [ -f ${DISTINFO_FILE} -a "x${NO_CHECKSUM}" = "x" ]; then \ _sha256sum=`alg=SHA256; ${DISTINFO_DATA}`; \ if [ -z "$$_sha256sum" ]; then \ ${ECHO_MSG} "=> $${DIR:+$$DIR/}$$file is not in ${DISTINFO_FILE}."; \ ${ECHO_MSG} "=> Either ${DISTINFO_FILE} is out of date, or"; \ ${ECHO_MSG} "=> $${DIR:+$$DIR/}$$file is spelled incorrectly."; \ exit 1; \ fi; \ fi; \ ${ECHO_MSG} "=> $$file doesn't seem to exist in ${_DISTDIR}."; \ if [ ! -w ${_DISTDIR} ]; then \ ${ECHO_MSG} "=> ${_DISTDIR} is not writable by you; cannot fetch."; \ exit 1; \ fi; \ if [ ! -z "$$select" ] ; then \ __MASTER_SITES_TMP= ; \ for group in $$select; do \ if [ ! -z \$${_MASTER_SITES_$${group}} ] ; then \ eval ___MASTER_SITES_TMP="\$${_MASTER_SITES_$${group}}" ; \ __MASTER_SITES_TMP="$${__MASTER_SITES_TMP} $${___MASTER_SITES_TMP}" ; \ fi; \ done; \ ___MASTER_SITES_TMP= ; \ SORTED_MASTER_SITES_CMD_TMP="${ECHO_CMD} ${_MASTER_SITE_OVERRIDE} `${ECHO_CMD} $${__MASTER_SITES_TMP} | ${AWK} '${MASTER_SORT_AWK:S|\\|\\\\|g}'` ${_MASTER_SITE_BACKUP}" ; \ else \ SORTED_MASTER_SITES_CMD_TMP="${SORTED_MASTER_SITES_DEFAULT_CMD}" ; \ fi; \ sites_remaining=0; \ sites="`eval $$SORTED_MASTER_SITES_CMD_TMP ${_RANDOMIZE_SITES}`"; \ for site in $${sites}; do \ sites_remaining=$$(($${sites_remaining} + 1)); \ done; \ for site in $${sites}; do \ sites_remaining=$$(($${sites_remaining} - 1)); \ ${ECHO_MSG} "=> Attempting to fetch $${site}$${file}"; \ CKSIZE=`alg=SIZE; ${DISTINFO_DATA}`; \ case $${file} in \ */*) ${MKDIR} $${file%/*}; \ args="-o $${file} $${site}$${file}";; \ *) args=$${site}$${file};; \ esac; \ if ${SETENV} ${FETCH_ENV} ${FETCH_CMD} ${FETCH_BEFORE_ARGS} $${args} ${FETCH_AFTER_ARGS}; then \ actual_size=`stat -f %z "$${file}"`; \ if [ -n "${DISABLE_SIZE}" ] || [ -z "$${CKSIZE}" ] || [ $${actual_size} -eq $${CKSIZE} ]; then \ continue 2; \ else \ ${ECHO_MSG} "=> Fetched file size mismatch (expected $${CKSIZE}, actual $${actual_size})"; \ if [ $${sites_remaining} -gt 0 ]; then \ ${ECHO_MSG} "=> Trying next site"; \ ${RM} -f $${file}; \ fi; \ fi; \ fi; \ done; \ ${ECHO_MSG} "=> Couldn't fetch it - please try to retrieve this";\ ${ECHO_MSG} "=> port manually into ${_DISTDIR} and try again."; \ exit 1; \ fi; \ done .if defined(PATCHFILES) @cd ${_DISTDIR};\ ${_PATCH_SITES_ENV} ; \ for _file in ${PATCHFILES}; do \ file=`${ECHO_CMD} $$_file | ${SED} -E -e 's/:[^-:][^:]*$$//'` ; \ if [ $$_file = $$file ]; then \ select=''; \ else \ select=`${ECHO_CMD} $${_file##*:} | ${SED} -e 's/,/ /g'` ; \ fi; \ file=`${ECHO_CMD} $$file | ${SED} -E -e 's/:-[^:]+$$//'` ; \ force_fetch=false; \ filebasename=$${file##*/}; \ for afile in ${FORCE_FETCH}; do \ afile=$${afile##*/}; \ if [ "x$$afile" = "x$$filebasename" ]; then \ force_fetch=true; \ fi; \ done; \ if [ ! -f $$file -a ! -f $$filebasename -o "$$force_fetch" = "true" ]; then \ if [ -L $$file -o -L $${file##*/} ]; then \ ${ECHO_MSG} "=> ${_DISTDIR}/$$file is a broken symlink."; \ ${ECHO_MSG} "=> Perhaps a filesystem (most likely a CD) isn't mounted?"; \ ${ECHO_MSG} "=> Please correct this problem and try again."; \ exit 1; \ fi; \ ${ECHO_MSG} "=> $$file doesn't seem to exist in ${_DISTDIR}."; \ if [ ! -z "$$select" ] ; then \ __PATCH_SITES_TMP= ; \ for group in $$select; do \ if [ ! -z \$${_PATCH_SITES_$${group}} ] ; then \ eval ___PATCH_SITES_TMP="\$${_PATCH_SITES_$${group}}" ; \ __PATCH_SITES_TMP="$${__PATCH_SITES_TMP} $${___PATCH_SITES_TMP}" ; \ fi; \ done; \ ___PATCH_SITES_TMP= ; \ SORTED_PATCH_SITES_CMD_TMP="${ECHO_CMD} ${_MASTER_SITE_OVERRIDE} `${ECHO_CMD} $${__PATCH_SITES_TMP} | ${AWK} '${MASTER_SORT_AWK:S|\\|\\\\|g}'` ${_MASTER_SITE_BACKUP}" ; \ else \ SORTED_PATCH_SITES_CMD_TMP="${SORTED_PATCH_SITES_DEFAULT_CMD}" ; \ fi; \ sites_remaining=0; \ sites="`eval $$SORTED_PATCH_SITES_CMD_TMP`"; \ for site in $${sites}; do \ sites_remaining=$$(($${sites_remaining} + 1)); \ done; \ for site in $${sites}; do \ sites_remaining=$$(($${sites_remaining} - 1)); \ ${ECHO_MSG} "=> Attempting to fetch $${site}$${file}"; \ CKSIZE=`alg=SIZE; ${DISTINFO_DATA}`; \ case $${file} in \ */*) ${MKDIR} $${file%/*}; \ args="-o $${file} $${site}$${file}";; \ *) args=$${site}$${file};; \ esac; \ if ${SETENV} ${FETCH_ENV} ${FETCH_CMD} ${FETCH_BEFORE_ARGS} $${args} ${FETCH_AFTER_ARGS}; then \ actual_size=`stat -f %z "$${file}"`; \ if [ -n "${DISABLE_SIZE}" ] || [ -z "$${CKSIZE}" ] || [ $${actual_size} -eq $${CKSIZE} ]; then \ continue 2; \ else \ ${ECHO_MSG} "=> Fetched file size mismatch (expected $${CKSIZE}, actual $${actual_size})"; \ if [ $${sites_remaining} -gt 1 ]; then \ ${ECHO_MSG} "=> Trying next site"; \ ${RM} -f $${file}; \ fi; \ fi; \ fi; \ done; \ ${ECHO_MSG} "=> Couldn't fetch it - please try to retrieve this";\ ${ECHO_MSG} "=> port manually into ${_DISTDIR} and try again."; \ exit 1; \ fi; \ done .endif .endif # Extract clean-wrkdir: @${RM} -rf ${WRKDIR} .if !target(do-extract) do-extract: @for file in ${EXTRACT_ONLY}; do \ if ! (cd ${EXTRACT_WRKDIR} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/$$file ${EXTRACT_AFTER_ARGS});\ then \ exit 1; \ fi; \ done @if [ ${UID} = 0 ]; then \ ${CHMOD} -R ug-s ${WRKDIR}; \ ${CHOWN} -R 0:0 ${WRKDIR}; \ fi .endif # Patch .if !target(do-patch) do-patch: .if defined(PATCHFILES) @${ECHO_MSG} "===> Applying distribution patches for ${PKGNAME}" @(set -e; \ cd ${_DISTDIR}; \ patch_dist_strip () { \ case "$$1" in \ ${_PATCH_DIST_STRIP_CASES} \ esac; \ }; \ for i in ${_PATCHFILES}; do \ if [ ${PATCH_DEBUG_TMP} = yes ]; then \ ${ECHO_MSG} "===> Applying distribution patch $$i" ; \ fi ; \ case $$i in \ *.Z|*.gz) ${GZCAT} $$i ;; \ *.bz2) ${BZCAT} $$i ;; \ *.xz) ${XZCAT} $$i ;; \ *.zip) ${UNZIP_NATIVE_CMD} -p $$i ;; \ *) ${CAT} $$i ;; \ esac | ${PATCH} ${PATCH_DIST_ARGS} `patch_dist_strip $$i` ; \ done ) .endif .if defined(EXTRA_PATCHES) @set -e ; \ for i in ${EXTRA_PATCHES}; do \ case $$i in \ *:-p[0-9]) patch_file=$${i%:*} ; patch_strip=$${i##*:} ;; \ *) patch_file=$$i ;; \ esac ; \ ${ECHO_MSG} "===> Applying extra patch $$patch_file" ; \ case $$patch_file in \ *.Z|*.gz) ${GZCAT} $$patch_file ;; \ *.bz2) ${BZCAT} $$patch_file ;; \ *.xz) ${XZCAT} $$patch_file ;; \ *.zip) ${UNZIP_NATIVE_CMD} -p $$patch_file ;; \ *) ${CAT} $$patch_file ;; \ esac | ${PATCH} ${PATCH_ARGS} $$patch_strip ; \ done .endif @set -e ;\ if [ -d ${PATCHDIR} ]; then \ if [ "`${ECHO_CMD} ${PATCHDIR}/patch-*`" != "${PATCHDIR}/patch-*" ]; then \ ${ECHO_MSG} "===> Applying ${OPSYS} patches for ${PKGNAME}" ; \ PATCHES_APPLIED="" ; \ for i in ${PATCHDIR}/patch-*; do \ case $$i in \ *.orig|*.rej|*~|*,v) \ ${ECHO_MSG} "===> Ignoring patchfile $$i" ; \ ;; \ *) \ if [ ${PATCH_DEBUG_TMP} = yes ]; then \ ${ECHO_MSG} "===> Applying ${OPSYS} patch $$i" ; \ fi; \ if ${PATCH} ${PATCH_ARGS} < $$i ; then \ PATCHES_APPLIED="$$PATCHES_APPLIED $$i" ; \ else \ ${ECHO_MSG} `${ECHO_CMD} "=> Patch $$i failed to apply cleanly." | ${SED} "s|${PATCHDIR}/||"` ; \ if [ x"$$PATCHES_APPLIED" != x"" -a ${PATCH_SILENT} != "yes" ]; then \ ${ECHO_MSG} `${ECHO_CMD} "=> Patch(es) $$PATCHES_APPLIED applied cleanly." | ${SED} "s|${PATCHDIR}/||g"` ; \ fi; \ ${FALSE} ; \ fi; \ ;; \ esac; \ done; \ fi; \ fi .endif .if !target(run-autotools-fixup) run-autotools-fixup: # Work around an issue where FreeBSD 10.0 is detected as FreeBSD 1.x. .if ${OSVERSION} >= 1000000 && !defined(WITHOUT_FBSD10_FIX) -@for f in `${FIND} ${WRKDIR} -type f \( -name config.libpath -o \ -name config.rpath -o -name configure -o -name libtool.m4 -o \ -name ltconfig -o -name libtool -o -name aclocal.m4 -o \ -name acinclude.m4 \)` ; do \ ${SED} -i.fbsd10bak \ -e 's|freebsd1\*)|freebsd1.\*)|g' \ -e 's|freebsd\[12\]\*)|freebsd[12].*)|g' \ -e 's|freebsd\[123\]\*)|freebsd[123].*)|g' \ -e 's|freebsd\[\[12\]\]\*)|freebsd[[12]].*)|g' \ -e 's|freebsd\[\[123\]\]\*)|freebsd[[123]].*)|g' \ $${f} ; \ cmp -s $${f}.fbsd10bak $${f} || \ ${ECHO_MSG} "===> FreeBSD 10 autotools fix applied to $${f}"; \ ${TOUCH} ${TOUCH_FLAGS} -mr $${f}.fbsd10bak $${f} ; \ ${RM} -f $${f}.fbsd10bak ; \ done .endif .endif # Configure .if !target(do-configure) do-configure: @if [ -f ${SCRIPTDIR}/configure ]; then \ cd ${.CURDIR} && ${SETENV} ${SCRIPTS_ENV} ${SH} \ ${SCRIPTDIR}/configure; \ fi .if defined(GNU_CONFIGURE) @CONFIG_GUESS_DIRS=$$(${FIND} ${WRKDIR} -name config.guess -o -name config.sub \ | ${XARGS} -n 1 ${DIRNAME}); \ for _D in $${CONFIG_GUESS_DIRS}; do \ ${RM} $${_D}/config.guess; \ ${CP} ${TEMPLATES}/config.guess $${_D}/config.guess; \ ${CHMOD} a+rx $${_D}/config.guess; \ ${RM} $${_D}/config.sub; \ ${CP} ${TEMPLATES}/config.sub $${_D}/config.sub; \ ${CHMOD} a+rx $${_D}/config.sub; \ done .endif .if defined(HAS_CONFIGURE) @(cd ${CONFIGURE_WRKSRC} && \ ${SET_LATE_CONFIGURE_ARGS} \ if ! ${SETENV} CC="${CC}" CPP="${CPP}" CXX="${CXX}" \ CFLAGS="${CFLAGS}" CPPFLAGS="${CPPFLAGS}" CXXFLAGS="${CXXFLAGS}" \ LDFLAGS="${LDFLAGS}" LIBS="${LIBS}" \ INSTALL="/usr/bin/install -c" \ INSTALL_DATA="${INSTALL_DATA}" \ INSTALL_LIB="${INSTALL_LIB}" \ INSTALL_PROGRAM="${INSTALL_PROGRAM}" \ INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ ${CONFIGURE_ENV} ${CONFIGURE_CMD} ${CONFIGURE_ARGS}; then \ ${ECHO_MSG} "===> Script \"${CONFIGURE_SCRIPT}\" failed unexpectedly."; \ (${ECHO_CMD} ${CONFIGURE_FAIL_MESSAGE}) | ${FMT} 75 79 ; \ ${FALSE}; \ fi) .endif .endif # Build # XXX: ${MAKE_ARGS:N${DESTDIRNAME}=*} would be easier but it is not valid with the old fmake DO_MAKE_BUILD?= ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${_MAKE_JOBS} ${MAKE_ARGS:C,^${DESTDIRNAME}=.*,,g} .if !target(do-build) do-build: @(cd ${BUILD_WRKSRC}; if ! ${DO_MAKE_BUILD} ${ALL_TARGET}; then \ if [ -n "${BUILD_FAIL_MESSAGE}" ] ; then \ ${ECHO_MSG} "===> Compilation failed unexpectedly."; \ (${ECHO_CMD} "${BUILD_FAIL_MESSAGE}") | ${FMT} 75 79 ; \ fi; \ ${FALSE}; \ fi) .endif # Check conflicts .if !target(check-conflicts) check-conflicts: check-build-conflicts check-install-conflicts .endif .if !target(check-build-conflicts) check-build-conflicts: .if ( defined(CONFLICTS) || defined(CONFLICTS_BUILD) ) && !defined(DISABLE_CONFLICTS) && !defined(DEFER_CONFLICTS_CHECK) @conflicts_with=$$( \ { ${PKG_QUERY} -g "%n-%v %p %o" ${CONFLICTS:C/.+/'&'/} ${CONFLICTS_BUILD:C/.+/'&'/} 2>/dev/null || : ; } \ | while read pkgname prfx orgn; do \ if [ "/${PREFIX}" = "/$${prfx}" -a "/${PKGORIGIN}" != "/$${orgn}" ]; then \ ${ECHO_CMD} -n " $${pkgname}"; \ fi; \ done); \ if [ -n "$${conflicts_with}" ]; then \ ${ECHO_MSG}; \ ${ECHO_MSG} "===> ${PKGNAME} conflicts with installed package(s): "; \ for entry in $${conflicts_with}; do \ ${ECHO_MSG} " $${entry}"; \ done; \ ${ECHO_MSG}; \ ${ECHO_MSG} " They will not build together."; \ ${ECHO_MSG} " Please remove them first with pkg delete."; \ exit 1;\ fi .endif .endif .if !target(identify-install-conflicts) identify-install-conflicts: .if ( defined(CONFLICTS) || defined(CONFLICTS_INSTALL) ) && !defined(DISABLE_CONFLICTS) @conflicts_with=$$( \ { ${PKG_QUERY} -g "%n-%v %p %o" ${CONFLICTS:C/.+/'&'/} ${CONFLICTS_INSTALL:C/.+/'&'/} 2>/dev/null || : ; } \ | while read pkgname prfx orgn; do \ if [ "/${PREFIX}" = "/$${prfx}" -a "/${PKGORIGIN}" != "/$${orgn}" ]; then \ ${ECHO_CMD} -n " $${pkgname}"; \ fi; \ done); \ if [ -n "$${conflicts_with}" ]; then \ ${ECHO_MSG}; \ ${ECHO_MSG} "===> ${PKGNAME} conflicts with installed package(s): "; \ for entry in $${conflicts_with}; do \ ${ECHO_MSG} " $${entry}"; \ done; \ ${ECHO_MSG}; \ ${ECHO_MSG} " They install files into the same place."; \ ${ECHO_MSG} " You may want to stop build with Ctrl + C."; \ sleep 10; \ fi .endif .endif .if !target(check-install-conflicts) check-install-conflicts: .if ( defined(CONFLICTS) || defined(CONFLICTS_INSTALL) || ( defined(CONFLICTS_BUILD) && defined(DEFER_CONFLICTS_CHECK) ) ) && !defined(DISABLE_CONFLICTS) .if defined(DEFER_CONFLICTS_CHECK) @conflicts_with=$$( \ { ${PKG_QUERY} -g "%n-%v %p %o" ${CONFLICTS:C/.+/'&'/} ${CONFLICTS_BUILD:C/.+/'&'/} ${CONFLICTS_INSTALL:C/.+/'&'/} 2>/dev/null || : ; } \ | while read pkgname prfx orgn; do \ if [ "/${PREFIX}" = "/$${prfx}" -a "/${PKGORIGIN}" != "/$${orgn}" ]; then \ ${ECHO_CMD} -n " $${pkgname}"; \ fi; \ done); \ if [ -n "$${conflicts_with}" ]; then \ ${ECHO_MSG}; \ ${ECHO_MSG} "===> ${PKGNAME} conflicts with installed package(s): "; \ for entry in $${conflicts_with}; do \ ${ECHO_MSG} " $${entry}"; \ done; \ ${ECHO_MSG}; \ ${ECHO_MSG} " Please remove them first with pkg delete."; \ exit 1; \ fi .else @conflicts_with=$$( \ { ${PKG_QUERY} -g "%n-%v %p %o" ${CONFLICTS:C/.+/'&'/} ${CONFLICTS_INSTALL:C/.+/'&'/} 2>/dev/null || : ; } \ | while read pkgname prfx orgn; do \ if [ "/${PREFIX}" = "/$${prfx}" -a "/${PKGORIGIN}" != "/$${orgn}" ]; then \ ${ECHO_CMD} -n " $${pkgname}"; \ fi; \ done); \ if [ -n "$${conflicts_with}" ]; then \ ${ECHO_MSG}; \ ${ECHO_MSG} "===> ${PKGNAME} conflicts with installed package(s): "; \ for entry in $${conflicts_with}; do \ ${ECHO_MSG} " $${entry}"; \ done; \ ${ECHO_MSG}; \ ${ECHO_MSG} " They install files into the same place."; \ ${ECHO_MSG} " Please remove them first with pkg delete."; \ exit 1; \ fi .endif # defined(DEFER_CONFLICTS_CHECK) .endif .endif # Install .if !target(do-install) && !defined(NO_INSTALL) do-install: @(cd ${INSTALL_WRKSRC} && ${SETENV} ${MAKE_ENV} ${FAKEROOT} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}) .endif # Test .if !target(do-test) && defined(TEST_TARGET) DO_MAKE_TEST?= ${SETENV} ${TEST_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${TEST_ARGS:C,^${DESTDIRNAME}=.*,,g} do-test: @(cd ${TEST_WRKSRC}; if ! ${DO_MAKE_TEST} ${TEST_TARGET}; then \ if [ -n "${TEST_FAIL_MESSAGE}" ] ; then \ ${ECHO_MSG} "===> Tests failed unexpectedly."; \ (${ECHO_CMD} "${TEST_FAIL_MESSAGE}") | ${FMT} 75 79 ; \ fi; \ ${FALSE}; \ fi) .elif !target(do-test) do-test: @${DO_NADA} .endif # Package .if !target(do-package) PKG_CREATE_ARGS= -r ${STAGEDIR} -m ${METADIR} -p ${TMPPLIST} .if defined(PKG_CREATE_VERBOSE) PKG_CREATE_ARGS+= -v .endif do-package: create-manifest do-package: ${TMPPLIST} @if [ -d ${PACKAGES} ]; then \ if [ ! -d ${PKGREPOSITORY} ]; then \ if ! ${MKDIR} ${PKGREPOSITORY}; then \ ${ECHO_MSG} "=> Can't create directory ${PKGREPOSITORY}."; \ exit 1; \ fi; \ fi; \ fi @for cat in ${CATEGORIES}; do \ ${RM} -f ${PACKAGES}/$$cat/${PKGNAMEPREFIX}${PORTNAME}*${PKG_SUFX} ; \ done @${MKDIR} ${WRKDIR}/pkg @if ${SETENV} ${PKG_ENV} FORCE_POST="${_FORCE_POST_PATTERNS}" ${PKG_CREATE} ${PKG_CREATE_ARGS} -f ${PKG_SUFX:S/.//} -o ${WRKDIR}/pkg ${PKGNAME}; then \ if [ -d ${PKGREPOSITORY} -a -w ${PKGREPOSITORY} ]; then \ ${LN} -f ${WRKDIR_PKGFILE} ${PKGFILE} 2>/dev/null \ || ${CP} -f ${WRKDIR_PKGFILE} ${PKGFILE}; \ if [ "${PKGORIGIN}" = "ports-mgmt/pkg" -o "${PKGORIGIN}" = "ports-mgmt/pkg-devel" ]; then \ if [ ! -d ${PKGLATESTREPOSITORY} ]; then \ if ! ${MKDIR} ${PKGLATESTREPOSITORY}; then \ ${ECHO_MSG} "=> Can't create directory ${PKGLATESTREPOSITORY}."; \ exit 1; \ fi; \ fi ; \ ${LN} -sf ../${PKGREPOSITORYSUBDIR}/${PKGNAME}${PKG_SUFX} ${PKGLATESTFILE} ; \ fi; \ elif [ ! -d ${PACKAGES} ]; then \ ${LN} -f ${WRKDIR_PKGFILE} ${PKGFILE} 2>/dev/null \ || ${CP} -f ${WRKDIR_PKGFILE} ${PKGFILE}; \ fi; \ else \ cd ${.CURDIR} && eval ${MAKE} delete-package >/dev/null; \ exit 1; \ fi .endif # Some support rules for do-package .if !target(delete-package) delete-package: @${ECHO_MSG} "===> Deleting package for ${PKGNAME}" # When staging, the package may only be in the workdir if not root @${RM} -f ${PKGFILE} ${WRKDIR_PKGFILE} 2>/dev/null || : .endif .if !target(delete-package-list) delete-package-list: @${ECHO_CMD} "[ -f ${PKGFILE} ] && (${ECHO_CMD} deleting ${PKGFILE}; ${RM} -f ${PKGFILE})" .endif # Used by scripts and users to install a package from local repository. # Poudriere -i uses this, please keep. .if !target(install-package) .if defined(FORCE_PKG_REGISTER) _INSTALL_PKG_ARGS= -f .endif .if defined(INSTALLS_DEPENDS) _INSTALL_PKG_ARGS+= -A .endif install-package: @if [ -f "${WRKDIR}/pkg/${PKGNAME}${PKG_SUFX}" ]; then \ _pkgfile="${WRKDIR_PKGFILE}"; \ else \ _pkgfile="${PKGFILE}"; \ fi; \ ${PKG_ADD} ${_INSTALL_PKG_ARGS} $${_pkgfile} .endif # Utility targets follow .if !target(check-already-installed) .if !defined(NO_PKG_REGISTER) && !defined(FORCE_PKG_REGISTER) check-already-installed: @${ECHO_MSG} "===> Checking if ${PKGBASE} already installed"; \ pkgname=`${PKG_INFO} -q -O ${PKGBASE}`; \ if [ -n "$${pkgname}" ]; then \ v=`${PKG_VERSION} -t $${pkgname} ${PKGNAME}`; \ if [ "$${v}" = "<" ]; then \ ${ECHO_CMD} "===> An older version of ${PKGBASE} is already installed ($${pkgname})"; \ else \ ${ECHO_CMD} "===> ${PKGNAME} is already installed"; \ fi; \ ${ECHO_MSG} " You may wish to \`\`make deinstall'' and install this port again"; \ ${ECHO_MSG} " by \`\`make reinstall'' to upgrade it properly."; \ ${ECHO_MSG} " If you really wish to overwrite the old port of ${PKGBASE}"; \ ${ECHO_MSG} " without deleting it first, set the variable \"FORCE_PKG_REGISTER\""; \ ${ECHO_MSG} " in your environment or the \"make install\" command line."; \ exit 1; \ fi .endif .endif .if !target(check-umask) check-umask: @if [ `${SH} -c umask` != 0022 ]; then \ ${ECHO_MSG} "===> Warning: your umask is \"`${SH} -c umask`"\".; \ ${ECHO_MSG} " If this is not desired, set it to an appropriate value"; \ ${ECHO_MSG} " and install this port again by \`\`make reinstall''."; \ fi .endif .if !target(install-mtree) install-mtree: @${DO_NADA} .endif .if !target(install-ldconfig-file) install-ldconfig-file: . if defined(USE_LDCONFIG) || defined(USE_LDCONFIG32) . if defined(USE_LDCONFIG) . if !defined(USE_LINUX_PREFIX) . if ${USE_LDCONFIG} != "${LOCALBASE}/lib" && !defined(INSTALL_AS_USER) @${ECHO_MSG} "===> Installing ldconfig configuration file" . if defined(NO_MTREE) || ${PREFIX} != ${LOCALBASE} @${MKDIR} ${STAGEDIR}${LOCALBASE}/${LDCONFIG_DIR} . endif @${ECHO_CMD} ${USE_LDCONFIG} | ${TR} ' ' '\n' \ > ${STAGEDIR}${LOCALBASE}/${LDCONFIG_DIR}/${PKGBASE} @${ECHO_CMD} ${LOCALBASE}/${LDCONFIG_DIR}/${PKGBASE} >> ${TMPPLIST} . if ${PREFIX} != ${LOCALBASE} @${ECHO_CMD} "@dir ${LOCALBASE}/${LDCONFIG_DIR}" >> ${TMPPLIST} . endif . endif . endif . endif . if defined(USE_LDCONFIG32) . if !defined(INSTALL_AS_USER) @${ECHO_MSG} "===> Installing 32-bit ldconfig configuration file" . if defined(NO_MTREE) || ${PREFIX} != ${LOCALBASE} @${MKDIR} ${STAGEDIR}${LOCALBASE}/${LDCONFIG32_DIR} . endif @${ECHO_CMD} ${USE_LDCONFIG32} | ${TR} ' ' '\n' \ > ${STAGEDIR}${LOCALBASE}/${LDCONFIG32_DIR}/${PKGBASE} @${ECHO_CMD} ${LOCALBASE}/${LDCONFIG32_DIR}/${PKGBASE} >> ${TMPPLIST} . if ${PREFIX} != ${LOCALBASE} @${ECHO_CMD} "@dir ${LOCALBASE}/${LDCONFIG32_DIR}" >> ${TMPPLIST} . endif . endif . endif . endif .endif .if !target(create-users-groups) .if defined(GROUPS) || defined(USERS) _UG_OUTPUT= ${WRKDIR}/users-groups.sh PKGPREINSTALL+= ${_UG_OUTPUT} create-users-groups: @${RM} -f ${_UG_OUTPUT} || ${TRUE} .if ${OPSYS} != FreeBSD || ${OSVERSION} < 1002000 @${ECHO_CMD} "PW=${PW}" >> ${_UG_OUTPUT} .else @${ECHO_CMD} -e "if [ -n \"\$${PKG_ROOTDIR}\" -a \"\$${PKG_ROOTDIR}\" != \"/\" ]; then PW=\"${PW} -R \$${PKG_ROOTDIR}\"; else PW=${PW}; fi" >> ${_UG_OUTPUT} .endif .if defined(GROUPS) .for _file in ${GID_FILES} .if !exists(${_file}) @${ECHO_CMD} "** ${_file} doesn't exist. Exiting."; exit 1 .endif .endfor @${ECHO_MSG} "===> Creating users and/or groups." @${ECHO_CMD} "echo \"===> Creating users and/or groups.\"" >> ${_UG_OUTPUT} .for _group in ${GROUPS} # _bgpd:*:130: @if ! ${GREP} -h ^${_group}: ${GID_FILES} >/dev/null 2>&1; then \ ${ECHO_CMD} "** Cannot find any information about group \`${_group}' in ${GID_FILES}."; \ exit 1; \ fi @IFS=":"; ${GREP} -h ^${_group}: ${GID_FILES} | head -n 1 | while read group foo gid members; do \ gid=$$(($$gid+${GID_OFFSET})); \ ${ECHO_CMD} -e "if ! \$${PW} groupshow $$group >/dev/null 2>&1; then \n \ echo \"Creating group '$$group' with gid '$$gid'.\" \n \ \$${PW} groupadd $$group -g $$gid; else echo \"Using existing group '$$group'.\"\nfi" >> ${_UG_OUTPUT}; \ done .endfor .endif .if defined(USERS) .for _file in ${UID_FILES} .if !exists(${_file}) @${ECHO_CMD} "** ${_file} doesn't exist. Exiting."; exit 1 .endif .endfor .for _user in ${USERS} # _bgpd:*:130:130:BGP Daemon:/var/empty:/sbin/nologin @if ! ${GREP} -h ^${_user}: ${UID_FILES} >/dev/null 2>&1; then \ ${ECHO_CMD} "** Cannot find any information about user \`${_user}' in ${UID_FILES}."; \ exit 1; \ fi @IFS=":"; ${GREP} -h ^${_user}: ${UID_FILES} | head -n 1 | while read login passwd uid gid class change expire gecos homedir shell; do \ uid=$$(($$uid+${UID_OFFSET})); \ gid=$$(($$gid+${GID_OFFSET})); \ class="$${class:+-L }$$class"; \ homedir=$$(echo $$homedir | sed "s|^/usr/local|${PREFIX}|"); \ ${ECHO_CMD} -e "if ! \$${PW} usershow $$login >/dev/null 2>&1; then \n \ echo \"Creating user '$$login' with uid '$$uid'.\" \n \ \$${PW} useradd $$login -u $$uid -g $$gid $$class -c \"$$gecos\" -d $$homedir -s $$shell \n \ else \necho \"Using existing user '$$login'.\" \nfi" >> ${_UG_OUTPUT}; \ case $$homedir in /|/nonexistent|/var/empty) ;; *) ${ECHO_CMD} "${INSTALL} -d -g $$gid -o $$uid $$homedir" >> ${_UG_OUTPUT};; esac; \ done .endfor .if defined(GROUPS) .for _group in ${GROUPS} # mail:*:6:postfix,clamav @IFS=":"; ${GREP} -h ^${_group}: ${GID_FILES} | head -n 1 | while read group foo gid members; do \ gid=$$(($$gid+${GID_OFFSET})); \ IFS=","; for _login in $$members; do \ for _user in ${USERS}; do \ if [ "x$${_user}" = "x$${_login}" ]; then \ ${ECHO_CMD} -e "if ! \$${PW} groupshow ${_group} | ${GREP} -qw $${_login}; then \n \ echo \"Adding user '$${_login}' to group '${_group}'.\" \n \ \$${PW} groupmod ${_group} -m $${_login} \nfi" >> ${_UG_OUTPUT}; \ fi; \ done; \ done; \ done .endfor .endif .if defined(USERS) .for _user in ${USERS} .if ${OPSYS} != FreeBSD || ${OSVERSION} < 1002000 @if [ ! ${USERS_BLACKLIST:M${_user}} ]; then \ ${ECHO_CMD} "@unexec PW=${PW}; \ if \$${PW} usershow ${_user} >/dev/null 2>&1; then \ echo \"==> You should manually remove the \\\"${_user}\\\" user. \"; fi" >> ${TMPPLIST}; \ fi .else @if [ ! ${USERS_BLACKLIST:M${_user}} ]; then \ ${ECHO_CMD} "@unexec if [ -n \"\$${PKG_ROOTDIR}\" -a \"\$${PKG_ROOTDIR}\" != \"/\" ]; then PW=\"${PW} -R \$${PKG_ROOTDIR}\"; else PW=${PW}; fi; \ if \$${PW} usershow ${_user} >/dev/null 2>&1; then \ echo \"==> You should manually remove the \\\"${_user}\\\" user. \"; fi" >> ${TMPPLIST}; \ fi .endif .endfor .endif .endif .endif .endif .if !defined(DISABLE_SECURITY_CHECK) .if !target(security-check) security-check: ${TMPPLIST} # Scan PLIST for: # 1. setugid files # 2. accept()/recvfrom() which indicates network listening capability # 3. insecure functions (gets/mktemp/tempnam/[XXX]) # 4. startup scripts, in conjunction with 2. # 5. world-writable files/dirs # -@${RM} -f ${WRKDIR}/.PLIST.setuid ${WRKDIR}/.PLIST.writable ${WRKDIR}/.PLIST.objdump; \ ${AWK} -v prefix='${PREFIX}' ' \ match($$0, /^@cwd /) { prefix = substr($$0, RSTART + RLENGTH); if (prefix == "/") prefix=""; next; } \ /^@/ { next; } \ /^\// { print; next; } \ { print prefix "/" $$0; } \ ' ${TMPPLIST} > ${WRKDIR}/.PLIST.flattened; \ ${TR} '\n' '\0' < ${WRKDIR}/.PLIST.flattened \ | ${XARGS} -0 -J % ${FIND} % -prune ! -type l -type f \( -perm -4000 -o -perm -2000 \) \( -perm -0010 -o -perm -0001 \) 2> /dev/null > ${WRKDIR}/.PLIST.setuid; \ ${TR} '\n' '\0' < ${WRKDIR}/.PLIST.flattened \ | ${XARGS} -0 -J % ${FIND} % -prune -perm -0002 \! -type l 2> /dev/null > ${WRKDIR}/.PLIST.writable; \ ${TR} '\n' '\0' < ${WRKDIR}/.PLIST.flattened \ | ${XARGS} -0 -J % ${FIND} % -prune ! -type l -type f -print0 2> /dev/null \ | ${XARGS} -0 -n 1 ${OBJDUMP} -R 2> /dev/null > ${WRKDIR}/.PLIST.objdump; \ if \ ! ${AWK} -v audit="$${PORTS_AUDIT}" -f ${SCRIPTSDIR}/security-check.awk \ ${WRKDIR}/.PLIST.flattened ${WRKDIR}/.PLIST.objdump ${WRKDIR}/.PLIST.setuid ${WRKDIR}/.PLIST.writable; \ then \ www_site=$$(cd ${.CURDIR} && ${MAKE} www-site); \ if [ ! -z "$${www_site}" ]; then \ ${ECHO_MSG}; \ ${ECHO_MSG} " For more information, and contact details about the security"; \ ${ECHO_MSG} " status of this software, see the following webpage: "; \ ${ECHO_MSG} "$${www_site}"; \ fi; \ fi .endif .else # i.e. defined(DISABLE_SECURITY_CHECK) security-check: @${ECHO_MSG} " WARNING: Security check has been disabled." .endif # !defined(DISABLE_SECURITY_CHECK) ################################################################ # Skeleton targets start here # # You shouldn't have to change these. Either add the pre-* or # post-* targets/scripts or redefine the do-* targets. These # targets don't do anything other than checking for cookies and # call the necessary targets/scripts. ################################################################ extract-message: @${ECHO_MSG} "===> Extracting for ${PKGNAME}" patch-message: @${ECHO_MSG} "===> Patching for ${PKGNAME}" configure-message: @${ECHO_MSG} "===> Configuring for ${PKGNAME}" build-message: @${ECHO_MSG} "===> Building for ${PKGNAME}" stage-message: @${ECHO_MSG} "===> Staging for ${PKGNAME}" install-message: @${ECHO_MSG} "===> Installing for ${PKGNAME}" test-message: @${ECHO_MSG} "===> Testing for ${PKGNAME}" package-message: @${ECHO_MSG} "===> Building package for ${PKGNAME}" # Empty pre-* and post-* targets .for stage in pre post .for name in pkg check-sanity fetch extract patch configure build stage install package .if exists(${SCRIPTDIR}/${stage}-${name}) .if !target(${stage}-${name}-script) ${stage}-${name}-script: @ cd ${.CURDIR} && ${SETENV} ${SCRIPTS_ENV} ${SH} \ ${SCRIPTDIR}/${.TARGET:S/-script$//} .endif .endif .endfor .endfor .if !target(pretty-print-www-site) pretty-print-www-site: @www_site=$$(cd ${.CURDIR} && ${MAKE} www-site); \ if [ -n "$${www_site}" ]; then \ ${ECHO_MSG} -n " and/or visit the "; \ ${ECHO_MSG} -n "web site"; \ ${ECHO_MSG} " for further information"; \ fi .endif ################################################################ # Some more targets supplied for users' convenience ################################################################ # Checkpatch # # Special target to verify patches .if !target(checkpatch) checkpatch: @cd ${.CURDIR} && ${MAKE} ${PATCH_SILENT} PATCH_CHECK_ONLY=yes ${_PATCH_DEP} ${_PATCH_REAL_SEQ} .endif # Reinstall # # Special target to re-run install .if !target(reinstall) reinstall: @${RM} -f ${INSTALL_COOKIE} ${PACKAGE_COOKIE} @cd ${.CURDIR} && DEPENDS_TARGET="${DEPENDS_TARGET}" ${MAKE} -DFORCE_PKG_REGISTER install .endif .if !target(restage) restage: @${RM} -rf ${STAGEDIR} ${STAGE_COOKIE} ${INSTALL_COOKIE} ${PACKAGE_COOKIE} @cd ${.CURDIR} && ${MAKE} stage .endif # Deinstall # # Special target to remove installation .if !target(deinstall) deinstall: .if defined(UID) && ${UID} != 0 && !defined(INSTALL_AS_USER) @${ECHO_MSG} "===> Switching to root credentials for '${.TARGET}' target" @cd ${.CURDIR} && \ ${SU_CMD} "${MAKE} ${.TARGET}" @${ECHO_MSG} "===> Returning to user credentials" .else @${ECHO_MSG} "===> Deinstalling for ${PKGBASE}" @if ${PKG_INFO} -e ${PKGBASE}; then \ p=`${PKG_INFO} -q -O ${PKGBASE}`; \ ${ECHO_MSG} "===> Deinstalling $${p}"; \ ${PKG_DELETE} -f ${PKGBASE} ; \ else \ ${ECHO_MSG} "===> ${PKGBASE} not installed, skipping"; \ fi @${RM} -f ${INSTALL_COOKIE} ${PACKAGE_COOKIE} .endif .endif # Deinstall-all # # Special target to remove installation of all ports of the same origin .if !target(deinstall-all) deinstall-all: .if ${UID} != 0 && !defined(INSTALL_AS_USER) @${ECHO_MSG} "===> Switching to root credentials for '${.TARGET}' target" @cd ${.CURDIR} && \ ${SU_CMD} "${MAKE} ${.TARGET}" @${ECHO_MSG} "===> Returning to user credentials" .else @${ECHO_MSG} "===> Deinstalling for ${PKGORIGIN}" @deinstall_names=`${PKG_INFO} -q -O ${PKGORIGIN}`; \ for oldpkgorigin in $$(${GREP} "|${PKGORIGIN}|" ${PORTSDIR}/MOVED | ${CUT} -f 1 -d '|' | ${SORT} -u); do \ deinstall_names="$${deinstall_names} $$(${PKG_INFO} -q -O $${oldpkgorigin})"; \ done; \ if [ -n "$${deinstall_names}" ]; then \ for d in $${deinstall_names}; do \ ${ECHO_MSG} "===> Deinstalling $${d}"; \ ${PKG_DELETE} -f $${d}; \ done; \ else \ ${ECHO_MSG} "===> ${PKGORIGIN} not installed, skipping"; \ fi; \ ${RM} -f ${INSTALL_COOKIE} ${PACKAGE_COOKIE} .endif .endif # Cleaning up .if !target(do-clean) do-clean: @if [ -d ${WRKDIR} ]; then \ if [ -w ${WRKDIR} ]; then \ ${RM} -rf ${WRKDIR}; \ else \ ${ECHO_MSG} "===> ${WRKDIR} not writable, skipping"; \ fi; \ fi .endif .if !target(clean) clean: .if !defined(NOCLEANDEPENDS) @cd ${.CURDIR} && ${MAKE} limited-clean-depends .endif @${ECHO_MSG} "===> Cleaning for ${PKGNAME}" .if target(pre-clean) @cd ${.CURDIR} && ${MAKE} pre-clean .endif @cd ${.CURDIR} && ${MAKE} do-clean .if target(post-clean) @cd ${.CURDIR} && ${MAKE} post-clean .endif .endif .if !target(pre-distclean) pre-distclean: @${DO_NADA} .endif .if !target(distclean) distclean: pre-distclean clean @cd ${.CURDIR} && ${MAKE} delete-distfiles RESTRICTED_FILES="${_DISTFILES} ${_PATCHFILES}" .endif .if !target(delete-distfiles) delete-distfiles: @${ECHO_MSG} "===> Deleting distfiles for ${PKGNAME}" @(if [ "X${RESTRICTED_FILES}" != "X" -a -d ${_DISTDIR} ]; then \ cd ${_DISTDIR}; \ for file in ${RESTRICTED_FILES}; do \ ${RM} -f $${file}; \ dir=$${file%/*}; \ if [ "$${dir}" != "$${file}" ]; then \ ${RMDIR} -p $${dir} >/dev/null 2>&1 || :; \ fi; \ done; \ fi) .if defined(DIST_SUBDIR) -@${RMDIR} ${_DISTDIR} >/dev/null 2>&1 || ${TRUE} .endif .endif .if !target(delete-distfiles-list) delete-distfiles-list: @${ECHO_CMD} "# ${PKGNAME}" @if [ "X${RESTRICTED_FILES}" != "X" ]; then \ for file in ${RESTRICTED_FILES}; do \ ${ECHO_CMD} "[ -f ${_DISTDIR}/$$file ] && (${ECHO_CMD} deleting ${_DISTDIR}/$$file; ${RM} -f ${_DISTDIR}/$$file)"; \ dir=$${file%/*}; \ if [ "$${dir}" != "$${file}" ]; then \ ${ECHO_CMD} "(cd ${_DISTDIR} && ${RMDIR} -p $${dir} 2>/dev/null)"; \ fi; \ done; \ fi .if defined(DIST_SUBDIR) @${ECHO_CMD} "${RMDIR} ${_DISTDIR} 2>/dev/null || ${TRUE}" .endif .endif # Prints out a list of files to fetch (useful to do a batch fetch) .if !target(fetch-list) fetch-list: @${MKDIR} ${_DISTDIR} @(cd ${_DISTDIR}; \ ${_MASTER_SITES_ENV} ; \ for _file in ${DISTFILES}; do \ file=`${ECHO_CMD} $$_file | ${SED} -E -e 's/:[^:]+$$//'` ; \ if [ $$_file = $$file ]; then \ select=''; \ else \ select=`${ECHO_CMD} $${_file##*:} | ${SED} -e 's/,/ /g'` ; \ fi; \ if [ ! -f $$file -a ! -f $${file##*/} ]; then \ if [ ! -z "$$select" ] ; then \ __MASTER_SITES_TMP= ; \ for group in $$select; do \ if [ ! -z \$${_MASTER_SITES_$${group}} ] ; then \ eval ___MASTER_SITES_TMP=\$${_MASTER_SITES_$${group}} ; \ __MASTER_SITES_TMP="$${__MASTER_SITES_TMP} $${___MASTER_SITES_TMP}" ; \ fi; \ done; \ ___MASTER_SITES_TMP= ; \ SORTED_MASTER_SITES_CMD_TMP="${ECHO_CMD} ${_MASTER_SITE_OVERRIDE} `${ECHO_CMD} $${__MASTER_SITES_TMP} | ${AWK} '${MASTER_SORT_AWK:S|\\|\\\\|g}'` ${_MASTER_SITE_BACKUP}" ; \ else \ SORTED_MASTER_SITES_CMD_TMP="${SORTED_MASTER_SITES_DEFAULT_CMD}" ; \ fi; \ ${ECHO_CMD} -n ${MKDIR} ${_DISTDIR} '&& ' ; \ ${ECHO_CMD} -n cd ${_DISTDIR} '&& { ' ; \ for site in `eval $$SORTED_MASTER_SITES_CMD_TMP ${_RANDOMIZE_SITES}`; do \ if [ ! -z "`${ECHO_CMD} ${NOFETCHFILES} | ${GREP} -w $${file}`" ]; then \ if [ -z "`${ECHO_CMD} ${MASTER_SITE_OVERRIDE} | ${GREP} -w $${site}`" ]; then \ continue; \ fi; \ fi; \ CKSIZE=`alg=SIZE; ${DISTINFO_DATA}`; \ case $${file} in \ */*) args="-o $${file} $${site}$${file}";; \ *) args=$${site}$${file};; \ esac; \ ${ECHO_CMD} -n ${SETENV} ${FETCH_ENV} ${FETCH_CMD} ${FETCH_BEFORE_ARGS} $${args} "${FETCH_AFTER_ARGS}" '|| ' ; \ done; \ ${ECHO_CMD} "${ECHO_CMD} $${file} not fetched; }" ; \ fi; \ done) .if defined(PATCHFILES) @(cd ${_DISTDIR}; \ ${_PATCH_SITES_ENV} ; \ for _file in ${PATCHFILES}; do \ file=`${ECHO_CMD} $$_file | ${SED} -E -e 's/:[^-:][^:]*$$//'` ; \ if [ $$_file = $$file ]; then \ select=''; \ else \ select=`${ECHO_CMD} $${_file##*:} | ${SED} -e 's/,/ /g'` ; \ fi; \ file=`${ECHO_CMD} $$file | ${SED} -E -e 's/:-[^:]+$$//'` ; \ if [ ! -f $$file -a ! -f $${file##*/} ]; then \ if [ ! -z "$$select" ] ; then \ __PATCH_SITES_TMP= ; \ for group in $$select; do \ if [ ! -z \$${_PATCH_SITES_$${group}} ] ; then \ eval ___PATCH_SITES_TMP=\$${_PATCH_SITES_$${group}} ; \ __PATCH_SITES_TMP="$${__PATCH_SITES_TMP} $${___PATCH_SITES_TMP}" ; \ fi; \ done; \ ___PATCH_SITES_TMP= ; \ SORTED_PATCH_SITES_CMD_TMP="${ECHO_CMD} ${_MASTER_SITE_OVERRIDE} `${ECHO_CMD} $${__PATCH_SITES_TMP} | ${AWK} '${MASTER_SORT_AWK:S|\\|\\\\|g}'` ${_MASTER_SITE_BACKUP}" ; \ else \ SORTED_PATCH_SITES_CMD_TMP="${SORTED_PATCH_SITES_DEFAULT_CMD}" ; \ fi; \ ${ECHO_CMD} -n ${MKDIR} ${_DISTDIR} '&& ' ; \ ${ECHO_CMD} -n cd ${_DISTDIR} '&& { ' ; \ for site in `eval $$SORTED_PATCH_SITES_CMD_TMP ${_RANDOMIZE_SITES}`; do \ CKSIZE=`alg=SIZE; ${DISTINFO_DATA}`; \ case $${file} in \ */*) args="-o $${file} $${site}$${file}";; \ *) args=$${site}$${file};; \ esac; \ ${ECHO_CMD} -n ${SETENV} ${FETCH_ENV} ${FETCH_CMD} ${FETCH_BEFORE_ARGS} $${args} "${FETCH_AFTER_ARGS}" '|| ' ; \ done; \ ${ECHO_CMD} "${ECHO_CMD} $${file} not fetched; }" ; \ fi; \ done) .endif .endif .if !target(fetch-url-list-int) fetch-url-list-int: @${MKDIR} ${_DISTDIR} @(cd ${_DISTDIR}; \ ${_MASTER_SITES_ENV}; \ for _file in ${DISTFILES}; do \ file=`${ECHO_CMD} $$_file | ${SED} -E -e 's/:[^:]+$$//'` ; \ fileptn=`${ECHO_CMD} $$file | ${SED} 's|/|\\\\/|g;s/\./\\\\./g;s/\+/\\\\+/g;s/\?/\\\\?/g'` ; \ if [ $$_file = $$file ]; then \ select=''; \ else \ select=`${ECHO_CMD} $${_file##*:} | ${SED} -e 's/,/ /g'` ; \ fi; \ if [ ! -z "${LISTALL}" -o ! -f $$file -a ! -f $${file##*/} ]; then \ if [ ! -z "$$select" ] ; then \ __MASTER_SITES_TMP= ; \ for group in $$select; do \ if [ ! -z \$${_MASTER_SITES_$${group}} ] ; then \ eval ___MASTER_SITES_TMP=\$${_MASTER_SITES_$${group}} ; \ __MASTER_SITES_TMP="$${__MASTER_SITES_TMP} $${___MASTER_SITES_TMP}" ; \ fi \ done; \ ___MASTER_SITES_TMP= ; \ SORTED_MASTER_SITES_CMD_TMP="${ECHO_CMD} ${_MASTER_SITE_OVERRIDE} `${ECHO_CMD} $${__MASTER_SITES_TMP} | ${AWK} '${MASTER_SORT_AWK:S|\\|\\\\|g}'` ${_MASTER_SITE_BACKUP}" ; \ else \ SORTED_MASTER_SITES_CMD_TMP="${SORTED_MASTER_SITES_DEFAULT_CMD}" ; \ fi ; \ for site in `eval $$SORTED_MASTER_SITES_CMD_TMP ${_RANDOMIZE_SITES}`; do \ case $${file} in \ */*) args="-o $${file} $${site}$${file}";; \ *) args=$${site}$${file};; \ esac; \ ${ECHO_CMD} $${args} ; \ done; \ fi \ done) .if defined(PATCHFILES) @(cd ${_DISTDIR}; \ ${_PATCH_SITES_ENV} ; \ for _file in ${PATCHFILES}; do \ file=`${ECHO_CMD} $$_file | ${SED} -E -e 's/:[^-:][^:]*$$//'` ; \ if [ $$_file = $$file ]; then \ select=''; \ else \ select=`${ECHO_CMD} $${_file##*:} | ${SED} -e 's/,/ /g'` ; \ fi; \ file=`${ECHO_CMD} $$file | ${SED} -E -e 's/:-[^:]+$$//'` ; \ fileptn=`${ECHO_CMD} $$file | ${SED} 's|/|\\\\/|g;s/\./\\\\./g;s/\+/\\\\+/g;s/\?/\\\\?/g'` ; \ if [ ! -z "${LISTALL}" -o ! -f $$file -a ! -f $${file##*/} ]; then \ if [ ! -z "$$select" ] ; then \ __PATCH_SITES_TMP= ; \ for group in $$select; do \ if [ ! -z \$${_PATCH_SITES_$${group}} ] ; then \ eval ___PATCH_SITES_TMP=\$${_PATCH_SITES_$${group}} ; \ __PATCH_SITES_TMP="$${__PATCH_SITES_TMP} $${___PATCH_SITES_TMP}" ; \ fi \ done; \ ___PATCH_SITES_TMP= ; \ SORTED_PATCH_SITES_CMD_TMP="${ECHO_CMD} ${_MASTER_SITE_OVERRIDE} `${ECHO_CMD} $${__PATCH_SITES_TMP} | ${AWK} '${MASTER_SORT_AWK:S|\\|\\\\|g}'` ${_MASTER_SITE_BACKUP}" ; \ else \ SORTED_PATCH_SITES_CMD_TMP="${SORTED_PATCH_SITES_DEFAULT_CMD}" ; \ fi ; \ for site in `eval $$SORTED_PATCH_SITES_CMD_TMP ${_RANDOMIZE_SITES}`; do \ case $${file} in \ */*) args="-o $${file} $${site}$${file}";; \ *) args=$${site}$${file};; \ esac; \ ${ECHO_CMD} $${args} ; \ done; \ fi \ done) .endif .endif .if !target(fetch-urlall-list) fetch-urlall-list: @cd ${.CURDIR} && LISTALL=yes ${MAKE} fetch-url-list-int .endif .if !target(fetch-url-list) fetch-url-list: fetch-url-list-int .endif # Generates patches. update-patches: @toedit=`PATCH_WRKSRC=${PATCH_WRKSRC} \ PATCHDIR=${PATCHDIR} \ PATCH_LIST=${PATCHDIR}/patch-* \ DIFF_ARGS=${DIFF_ARGS} \ DISTORIG=${DISTORIG} \ ${SH} ${PORTSDIR}/Tools/scripts/update-patches`; \ case $$toedit in "");; \ *) ${ECHO_CMD} -n 'edit patches: '; read i; \ cd ${PATCHDIR} && $${VISUAL:-$${EDIT:-/usr/bin/vi}} $$toedit;; esac # Checksumming utilities check-checksum-algorithms: @ \ ${checksum_init} \ \ for alg in ${CHECKSUM_ALGORITHMS:tu}; do \ eval alg_executable=\$$$$alg; \ if [ -z "$$alg_executable" ]; then \ ${ECHO_MSG} "Checksum algorithm $$alg: Couldn't find the executable."; \ ${ECHO_MSG} "Set $$alg=/path/to/$$alg in /etc/make.conf and try again."; \ exit 1; \ fi; \ done; \ checksum_init=\ SHA256=${SHA256}; .if !target(makesum) makesum: check-checksum-algorithms @cd ${.CURDIR} && ${MAKE} fetch NO_CHECKSUM=yes \ DISABLE_SIZE=yes @if [ -f ${DISTINFO_FILE} ]; then ${CAT} /dev/null > ${DISTINFO_FILE}; fi @( \ cd ${DISTDIR}; \ \ ${checksum_init} \ \ for file in ${_CKSUMFILES}; do \ for alg in ${CHECKSUM_ALGORITHMS:tu}; do \ eval alg_executable=\$$$$alg; \ \ if [ $$alg_executable != "NO" ]; then \ $$alg_executable $$file >> ${DISTINFO_FILE}; \ fi; \ done; \ ${ECHO_CMD} "SIZE ($$file) = `${STAT} -f \"%z\" $$file`" >> ${DISTINFO_FILE}; \ done \ ) .endif .if !target(checksum) checksum: fetch check-checksum-algorithms @set -e ; \ ${checksum_init} \ if [ -f ${DISTINFO_FILE} ]; then \ cd ${DISTDIR}; OK="";\ for file in ${_CKSUMFILES}; do \ ignored="true"; \ _file=$${file#${DIST_SUBDIR}/*}; \ for alg in ${CHECKSUM_ALGORITHMS:tu}; do \ ignore="false"; \ eval alg_executable=\$$$$alg; \ \ if [ $$alg_executable != "NO" ]; then \ MKSUM=`$$alg_executable < $$file`; \ CKSUM=`file=$$_file; ${DISTINFO_DATA}`; \ else \ ignore="true"; \ fi; \ \ if [ $$ignore = "false" -a -z "$$CKSUM" ]; then \ ${ECHO_MSG} "=> No $$alg checksum recorded for $$file."; \ ignore="true"; \ fi; \ \ if [ $$ignore = "false" ]; then \ match="false"; \ for chksum in $$CKSUM; do \ if [ "$$chksum" = "$$MKSUM" ]; then \ match="true"; \ break; \ fi; \ done; \ if [ $$match = "true" ]; then \ ${ECHO_MSG} "=> $$alg Checksum OK for $$file."; \ ignored="false"; \ else \ ${ECHO_MSG} "=> $$alg Checksum mismatch for $$file."; \ refetchlist="$$refetchlist$$file "; \ OK="$${OK:-retry}"; \ [ "$${OK}" = "retry" -a ${FETCH_REGET} -gt 0 ] && ${RM} -f $${file}; \ ignored="false"; \ fi; \ fi; \ done; \ \ if [ $$ignored = "true" ]; then \ ${ECHO_MSG} "=> No suitable checksum found for $$file."; \ OK="${FALSE}"; \ fi; \ \ done; \ \ if [ "$${OK:=true}" = "retry" ] && [ ${FETCH_REGET} -gt 0 ]; then \ ${ECHO_MSG} "===> Refetch for ${FETCH_REGET} more times files: $$refetchlist"; \ if ( cd ${.CURDIR} && \ ${MAKE} ${.MAKEFLAGS} FORCE_FETCH="$$refetchlist" FETCH_REGET="`${EXPR} ${FETCH_REGET} - 1`" fetch); then \ if ( cd ${.CURDIR} && \ ${MAKE} ${.MAKEFLAGS} FETCH_REGET="`${EXPR} ${FETCH_REGET} - 1`" checksum ); then \ OK="true"; \ fi; \ fi; \ fi; \ \ if [ "$$OK" != "true" -a ${FETCH_REGET} -eq 0 ]; then \ ${ECHO_MSG} "===> Giving up on fetching files: $$refetchlist"; \ ${ECHO_MSG} "Make sure the Makefile and distinfo file (${DISTINFO_FILE})"; \ ${ECHO_MSG} "are up to date. If you are absolutely sure you want to override this"; \ ${ECHO_MSG} "check, type \"make NO_CHECKSUM=yes [other args]\"."; \ exit 1; \ fi; \ if [ "$$OK" != "true" ]; then \ exit 1; \ fi; \ elif [ -n "${_CKSUMFILES:M*}" ]; then \ ${ECHO_MSG} "=> No checksum file (${DISTINFO_FILE})."; \ exit 1; \ fi .endif ################################################################ # The special package-building targets # You probably won't need to touch these ################################################################ # Nobody should want to override this unless PKGNAME is simply bogus. .if !target(package-name) package-name: @${ECHO_CMD} ${PKGNAME} .endif # Build a package but don't check the package cookie .if !target(repackage) repackage: pre-repackage package pre-repackage: @${RM} -f ${PACKAGE_COOKIE} .endif # Build a package but don't check the cookie for installation, also don't # install package cookie .if !target(package-noinstall) package-noinstall: package .endif ################################################################ # Dependency checking ################################################################ .if !target(depends) depends: pkg-depends extract-depends patch-depends lib-depends fetch-depends build-depends run-depends .for deptype in PKG EXTRACT PATCH FETCH BUILD LIB RUN TEST ${deptype:tl}-depends: .if defined(${deptype}_DEPENDS) && !defined(NO_DEPENDS) @${SETENV} \ dp_RAWDEPENDS="${${deptype}_DEPENDS}" \ dp_DEPTYPE="${deptype}_DEPENDS" \ dp_DEPENDS_TARGET="${DEPENDS_TARGET}" \ dp_DEPENDS_PRECLEAN="${DEPENDS_PRECLEAN}" \ dp_DEPENDS_CLEAN="${DEPENDS_CLEAN}" \ dp_DEPENDS_ARGS="${DEPENDS_ARGS}" \ dp_USE_PACKAGE_DEPENDS="${USE_PACKAGE_DEPENDS}" \ dp_USE_PACKAGE_DEPENDS_ONLY="${USE_PACKAGE_DEPENDS_ONLY}" \ dp_PKG_ADD="${PKG_ADD}" \ dp_PKG_INFO="${PKG_INFO}" \ dp_WRKDIR="${WRKDIR}" \ dp_PKGNAME="${PKGNAME}" \ dp_STRICT_DEPENDS="${STRICT_DEPENDS}" \ dp_LOCALBASE="${LOCALBASE}" \ dp_LIB_DIRS="${LIB_DIRS}" \ dp_SH="${SH}" \ dp_SCRIPTSDIR="${SCRIPTSDIR}" \ PORTSDIR="${PORTSDIR}" \ dp_MAKE="${MAKE}" \ ${SH} ${SCRIPTSDIR}/do-depends.sh .endif .endfor .endif # Dependency lists: both build and runtime, recursive. Print out directory names. _UNIFIED_DEPENDS=${PKG_DEPENDS} ${EXTRACT_DEPENDS} ${PATCH_DEPENDS} ${FETCH_DEPENDS} ${BUILD_DEPENDS} ${LIB_DEPENDS} ${RUN_DEPENDS} ${TEST_DEPENDS} _DEPEND_SPECIALS= ${_UNIFIED_DEPENDS:M*\:*\:*:C,^[^:]*:([^:]*):.*$,\1,} all-depends-list: @${ALL-DEPENDS-LIST} # This script is shared among several dependency list variables. See file for # usage. DEPENDS-LIST= \ ${SETENV} \ PORTSDIR="${PORTSDIR}" \ dp_MAKE="${MAKE}" \ dp_PKGNAME="${PKGNAME}" \ dp_SCRIPTSDIR="${SCRIPTSDIR}" \ ${SH} ${SCRIPTSDIR}/depends-list.sh ALL-DEPENDS-LIST= ${DEPENDS-LIST} -r ${_UNIFIED_DEPENDS:Q} TEST-DEPENDS-LIST= ${DEPENDS-LIST} ${TEST_DEPENDS:Q} CLEAN-DEPENDS-LIST= ${DEPENDS-LIST} -wr ${_UNIFIED_DEPENDS:Q} CLEAN-DEPENDS-LIMITED-LIST= ${DEPENDS-LIST} -w ${_UNIFIED_DEPENDS:Q} .if !target(clean-depends) clean-depends: @for dir in $$(${CLEAN-DEPENDS-LIST}); do \ (cd $$dir; ${MAKE} NOCLEANDEPENDS=yes clean); \ done .endif .if !target(limited-clean-depends) limited-clean-depends: @for dir in $$(${CLEAN-DEPENDS-LIMITED-LIST}); do \ (cd $$dir; ${MAKE} NOCLEANDEPENDS=yes clean); \ done .endif .if !target(deinstall-depends) deinstall-depends: @for dir in $$(${ALL-DEPENDS-LIST}); do \ (cd $$dir; ${MAKE} deinstall); \ done .endif .if !target(fetch-specials) fetch-specials: @${ECHO_MSG} "===> Fetching all distfiles required by ${PKGNAME} for building" @for dir in ${_DEPEND_SPECIALS}; do \ case $$dir in \ /*) ;; \ *) dir=${PORTSDIR}/$$dir ;; \ esac; \ (cd $$dir; ${MAKE} fetch); \ done .endif .if !target(fetch-recursive) fetch-recursive: @${ECHO_MSG} "===> Fetching all distfiles for ${PKGNAME} and dependencies" @for dir in ${.CURDIR} $$(${ALL-DEPENDS-LIST}); do \ (cd $$dir; ${MAKE} fetch); \ done .endif .if !target(fetch-recursive-list) fetch-recursive-list: @for dir in ${.CURDIR} $$(${ALL-DEPENDS-LIST}); do \ (cd $$dir; ${MAKE} fetch-list); \ done .endif # Used by fetch-required and fetch-required list, this script looks # at each of the dependencies. If 3 items are specified in the tuple, # such as foo:graphics/foo:extract, the first item (foo) # is examined. Only if it begins with a / and does not exist on the # file-system will ``make targ'' proceed. # For more usual (dual-item) dependency tuples, the ``make targ'' # proceeds, if the exact package, which the directory WOULD'VE installed, # is not yet installed. # This is the exact behaviour of the old code, and it may need # revisiting. For example, the entire first case seems dubious, and in # the second case we, probably, should be satisfied with _any_ (earlier) # package, with the same origin as that of the dir. # # -mi FETCH_LIST?= for i in $$deps; do \ prog=$${i%%:*}; dir=$${i\#*:}; \ case $$dir in \ /*) ;; \ *) dir=${PORTSDIR}/$$dir ;; \ esac; \ case $$dir in \ *:*) if [ $$prog != $${prog\#/} -o ! -e $$prog ]; then \ dir=$${dir%%:*}; \ else \ continue; \ fi;; \ *) if [ -d ${PKG_DBDIR}/$$(cd $$dir; ${MAKE} -V PKGNAME) ]; then \ continue; \ fi;; \ esac; \ echo cd $$dir; cd $$dir; ${MAKE} $$targ; \ done .if !target(fetch-required) fetch-required: fetch .if defined(NO_DEPENDS) @${ECHO_MSG} "===> NO_DEPENDS is set, not fetching any other distfiles for ${PKGNAME}" .else @${ECHO_MSG} "===> Fetching all required distfiles for ${PKGNAME} and dependencies" .for deptype in PKG EXTRACT PATCH FETCH BUILD RUN .if defined(${deptype}_DEPENDS) @targ=fetch; deps="${${deptype}_DEPENDS}"; ${FETCH_LIST} .endif .endfor .endif .endif .if !target(fetch-required-list) fetch-required-list: fetch-list .if !defined(NO_DEPENDS) .for deptype in PKG EXTRACT PATCH FETCH BUILD RUN .if defined(${deptype}_DEPENDS) @targ=fetch-list; deps="${${deptype}_DEPENDS}"; ${FETCH_LIST} .endif .endfor .endif .endif .if !target(checksum-recursive) checksum-recursive: @${ECHO_MSG} "===> Fetching and checking checksums for ${PKGNAME} and dependencies" @for dir in ${.CURDIR} $$(${ALL-DEPENDS-LIST}); do \ (cd $$dir; ${MAKE} checksum); \ done .endif # Dependency lists: build and runtime. Print out directory names. build-depends-list: .if defined(PKG_DEPENDS) || defined(EXTRACT_DEPENDS) || defined(PATCH_DEPENDS) || defined(FETCH_DEPENDS) || defined(BUILD_DEPENDS) || defined(LIB_DEPENDS) @${BUILD-DEPENDS-LIST} .endif BUILD-DEPENDS-LIST= \ for dir in $$(${ECHO_CMD} "${PKG_DEPENDS} ${EXTRACT_DEPENDS} ${PATCH_DEPENDS} ${FETCH_DEPENDS} ${BUILD_DEPENDS} ${LIB_DEPENDS}" | ${SED} -E -e 's,([^: ]*):([^: ]*)(:[^ ]*)?,\2,g' -e 'y/ /\n/'| ${SORT} -u); do \ case $$dir in \ /*) pdir=$$dir ;; \ *) pdir=${PORTSDIR}/$$dir ;; \ esac ; \ if [ -d $$pdir ]; then \ ${ECHO_CMD} $$pdir; \ else \ ${ECHO_MSG} "${PKGNAME}: \"$$pdir\" non-existent -- dependency list incomplete" >&2; \ fi; \ done | ${SORT} -u run-depends-list: .if defined(LIB_DEPENDS) || defined(RUN_DEPENDS) @${RUN-DEPENDS-LIST} .endif RUN-DEPENDS-LIST= \ for dir in $$(${ECHO_CMD} "${_LIB_RUN_DEPENDS:C,.*:([^:]*).*,\1,}" | ${SED} -e 'y/ /\n/' | ${SORT} -u); do \ case $$dir in \ /*) pdir=$$dir ;; \ *) pdir=${PORTSDIR}/$$dir ;; \ esac ; \ if [ -d $$pdir ]; then \ ${ECHO_CMD} $$pdir; \ else \ ${ECHO_MSG} "${PKGNAME}: \"$$pdir\" non-existent -- dependency list incomplete" >&2; \ fi; \ done | ${SORT} -u test-depends-list: .if defined(TEST_DEPENDS) @${TEST-DEPENDS-LIST} .endif # Package (recursive runtime) dependency list. Print out both directory names # and package names. package-depends-list: .if defined(CHILD_DEPENDS) || defined(LIB_DEPENDS) || defined(RUN_DEPENDS) @${PACKAGE-DEPENDS-LIST} .endif _LIB_RUN_DEPENDS= ${LIB_DEPENDS} ${RUN_DEPENDS} PACKAGE-DEPENDS-LIST?= \ if [ "${CHILD_DEPENDS}" ]; then \ installed=$$(${PKG_INFO} -qO ${PKGORIGIN} 2>/dev/null || \ ${TRUE}); \ if [ "$$installed" ]; then \ break; \ fi; \ if [ -z "$$installed" ]; then \ installed="${PKGNAME}"; \ fi; \ for pkgname in $$installed; do \ ${ECHO_CMD} "$$pkgname ${.CURDIR} ${PKGORIGIN}"; \ done; \ fi; \ checked="${PARENT_CHECKED}"; \ for dir in ${_LIB_RUN_DEPENDS:C,[^:]*:([^:]*):?.*,\1,}; do \ case "$$dir" in \ /*) ;; \ *) dir=${PORTSDIR}/$$dir ;; \ esac ; \ dir=$$(${REALPATH} $$dir); \ if [ -d $$dir ]; then \ case $$checked in \ $$dir|$$dir\ *|*\ $$dir|*\ $$dir\ *) continue;; \ esac; \ childout=$$(cd $$dir; ${MAKE} CHILD_DEPENDS=yes PARENT_CHECKED="$$checked" package-depends-list); \ set -- $$childout; \ childdir=""; \ while [ $$\# != 0 ]; do \ childdir="$$childdir $$2"; \ ${ECHO_CMD} "$$1 $$2 $$3"; \ shift 3; \ done; \ checked="$$dir $$childdir $$checked"; \ else \ ${ECHO_MSG} "${PKGNAME}: \"$$dir\" non-existent -- dependency list incomplete" >&2; \ fi; \ done ACTUAL-PACKAGE-DEPENDS?= \ depfiles="" ; \ for lib in ${LIB_DEPENDS:C/\:.*//}; do \ depfiles="$$depfiles `${SETENV} LIB_DIRS="${LIB_DIRS}" LOCALBASE="${LOCALBASE}" ${SH} ${SCRIPTSDIR}/find-lib.sh $${lib}`" ; \ done ; \ ${SETENV} PKG_BIN="${PKG_BIN}" ${SH} ${SCRIPTSDIR}/actual-package-depends.sh $${depfiles} ${RUN_DEPENDS:C/(.*)\:.*/"\1"/} create-manifest: @${MKDIR} ${METADIR}; \ (\ echo "name: \"${PKGBASE}\"" ; \ echo "version: \"${PKGVERSION}\"" ; \ echo "origin: ${PKGORIGIN}" ; \ echo "comment: < ${MANIFESTF} @${ECHO_CMD} -n "options: {" >> ${MANIFESTF} .for opt in ${COMPLETE_OPTIONS_LIST} @[ -z "${PORT_OPTIONS:M${opt}}" ] || match="on" ; ${ECHO_MSG} -n " ${opt}: $${match:-off}," >> ${MANIFESTF} .endfor @${ECHO_CMD} "}" >> ${MANIFESTF} .if defined(PKG_NOTES) @${ECHO_CMD} -n "annotations: {" >> ${MANIFESTF} .for note in ${PKG_NOTES} @${ECHO_CMD} -n ' ${note}: "${PKG_NOTE_${note}:S/"/\"/g}",' >> ${MANIFESTF} .endfor @${ECHO_CMD} " }" >> ${MANIFESTF} .endif @[ -f ${PKGINSTALL} ] && ${CP} ${PKGINSTALL} ${METADIR}/+INSTALL; \ ${RM} -f ${METADIR}/+PRE_INSTALL ; \ for a in ${PKGPREINSTALL}; do \ [ -f $$a ] && ${CAT} $$a >> ${METADIR}/+PRE_INSTALL ; \ done ; \ ${RM} -f ${METADIR}/+POST_INSTALL ; \ for a in ${PKGPOSTINSTALL}; do \ [ -f $$a ] && ${CAT} $$a >> ${METADIR}/+POST_INSTALL ; \ done ; \ [ -f ${PKGDEINSTALL} ] && ${CP} ${PKGDEINSTALL} ${METADIR}/+DEINSTALL; \ ${RM} -f ${METADIR}/+PRE_DEINSTALL ; \ for a in ${PKGPREDEINSTALL}; do \ [ -f $$a ] && ${CAT} $$a >> ${METADIR}/+PRE_DEINSTALL ; \ done ; \ ${RM} -f ${METADIR}/+POST_DEINSTALL ; \ for a in ${PKGPOSTDEINSTALL}; do \ [ -f $$a ] && ${CAT} $$a >> ${METADIR}/+POST_DEINSTALL ; \ done ; \ [ -f ${PKGPOSTDEINSTALL} ] && ${CP} ${PKGPOSTDEINSTALL} ${METADIR}/+POST_DEINSTALL; \ [ -f ${PKGUPGRADE} ] && ${CP} ${PKGUPGRADE} ${METADIR}/+UPGRADE; \ [ -f ${PKGPREUPGRADE} ] && ${CP} ${PKGPREUPGRADE} ${METADIR}/+PRE_UPGRADE; \ [ -f ${PKGPOSTUPGRADE} ] && ${CP} ${PKGPOSTUPGRADE} ${METADIR}/+POST_UPGRADE; \ ${CP} ${DESCR} ${METADIR}/+DESC; \ [ -f ${PKGMESSAGE} ] && ${CP} ${PKGMESSAGE} ${METADIR}/+DISPLAY || return 0 # Print out package names. package-depends: @${PACKAGE-DEPENDS-LIST} | ${AWK} '{print $$1":"$$3}' actual-package-depends: @${ACTUAL-PACKAGE-DEPENDS} # Build packages for port and dependencies package-recursive: package @for dir in $$(${ALL-DEPENDS-LIST}); do \ (cd $$dir; ${MAKE} package-noinstall); \ done # Show missing dependencies missing: @_origins=$$(${PKG_INFO} -aoq); \ for dir in $$(${ALL-DEPENDS-LIST}); do \ _origin=$${dir##${PORTSDIR}/}; \ if ! $$(${ECHO_CMD} $${_origins} | ${GREP} -q $${_origin}); then \ ${ECHO_CMD} $${_origin}; \ fi; \ done # Show missing dependencies by name missing-packages: @_packages=$$(${PKG_INFO} -aq); \ for dir in $$(${ALL-DEPENDS-LIST}); do \ _p=$$(cd $$dir; ${MAKE} -VPKGNAME); \ if ! $$(${ECHO_CMD} $${_packages} | ${GREP} -q $${_p}); then \ ${ECHO_CMD} $${_p}; \ fi; \ done ################################################################ # Everything after here are internal targets and really # shouldn't be touched by anybody but the release engineers. ################################################################ # This target generates an index entry suitable for aggregation into # a large index. Format is: # # distribution-name|port-path|installation-prefix|comment| \ # description-file|maintainer|categories|extract-depends| \ # patch-depends|fetch-depends|build-depends|run-depends|www site # # If this ever changes, portmgr should contact the portsnap maintainer # first to avoid gratuitous breakage. . if !target(describe) _EXTRACT_DEPENDS=${EXTRACT_DEPENDS:C/^[^ :]+:([^ :]+)(:[^ :]+)?/\1/:O:u:C,(^[^/]),${PORTSDIR}/\1,} _PATCH_DEPENDS=${PATCH_DEPENDS:C/^[^ :]+:([^ :]+)(:[^ :]+)?/\1/:O:u:C,(^[^/]),${PORTSDIR}/\1,} _FETCH_DEPENDS=${FETCH_DEPENDS:C/^[^ :]+:([^ :]+)(:[^ :]+)?/\1/:O:u:C,(^[^/]),${PORTSDIR}/\1,} _LIB_DEPENDS=${LIB_DEPENDS:C/^[^ :]+:([^ :]+)(:[^ :]+)?/\1/:O:u:C,(^[^/]),${PORTSDIR}/\1,} _BUILD_DEPENDS=${BUILD_DEPENDS:C/^[^ :]+:([^ :]+)(:[^ :]+)?/\1/:O:u:C,(^[^/]),${PORTSDIR}/\1,} ${_LIB_DEPENDS} _RUN_DEPENDS=${RUN_DEPENDS:C/^[^ :]+:([^ :]+)(:[^ :]+)?/\1/:O:u:C,(^[^/]),${PORTSDIR}/\1,} ${_LIB_DEPENDS} . if exists(${DESCR}) _DESCR=${DESCR} . else _DESCR=/dev/null . endif . if defined(BUILDING_INDEX) && defined(INDEX_PORTS) INDEX_OUT=${INDEX_TMPDIR}/${INDEXFILE}.desc.aggr . else INDEX_OUT=/dev/stdout . endif describe: @(${ECHO_CMD} -n "${PKGNAME}|${.CURDIR}|${PREFIX}|"; \ ${ECHO_CMD} -n ${COMMENT:Q}; \ ${ECHO_CMD} -n "|${_DESCR}|${MAINTAINER}|${CATEGORIES}|${_EXTRACT_DEPENDS}|${_PATCH_DEPENDS}|${_FETCH_DEPENDS}|${_BUILD_DEPENDS:O:u}|${_RUN_DEPENDS:O:u}|"; \ while read one two discard; do \ case "$$one" in \ WWW:) case "$$two" in \ https://*|http://*|ftp://*) ${ECHO_CMD} -n "$$two" ;; \ *) ${ECHO_CMD} -n "http://$$two" ;; \ esac; \ break; \ ;; \ esac; \ done < ${DESCR}; ${ECHO_CMD}) >>${INDEX_OUT} . endif www-site: .if exists(${DESCR}) @${AWK} '$$1 ~ /^WWW:/ {print $$2}' ${DESCR} | ${HEAD} -1 .else @${ECHO_CMD} .endif .if !target(readmes) readmes: readme .endif .if !target(readme) readme: @${RM} -f ${.CURDIR}/README.html @cd ${.CURDIR} && ${MAKE} ${.CURDIR}/README.html .endif ${.CURDIR}/README.html: @${ECHO_MSG} "===> Creating README.html for ${PKGNAME}" @${SED} -e 's|%%PORT%%|'$$(${ECHO_CMD} ${.CURDIR} | \ ${SED} -e 's|.*/\([^/]*/[^/]*\)$$|\1|')'|g' \ -e 's|%%PKG%%|${PKGNAME}|g' \ -e 's|%%COMMENT%%|'"$$(${ECHO_CMD} ${COMMENT:Q})"'|' \ -e '/%%COMMENT%%/d' \ -e 's|%%DESCR%%|'"$$(${ECHO_CMD} ${DESCR} | \ ${SED} -e 's|${.CURDIR}/||')"'|' \ -e 's|%%EMAIL%%|'"$$(${ECHO_CMD} "${MAINTAINER}" | \ ${SED} -e 's/([^)]*)//;s/.*.*//')"'|g' \ -e 's|%%MAINTAINER%%|${MAINTAINER}|g' \ -e 's|%%WEBSITE%%|'"$$(cd ${.CURDIR} && eval ${MAKE} pretty-print-www-site)"'|' \ -e 's|%%BUILD_DEPENDS%%|'"$$(cd ${.CURDIR} && eval ${MAKE} pretty-print-build-depends-list)"'|' \ -e 's|%%RUN_DEPENDS%%|'"$$(cd ${.CURDIR} && eval ${MAKE} pretty-print-run-depends-list)"'|' \ -e 's|%%TOP%%|'"$$(${ECHO_CMD} ${CATEGORIES} | \ ${SED} -e 's| .*||' -e 's|[^/]*|..|g')"'/..|' \ ${TEMPLATES}/README.port >> ${.TARGET} # The following two targets require an up-to-date INDEX in ${PORTSDIR} _PRETTY_PRINT_DEPENDS_LIST=\ if [ ! -r ${INDEXDIR}/${INDEXFILE} ] ; then \ ${ECHO_MSG} "${.TARGET} requires an INDEX file (${INDEXFILE}). Please run make index or make fetchindex."; \ else \ target=${.TARGET:C/pretty-print-(.*)-depends-list/\1/} ; \ if [ "$$target" = "build" ] ; then fldnum=8 ; else fldnum=9 ; fi; \ ${ECHO_MSG} -n 'This port requires package(s) "' ; \ ${ECHO_MSG} -n `${AWK} -F\| "\\$$1 ~ /^${PKGNAME}/ {print \\$$$${fldnum};}" ${INDEXDIR}/${INDEXFILE}` ; \ ${ECHO_MSG} "\" to $$target."; \ fi; .if !target(pretty-print-build-depends-list) pretty-print-build-depends-list: .if defined(PKG_DEPENDS) || defined(EXTRACT_DEPENDS) || defined(PATCH_DEPENDS) || \ defined(FETCH_DEPENDS) || defined(BUILD_DEPENDS) || defined(LIB_DEPENDS) @${_PRETTY_PRINT_DEPENDS_LIST} .endif .endif .if !target(pretty-print-run-depends-list) pretty-print-run-depends-list: .if defined(RUN_DEPENDS) || defined(LIB_DEPENDS) @${_PRETTY_PRINT_DEPENDS_LIST} .endif .endif _SUB_LIST_TEMP= ${SUB_LIST:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} .if !target(apply-slist) apply-slist: .if defined(SUB_FILES) .for file in ${SUB_FILES} .if !exists(${FILESDIR}/${file}.in) @${ECHO_MSG} "** Missing ${FILESDIR}/${file}.in for ${PKGNAME}."; exit 1 .else @${SED} ${_SUB_LIST_TEMP} -e '/^@comment /d' ${FILESDIR}/${file}.in > ${WRKDIR}/${file} .endif .endfor .for i in pkg-message pkg-install pkg-deinstall pkg-req .if ${SUB_FILES:M${i}*}!="" ${i:S/-//:tu}= ${WRKDIR}/${SUB_FILES:M${i}*} .endif .endfor .endif .endif # Generate packing list. Also tests to make sure all required package # files exist. .if !target(generate-plist) generate-plist: ${WRKDIR} @${ECHO_MSG} "===> Generating temporary packing list" @${MKDIR} ${TMPPLIST:H} @if [ ! -f ${DESCR} ]; then ${ECHO_MSG} "** Missing pkg-descr for ${PKGNAME}."; exit 1; fi @>${TMPPLIST} @for file in ${PLIST_FILES}; do \ ${ECHO_CMD} $${file} | ${SED} ${PLIST_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} >> ${TMPPLIST}; \ done @if [ -f ${PLIST} ]; then \ ${SED} ${PLIST_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} ${PLIST} >> ${TMPPLIST}; \ fi # Keep PLIST_DIRSTRY as compatibility .for dir in ${PLIST_DIRS} ${PLIST_DIRSTRY} @${ECHO_CMD} ${dir} | ${SED} ${PLIST_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} -e 's,^,@dir ,' >> ${TMPPLIST} .endfor .if defined(USE_LINUX_PREFIX) .if defined(USE_LDCONFIG) @${ECHO_CMD} "@postexec ${LDCONFIG_CMD}" >> ${TMPPLIST} @${ECHO_CMD} "@postunexec ${LDCONFIG_CMD}" >> ${TMPPLIST} .endif .else .if defined(USE_LDCONFIG) .if !defined(INSTALL_AS_USER) @${ECHO_CMD} "@postexec ${LDCONFIG} -m ${USE_LDCONFIG}" >> ${TMPPLIST} @${ECHO_CMD} "@postunexec ${LDCONFIG} -R" >> ${TMPPLIST} .else @${ECHO_CMD} "@postexec ${LDCONFIG} -m ${USE_LDCONFIG} || ${TRUE}" >> ${TMPPLIST} @${ECHO_CMD} "@postunexec ${LDCONFIG} -R || ${TRUE}" >> ${TMPPLIST} .endif .endif .if defined(USE_LDCONFIG32) .if !defined(INSTALL_AS_USER) @${ECHO_CMD} "@postexec ${LDCONFIG} -32 -m ${USE_LDCONFIG32}" >> ${TMPPLIST} @${ECHO_CMD} "@postunexec ${LDCONFIG} -32 -R" >> ${TMPPLIST} .else @${ECHO_CMD} "@postexec ${LDCONFIG} -32 -m ${USE_LDCONFIG32} || ${TRUE}" >> ${TMPPLIST} @${ECHO_CMD} "@postunexec ${LDCONFIG} -32 -R || ${TRUE}" >> ${TMPPLIST} .endif .endif .endif .endif ${TMPPLIST}: @cd ${.CURDIR} && ${MAKE} generate-plist ${TMPPLIST_SORT}: ${TMPPLIST} @${SORT} -u ${TMPPLIST} >${TMPPLIST_SORT} .for _type in EXAMPLES DOCS .if !target(add-plist-${_type:tl}) .if defined(PORT${_type}) && !defined(NOPORT${_type}) add-plist-${_type:tl}: .for x in ${PORT${_type}} @if ${ECHO_CMD} "${x}"| ${AWK} '$$1 ~ /(\*|\||\[|\]|\?|\{|\}|\$$)/ { exit 1};'; then \ if [ ! -e ${STAGEDIR}${${_type}DIR}/${x} ]; then \ ${ECHO_CMD} ${${_type}DIR}/${x} >> ${TMPPLIST}; \ fi;fi .endfor @${FIND} -P ${PORT${_type}:S/^/${STAGEDIR}${${_type}DIR}\//} ! -type d 2>/dev/null | \ ${SED} -ne 's,^${STAGEDIR},,p' >> ${TMPPLIST} .endif .endif .endfor .if !target(add-plist-data) .if defined(PORTDATA) add-plist-data: .for x in ${PORTDATA} @if ${ECHO_CMD} "${x}"| ${AWK} '$$1 ~ /(\*|\||\[|\]|\?|\{|\}|\$$)/ { exit 1};'; then \ if [ ! -e ${STAGEDIR}${DATADIR}/${x} ]; then \ ${ECHO_CMD} ${DATADIR}/${x} >> ${TMPPLIST}; \ fi;fi .endfor @${FIND} -P ${PORTDATA:S/^/${STAGEDIR}${DATADIR}\//} ! -type d 2>/dev/null | \ ${SED} -ne 's,^${STAGEDIR},,p' >> ${TMPPLIST} .endif .endif .if !target(add-plist-info) .if defined(INFO) add-plist-info: .for i in ${INFO} @${LS} ${STAGEDIR}${PREFIX}/${INFO_PATH}/$i.info* | ${SED} -e s:${STAGEDIR}:@info\ :g >> ${TMPPLIST} .endfor .endif .endif # If we're installing into a non-standard PREFIX, we need to remove that directory at # deinstall-time .if !target(add-plist-post) .if (${PREFIX} != ${LOCALBASE} && ${PREFIX} != ${LINUXBASE} && \ ${PREFIX} != "/usr" && !defined(NO_PREFIX_RMDIR)) add-plist-post: @${ECHO_CMD} "@dir ${PREFIX}" >> ${TMPPLIST} .endif .endif .if !target(install-rc-script) .if defined(USE_RC_SUBR) && ${USE_RC_SUBR:tu} != "YES" install-rc-script: @${ECHO_MSG} "===> Staging rc.d startup script(s)" @for i in ${USE_RC_SUBR}; do \ _prefix=${PREFIX}; \ [ "${PREFIX}" = "/usr" ] && _prefix="" ; \ ${INSTALL_SCRIPT} ${WRKDIR}/$${i} ${STAGEDIR}$${_prefix}/etc/rc.d/$${i%.sh}; \ ${ECHO_CMD} "$${_prefix}/etc/rc.d/$${i%.sh}" >> ${TMPPLIST}; \ done .endif .endif .if !target(check-man) check-man: stage @${ECHO_MSG} "====> Checking man pages (check-man)" @mdirs= ; \ for dir in ${MANDIRS:S/^/${STAGEDIR}/} ; do \ [ -d $$dir ] && mdirs="$$mdirs $$dir" ;\ done ; \ err=0 ; \ for dir in $$mdirs; do \ for f in $$(find $$dir -name "*.gz"); do \ ${ECHO_CMD} "===> Checking $${f##*/}" ; \ gunzip -c $$f | mandoc -Tlint -Werror && continue ; \ err=1 ; \ done ; \ done ; \ exit $$err .endif # Compress all manpage not already compressed which are not hardlinks # Find all manpages which are not compressed and are hadlinks, and only get the list of inodes concerned, for each of them compress the first one found and recreate the hardlinks for the others # Fixes all dead symlinks left by the previous round .if !target(compress-man) compress-man: @${ECHO_MSG} "====> Compressing man pages (compress-man)" @mdirs= ; \ for dir in ${MANDIRS:S/^/${STAGEDIR}/} ; do \ [ -d $$dir ] && mdirs="$$mdirs $$dir" ;\ done ; \ for dir in $$mdirs; do \ ${FIND} $$dir -type f \! -name "*.gz" -links 1 -exec ${GZIP_CMD} {} \; ; \ ${FIND} $$dir -type f \! -name "*.gz" \! -links 1 -exec ${STAT} -f '%i' {} \; | \ ${SORT} -u | while read inode ; do \ unset ref ; \ for f in $$(${FIND} $$dir -type f -inum $${inode} -print); do \ if [ -z $$ref ]; then \ ref=$${f}.gz ; \ ${GZIP_CMD} $${f} ; \ continue ; \ fi ; \ ${RM} -f $${f} ; \ (cd $${f%/*}; ${LN} -f $${ref##*/} $${f##*/}.gz) ; \ done ; \ done ; \ ${FIND} $$dir -type l \! -name "*.gz" | while read link ; do \ ${LN} -sf $$(readlink $$link).gz $$link.gz ;\ ${RM} -f $$link ; \ done; \ done .endif .if !target(stage-dir) stage-dir: @${MKDIR} ${STAGEDIR}${PREFIX} .if !defined(NO_MTREE) @${MTREE_CMD} ${MTREE_ARGS} ${STAGEDIR}${PREFIX} > /dev/null .endif .endif .if !target(makeplist) makeplist: stage @${SETENV} ${CO_ENV} ${SH} ${SCRIPTSDIR}/check-stagedir.sh makeplist .endif .if !target(check-plist) check-plist: stage @${ECHO_MSG} "====> Checking for pkg-plist issues (check-plist)" @${SETENV} ${CO_ENV} ${SH} ${SCRIPTSDIR}/check-stagedir.sh checkplist @${ECHO_MSG} "===> No pkg-plist issues found (check-plist)" .endif .if !target(check-orphans) check-orphans: check-plist .endif .if !target(stage-qa) stage-qa: @${ECHO_MSG} "====> Running Q/A tests (stage-qa)" @${SETENV} ${QA_ENV} ${SH} ${SCRIPTSDIR}/qa.sh .if !defined(DEVELOPER) @${ECHO_MSG} "/!\\ To run stage-qa automatically add DEVELOPER=yes to your environment /!\\" .endif .endif # Fake installation of package so that user can pkg delete it later. .if !target(fake-pkg) STAGE_ARGS= -i ${STAGEDIR} .if !defined(NO_PKG_REGISTER) fake-pkg: create-manifest .if defined(INSTALLS_DEPENDS) @${ECHO_MSG} "===> Registering installation for ${PKGNAME} as automatic" .else @${ECHO_MSG} "===> Registering installation for ${PKGNAME}" .endif .if defined(INSTALLS_DEPENDS) @${SETENV} ${PKG_ENV} FORCE_POST="${_FORCE_POST_PATTERNS}" ${PKG_CMD} -d ${STAGE_ARGS} -m ${METADIR} -f ${TMPPLIST} .else @${SETENV} ${PKG_ENV} FORCE_POST="${_FORCE_POST_PATTERNS}" ${PKG_CMD} ${STAGE_ARGS} -m ${METADIR} -f ${TMPPLIST} .endif @${RM} -rf ${METADIR} .endif .endif # Depend is generally meaningless for arbitrary ports, but if someone wants # one they can override this. This is just to catch people who've gotten into # the habit of typing `make depend all install' as a matter of course. # Same goes for tags .for _t in depend tags .if !target(${_t}) ${_t}: .endif .endfor .if !defined(NOPRECIOUSMAKEVARS) # These won't change, so we can pass them through the environment .for var in ${_EXPORTED_VARS} .if empty(.MAKEFLAGS:M${var}=*) && !empty(${var}) .MAKEFLAGS: ${var}=${${var}:Q} .endif .endfor .endif .if !target(pre-check-config) pre-check-config: .for single in ${OPTIONS_SINGLE} . for opt in ${OPTIONS_SINGLE_${single}} . if empty(ALL_OPTIONS:M${single}) || !empty(PORT_OPTIONS:M${single}) . if !empty(PORT_OPTIONS:M${opt}) . if defined(OPTFOUND) OPTIONS_WRONG_SINGLE+= ${single} . else OPTFOUND= true . endif . endif . else # if conditional and if the condition is unchecked, remove opt from the list of # set options PORT_OPTIONS:= ${PORT_OPTIONS:N${opt}} OPTNOCHECK= true . endif . endfor . if !defined(OPTFOUND) && !defined(OPTNOCHECK) OPTIONS_WRONG_SINGLE+= ${single} . endif . undef OPTFOUND . undef OPTNOCHECK .endfor .undef single .for radio in ${OPTIONS_RADIO} . for opt in ${OPTIONS_RADIO_${radio}} . if !empty(PORT_OPTIONS:M${opt}) . if defined(OPTFOUND) OPTIONS_WRONG_RADIO+= ${radio} . else OPTFOUND= true . endif . endif . endfor . undef OPTFOUND .endfor .for multi in ${OPTIONS_MULTI} . for opt in ${OPTIONS_MULTI_${multi}} . if empty(ALL_OPTIONS:M${multi}) || !empty(PORT_OPTIONS:M${multi}) . if !empty(PORT_OPTIONS:M${opt}) OPTFOUND= true . endif . else # if conditional and if the condition is unchecked, remove opt from the list of # set options PORT_OPTIONS:= ${PORT_OPTIONS:N${opt}} OPTNOCHECK= true . endif . endfor . if !defined(OPTFOUND) && !defined(OPTNOCHECK) OPTIONS_WRONG_MULTI+= ${multi} . endif . undef OPTFOUND . undef OPTNOCHECK .endfor .undef multi .for opt in ${PORT_OPTIONS} . for conflict in ${${opt}_PREVENTS} . if ${PORT_OPTIONS:M${conflict}} . if empty(OPTIONS_WRONG_PREVENTS:M${opt}) OPTIONS_WRONG_PREVENTS+= ${opt} . endif OPTIONS_WRONG_PREVENTS_${opt}+= ${conflict} . endif . endfor .endfor .undef conflict .undef opt .endif #pre-check-config .if !target(_check-config) _check-config: pre-check-config .for multi in ${OPTIONS_WRONG_MULTI} @${ECHO_MSG} "====> You must check at least one option in the ${multi} multi" .endfor .for single in ${OPTIONS_WRONG_SINGLE} @${ECHO_MSG} "====> You must select one and only one option from the ${single} single" .endfor .for radio in ${OPTIONS_WRONG_RADIO} @${ECHO_MSG} "====> You cannot select multiple options from the ${radio} radio" .endfor .if defined(OPTIONS_WRONG_PREVENTS) @${ECHO_MSG} "====> Two or more enabled options conflict with each other" . for prevents in ${OPTIONS_WRONG_PREVENTS} @${ECHO_MSG} "=====> Option ${prevents} conflicts with ${OPTIONS_WRONG_PREVENTS_${prevents}} (select only one)" . if defined(${prevents}_PREVENTS_MSG) @${ECHO_MSG} "======> ${${prevents}_PREVENTS_MSG}" . endif . endfor .endif .if !empty(OPTIONS_WRONG_MULTI) || !empty(OPTIONS_WRONG_SINGLE) || !empty(OPTIONS_WRONG_RADIO) || !empty(OPTIONS_WRONG_PREVENTS) _CHECK_CONFIG_ERROR= true .endif .endif # _check-config .if !target(check-config) check-config: _check-config .if !empty(_CHECK_CONFIG_ERROR) @${FALSE} .endif .endif # check-config .if !target(sanity-config) sanity-config: _check-config .if !empty(_CHECK_CONFIG_ERROR) @echo -n "Config is invalid. Re-edit? [Y/n] "; \ read answer; \ case $$answer in \ [Nn]|[Nn][Oo]) \ exit 0; \ esac; \ cd ${.CURDIR} && ${MAKE} config .endif .endif # sanity-config .if !target(pre-config) pre-config: D4P_ENV= PKGNAME="${PKGNAME}" \ PORT_OPTIONS="${PORT_OPTIONS}" \ ALL_OPTIONS="${ALL_OPTIONS}" \ OPTIONS_MULTI="${OPTIONS_MULTI}" \ OPTIONS_SINGLE="${OPTIONS_SINGLE}" \ OPTIONS_RADIO="${OPTIONS_RADIO}" \ OPTIONS_GROUP="${OPTIONS_GROUP}" \ NEW_OPTIONS="${NEW_OPTIONS}" \ DIALOG4PORTS="${DIALOG4PORTS}" \ PREFIX="${PREFIX}" \ LOCALBASE="${LOCALBASE}" \ PORTSDIR="${PORTSDIR}" \ MAKE="${MAKE}" \ D4PHEIGHT="${D4PHEIGHT}" \ D4PWIDTH="${D4PWIDTH}" \ D4PFULLSCREEN="${D4PFULLSCREEN}" .if exists(${PKGHELP}) D4P_ENV+= PKGHELP="${PKGHELP}" .endif .for opt in ${ALL_OPTIONS} D4P_ENV+= ${opt}_DESC=""${${opt}_DESC:Q}"" .endfor .for otype in MULTI GROUP SINGLE RADIO . for m in ${OPTIONS_${otype}} D4P_ENV+= OPTIONS_${otype}_${m}="${OPTIONS_${otype}_${m}}" \ ${m}_DESC=""${${m}_DESC:Q}"" . for opt in ${OPTIONS_${otype}_${m}} D4P_ENV+= ${opt}_DESC=""${${opt}_DESC:Q}"" . endfor . endfor .endfor .undef m .undef otype .undef opt .endif # pre-config .if !target(do-config) do-config: .if empty(ALL_OPTIONS) && empty(OPTIONS_SINGLE) && empty(OPTIONS_MULTI) && empty(OPTIONS_RADIO) && empty(OPTIONS_GROUP) @${ECHO_MSG} "===> No options to configure" .else @optionsdir=${OPTIONS_FILE:H}; \ if [ ${UID} != 0 -a -z "${INSTALL_AS_USER}" -a ! -w "${PORT_DBDIR}" ] ; then \ ${ECHO_MSG} "===> Switching to root credentials to create $${optionsdir}"; \ (${SU_CMD} "${SH} -c \"${MKDIR} $${optionsdir} 2> /dev/null\"") || \ (${ECHO_MSG} "===> Cannot create $${optionsdir}, check permissions"; exit 1); \ ${ECHO_MSG} "===> Returning to user credentials" ; \ else \ ${MKDIR} $${optionsdir} 2> /dev/null || \ (${ECHO_MSG} "===> Cannot create $${optionsdir}, check permissions"; exit 1) ; \ fi @TMPOPTIONSFILE=$$(mktemp -t portoptions); \ trap "${RM} -f $${TMPOPTIONSFILE}; exit 1" 1 2 3 5 10 13 15; \ ${SETENV} ${D4P_ENV} ${SH} ${SCRIPTSDIR}/dialog4ports.sh $${TMPOPTIONSFILE} || { \ ${RM} -f $${TMPOPTIONSFILE}; \ ${ECHO_MSG} "===> Options unchanged"; \ exit 0; \ }; \ ${ECHO_CMD}; \ if [ ! -e $${TMPOPTIONSFILE} ]; then \ ${ECHO_MSG} "===> No user-specified options to save for ${PKGNAME}"; \ exit 0; \ fi; \ SELOPTIONS=$$(${CAT} $${TMPOPTIONSFILE}); \ ${RM} -f $${TMPOPTIONSFILE}; \ TMPOPTIONSFILE=$$(mktemp -t portoptions); \ trap "${RM} -f $${TMPOPTIONSFILE}; exit 1" 1 2 3 5 10 13 15; \ ${ECHO_CMD} "# This file is auto-generated by 'make config'." > $${TMPOPTIONSFILE}; \ ${ECHO_CMD} "# Options for ${PKGNAME}" >> $${TMPOPTIONSFILE}; \ ${ECHO_CMD} "_OPTIONS_READ=${PKGNAME}" >> $${TMPOPTIONSFILE}; \ ${ECHO_CMD} "_FILE_COMPLETE_OPTIONS_LIST=${COMPLETE_OPTIONS_LIST}" >> $${TMPOPTIONSFILE}; \ for i in ${COMPLETE_OPTIONS_LIST}; do \ if ${ECHO_CMD} $${SELOPTIONS} | ${GREP} -qw $${i}; then \ ${ECHO_CMD} "OPTIONS_FILE_SET+=$${i}" >> $${TMPOPTIONSFILE}; \ else \ ${ECHO_CMD} "OPTIONS_FILE_UNSET+=$${i}" >> $${TMPOPTIONSFILE}; \ fi; \ done; \ if [ ${UID} != 0 -a -z "${INSTALL_AS_USER}" -a ! -w "${OPTIONS_FILE:H}" ]; then \ ${ECHO_MSG} "===> Switching to root credentials to write ${OPTIONS_FILE}"; \ ${SU_CMD} "${CAT} $${TMPOPTIONSFILE} > ${OPTIONS_FILE}"; \ ${ECHO_MSG} "===> Returning to user credentials"; \ else \ ${CAT} $${TMPOPTIONSFILE} > ${OPTIONS_FILE}; \ fi; \ ${RM} -f $${TMPOPTIONSFILE} @cd ${.CURDIR} && ${MAKE} sanity-config .endif .endif # do-config .if !target(config) .if !defined(NO_DIALOG) config: pre-config do-config .else config: @${ECHO_MSG} "===> Skipping 'config' as NO_DIALOG is defined" .endif .endif # config .if !target(config-recursive) config-recursive: @${ECHO_MSG} "===> Setting user-specified options for ${PKGNAME} and dependencies"; @for dir in ${.CURDIR} $$(${ALL-DEPENDS-LIST}); do \ (cd $$dir; ${MAKE} config-conditional); \ done .endif # config-recursive .if !target(config-conditional) config-conditional: .if !empty(NEW_OPTIONS) @cd ${.CURDIR} && ${MAKE} config; .endif .endif # config-conditional .if !target(showconfig) && (make(*config*) || (!empty(.MAKEFLAGS:M-V) && !empty(.MAKEFLAGS:M*_DESC))) .include "${PORTSDIR}/Mk/bsd.options.desc.mk" MULTI_EOL= : you have to choose at least one of them SINGLE_EOL= : you have to select exactly one of them RADIO_EOL= : you can only select none or one of them showconfig: check-config .if !empty(COMPLETE_OPTIONS_LIST) @${ECHO_MSG} "===> The following configuration options are available for ${PKGNAME}": .for opt in ${ALL_OPTIONS} @[ -z "${PORT_OPTIONS:M${opt}}" ] || match="on" ; ${ECHO_MSG} -n " ${opt}=$${match:-off}" . if !empty(${opt}_DESC) @${ECHO_MSG} -n ": "${${opt}_DESC:Q} . endif @${ECHO_MSG} "" .endfor #multi and conditional multis .for otype in MULTI GROUP SINGLE RADIO . for m in ${OPTIONS_${otype}} . if empty(${m}_DESC) @${ECHO_MSG} "====> Options available for the ${otype:tl} ${m}${${otype}_EOL}" . else @${ECHO_MSG} "====> ${${m}_DESC}${${otype}_EOL}" . endif . for opt in ${OPTIONS_${otype}_${m}} @[ -z "${PORT_OPTIONS:M${opt}}" ] || match="on" ; ${ECHO_MSG} -n " ${opt}=$${match:-off}" . if !empty(${opt}_DESC) @${ECHO_MSG} -n ": "${${opt}_DESC:Q} . endif @${ECHO_MSG} "" . endfor . endfor .endfor .undef otype .undef m .undef opt @${ECHO_MSG} "===> Use 'make config' to modify these settings" .endif .endif # showconfig .if !target(showconfig-recursive) showconfig-recursive: @${ECHO_MSG} "===> The following configuration options are available for ${PKGNAME} and dependencies"; @for dir in ${.CURDIR} $$(${ALL-DEPENDS-LIST}); do \ (cd $$dir; ${MAKE} showconfig); \ done .endif # showconfig-recursive .if !target(rmconfig) rmconfig: .if exists(${OPTIONS_FILE}) -@${ECHO_MSG} "===> Removing user-configured options for ${PKGNAME}"; \ optionsdir=${OPTIONS_FILE:H}; \ if [ ${UID} != 0 -a "x${INSTALL_AS_USER}" = "x" -a ! -w "${OPTIONS_FILE}" ]; then \ ${ECHO_MSG} "===> Switching to root credentials to remove ${OPTIONS_FILE} and $${optionsdir}"; \ ${SU_CMD} "${RM} -f ${OPTIONS_FILE} ; \ ${RMDIR} $${optionsdir}"; \ ${ECHO_MSG} "===> Returning to user credentials"; \ else \ ${RM} -f ${OPTIONS_FILE}; \ ${RMDIR} $${optionsdir} 2>/dev/null || return 0; \ fi .else @${ECHO_MSG} "===> No user-specified options configured for ${PKGNAME}" .endif .endif # rmconfig .if !target(rmconfig-recursive) rmconfig-recursive: @${ECHO_MSG} "===> Removing user-specified options for ${PKGNAME} and dependencies"; @for dir in ${.CURDIR} $$(${ALL-DEPENDS-LIST}); do \ (cd $$dir; ${MAKE} rmconfig); \ done .endif # rmconfig-recursive .if !target(pretty-print-config) MULTI_START= [ MULTI_END= ] GROUP_START= [ GROUP_END= ] SINGLE_START= ( SINGLE_END= ) RADIO_START= ( RADIO_END= ) pretty-print-config: .for opt in ${ALL_OPTIONS} @[ -z "${PORT_OPTIONS:M${opt}}" ] || match="+" ; ${ECHO_MSG} -n "$${match:--}${opt} " .endfor .for otype in MULTI GROUP SINGLE RADIO . for m in ${OPTIONS_${otype}} @${ECHO_MSG} -n "${m}${${otype}_START} " . for opt in ${OPTIONS_${otype}_${m}} @[ -z "${PORT_OPTIONS:M${opt}}" ] || match="+" ; ${ECHO_MSG} -n "$${match:--}${opt} " . endfor @${ECHO_MSG} -n "${${otype}_END} " . endfor .endfor .undef otype .undef m .undef opt @${ECHO_MSG} "" .endif # pretty-print-config desktop-categories: @categories=""; \ for native_category in ${CATEGORIES}; do \ c=""; \ case $$native_category in \ accessibility) c="Utility Accessibility" ;; \ archivers) c="Utility Archiving" ;; \ astro) c="Education Science Astronomy" ;; \ audio) c="AudioVideo Audio" ;; \ benchmarks) c="System" ;; \ biology) c="Education Science Biology" ;; \ cad) c="Graphics Engineering" ;; \ comms) c="Utility" ;; \ converters) c="Utility" ;; \ databases) c="Office Database" ;; \ deskutils) c="Utility" ;; \ devel) c="Development" ;; \ dns) c="Network" ;; \ elisp) c="Development" ;; \ editors) c="Utility" ;; \ emulators) c="System Emulator" ;; \ finance) c="Office Finance" ;; \ ftp) c="Network FileTransfer" ;; \ games) c="Game" ;; \ geography) c="Education Science Geography" ;; \ gnome) c="GNOME GTK" ;; \ graphics) c="Graphics" ;; \ hamradio) c="HamRadio" ;; \ haskell) c="Development" ;; \ irc) c="Network IRCClient" ;; \ java) c="Development Java" ;; \ kde) c="KDE Qt" ;; \ lang) c="Development" ;; \ lisp) c="Development" ;; \ mail) c="Office Email" ;; \ mate) c="MATE GTK" ;; \ math) c="Education Science Math" ;; \ mbone) c="Network AudioVideo" ;; \ multimedia) c="AudioVideo" ;; \ net) c="Network" ;; \ net-im) c="Network InstantMessaging" ;; \ net-mgmt) c="Network" ;; \ net-p2p) c="Network P2P" ;; \ news) c="Network News" ;; \ palm) c="Office PDA" ;; \ parallel) c="ParallelComputing" ;; \ pear) c="Development WebDevelopment" ;; \ perl5) c="Development" ;; \ python) c="Development" ;; \ ruby) c="Development" ;; \ rubygems) c="Development" ;; \ scheme) c="Development" ;; \ science) c="Science Education" ;; \ security) c="System Security" ;; \ shells) c="System Shell" ;; \ sysutils) c="System" ;; \ tcl*|tk*) c="Development" ;; \ textproc) c="Utility TextTools" ;; \ www) c="Network" ;; \ x11-clocks) c="Utility Clock" ;; \ x11-fm) c="System FileManager" ;; \ xfce) c="GTK XFCE" ;; \ zope) c="Development WebDevelopment" ;; \ esac; \ if [ -n "$$c" ]; then \ categories="$$categories $$c"; \ fi; \ done; \ if [ -n "$$categories" ]; then \ for c in $$categories; do ${ECHO_MSG} "$$c"; done \ | ${SORT} -u | ${TR} '\n' ';'; \ ${ECHO_MSG}; \ fi # http://standards.freedesktop.org/menu-spec/menu-spec-latest.html DESKTOP_CATEGORIES_MAIN= AudioVideo Audio Video Development Education \ Game Graphics Network Office Science Settings System Utility DESKTOP_CATEGORIES_ADDITIONAL= Building Debugger IDE GUIDesigner Profiling \ RevisionControl Translation Calendar ContactManagement Database \ Dictionary Chart Email Finance FlowChart PDA ProjectManagement \ Presentation Spreadsheet WordProcessor 2DGraphics VectorGraphics \ RasterGraphics 3DGraphics Scanning OCR Photography Publishing Viewer \ TextTools DesktopSettings HardwareSettings Printing PackageManager \ Dialup InstantMessaging Chat IRCClient Feed FileTransfer HamRadio News \ P2P RemoteAccess Telephony TelephonyTools VideoConference WebBrowser \ WebDevelopment Midi Mixer Sequencer Tuner TV AudioVideoEditing Player \ Recorder DiscBurning ActionGame AdventureGame ArcadeGame BoardGame \ BlocksGame CardGame KidsGame LogicGame RolePlaying Shooter Simulation \ SportsGame StrategyGame Art Construction Music Languages \ ArtificialIntelligence Astronomy Biology Chemistry ComputerScience \ DataVisualization Economy Electricity Geography Geology Geoscience \ History Humanities ImageProcessing Literature Maps Math \ NumericalAnalysis MedicalSoftware Physics Robotics Spirituality Sports \ ParallelComputing Amusement Archiving Compression Electronics Emulator \ Engineering FileTools FileManager TerminalEmulator Filesystem Monitor \ Security Accessibility Calculator Clock TextEditor Documentation Adult \ Core KDE GNOME MATE XFCE GTK Qt Motif Java ConsoleOnly DESKTOP_CATEGORIES_RESERVED= Screensaver TrayIcon Applet Shell VALID_DESKTOP_CATEGORIES+= ${DESKTOP_CATEGORIES_MAIN} \ ${DESKTOP_CATEGORIES_ADDITIONAL} \ ${DESKTOP_CATEGORIES_RESERVED} .if defined(DESKTOP_ENTRIES) check-desktop-entries: @set -- ${DESKTOP_ENTRIES} XXX; \ if [ `${EXPR} \( $$# - 1 \) % 6` -ne 0 ]; then \ ${ECHO_MSG} "${PKGNAME}: Makefile error: the DESKTOP_ENTRIES list must contain one or more groups of 6 elements"; \ exit 1; \ fi; \ num=1; \ while [ $$# -gt 6 ]; do \ entry="#$$num"; \ if [ -n "$$4" ]; then \ entry="$$entry ($$4)"; \ elif [ -n "$$1" ]; then \ entry="$$entry ($$1)"; \ fi; \ if [ -z "$$1" ]; then \ ${ECHO_MSG} "${PKGNAME}: Makefile error: in desktop entry $$entry: field 1 (Name) is empty"; \ exit 1; \ fi; \ if ${ECHO_CMD} "$$3" | ${GREP} -iq '.\(png\|svg\|xpm\)$$'; then \ if ! ${ECHO_CMD} "$$3" | ${GREP} -iq '^/'; then \ ${ECHO_MSG} "${PKGNAME}: Makefile warning: in desktop entry $$entry: field 3 (Icon) should be either absolute path or icon name without extension if installed icons follow Icon Theme Specification"; \ fi; \ fi; \ if [ -z "$$4" ]; then \ ${ECHO_MSG} "${PKGNAME}: Makefile error: in desktop entry $$entry: field 4 (Exec) is empty"; \ exit 1; \ fi; \ if [ -n "$$5" ]; then \ for c in `${ECHO_CMD} "$$5" | ${TR} ';' ' '`; do \ if ! ${ECHO_CMD} ${VALID_DESKTOP_CATEGORIES} | ${GREP} -wq $$c; then \ ${ECHO_CMD} "${PKGNAME}: Makefile warning: in desktop entry $$entry: category $$c is not a valid desktop category"; \ fi; \ done; \ if ! ${ECHO_CMD} "$$5" | ${GREP} -q "`${ECHO_CMD} ${DESKTOP_CATEGORIES_MAIN} | ${SED} -E 's,[[:blank:]]+,\\\|,g'`"; then \ ${ECHO_CMD} "${PKGNAME}: Makefile warning: in desktop entry $$entry: field 5 (Categories) must contain at least one main desktop category (make -VDESKTOP_CATEGORIES_MAIN)"; \ fi; \ if ! ${ECHO_CMD} "$$5" | ${GREP} -q ';$$'; then \ ${ECHO_MSG} "${PKGNAME}: Makefile error: in desktop entry $$entry: field 5 (Categories) does not end with a semicolon"; \ exit 1; \ fi; \ else \ if [ -z "`cd ${.CURDIR} && ${MAKE} desktop-categories`" ]; then \ ${ECHO_MSG} "${PKGNAME}: Makefile error: in desktop entry $$entry: field 5 (Categories) is empty and could not be deduced from the CATEGORIES variable"; \ exit 1; \ fi; \ fi; \ if [ "x$$6" != "xtrue" ] && [ "x$$6" != "xfalse" ] && [ "x$$6" != "x" ]; then \ ${ECHO_MSG} "${PKGNAME}: Makefile error: in desktop entry $$entry: field 6 (StartupNotify) is not \"true\", \"false\" or \"\"(empty)"; \ exit 1; \ fi; \ shift 6; \ num=`${EXPR} $$num + 1`; \ done .endif .if !target(install-desktop-entries) .if defined(DESKTOP_ENTRIES) install-desktop-entries: @set -- ${DESKTOP_ENTRIES} XXX; \ while [ $$# -gt 6 ]; do \ filename="`${ECHO_CMD} "$$4" | ${SED} -e 's,^/,,g;s,[/ ],_,g;s,[^_[:alnum:]],,g'`.desktop"; \ pathname="${STAGEDIR}${DESKTOPDIR}/$$filename"; \ categories="$$5"; \ if [ -z "$$categories" ]; then \ categories="`cd ${.CURDIR} && ${MAKE} desktop-categories`"; \ fi; \ ${ECHO_CMD} "${DESKTOPDIR}/$$filename" >> ${TMPPLIST}; \ ${ECHO_CMD} "[Desktop Entry]" > $$pathname; \ ${ECHO_CMD} "Type=Application" >> $$pathname; \ ${ECHO_CMD} "Version=1.0" >> $$pathname; \ ${ECHO_CMD} "Name=$$1" >> $$pathname; \ comment="$$2"; \ if [ -z "$$2" ]; then \ comment="`cd ${.CURDIR} && ${MAKE} -VCOMMENT`"; \ fi; \ ${ECHO_CMD} "GenericName=$$comment" >> $$pathname; \ ${ECHO_CMD} "Comment=$$comment" >> $$pathname; \ if [ -n "$$3" ]; then \ ${ECHO_CMD} "Icon=$$3" >> $$pathname; \ fi; \ ${ECHO_CMD} "Exec=$$4" >> $$pathname; \ ${ECHO_CMD} "Categories=$$categories" >> $$pathname; \ if [ -n "$$6" ]; then \ ${ECHO_CMD} "StartupNotify=$$6" >> $$pathname; \ fi; \ shift 6; \ done .endif .endif .if defined(WARNING) WARNING_WAIT?= 10 show-warnings: @${ECHO_MSG} "/!\\ WARNING /!\\" .for m in ${WARNING} @${ECHO_MSG} "${m}" .endfor @${ECHO_MSG} @sleep ${WARNING_WAIT} .endif .if defined(DEVELOPER) .if defined(DEV_WARNING) DEV_WARNING_WAIT?= 10 show-dev-warnings: @${ECHO_MSG} "/!\\ ${PKGNAME}: Makefile warnings, please consider fixing /!\\" @${ECHO_MSG} .for m in ${DEV_WARNING} @${ECHO_MSG} "${m}" .endfor @${ECHO_MSG} .if defined(DEV_WARNING_FATAL) @${FALSE} .else @sleep ${DEV_WARNING_WAIT} .endif .endif .if defined(DEV_ERROR) show-dev-errors: @${ECHO_MSG} "/!\\ ${PKGNAME}: Makefile errors /!\\" @${ECHO_MSG} .for m in ${DEV_ERROR} @${ECHO_MSG} "${m}" .endfor @${ECHO_MSG} @${FALSE} .endif .endif #DEVELOPER # Please note that the order of the following targets is important, and # should not be modified. _TARGETS_STAGES= SANITY PKG FETCH EXTRACT PATCH CONFIGURE BUILD INSTALL TEST PACKAGE STAGE # Define the SEQ of actions to take when each target is ran, and which targets # it depends on before running its SEQ. # # Main target has a priority of 500, pre-target 300, post-target 700, # target-depends 150. Other targets are spaced in between those # # If you change the pre-foo and post-foo values here, go and keep them in sync # in _OPTIONS_TARGETS in bsd.options.mk _SANITY_SEQ= 050:post-chroot 100:pre-everything 150:check-makefile \ 200:show-warnings 210:show-dev-warnings 220:show-dev-errors \ 250:check-categories 300:check-makevars \ 350:check-desktop-entries 400:check-depends \ 450:identify-install-conflicts 500:check-deprecated \ 550:check-vulnerable 600:check-license 650:check-config \ 700:buildanyway-message 750:options-message ${_USES_sanity} _PKG_DEP= check-sanity _PKG_SEQ= 500:pkg-depends _FETCH_DEP= pkg _FETCH_SEQ= 150:fetch-depends 300:pre-fetch 450:pre-fetch-script \ 500:do-fetch 550:fetch-specials 700:post-fetch \ 850:post-fetch-script \ ${_OPTIONS_fetch} ${_USES_fetch} _EXTRACT_DEP= fetch _EXTRACT_SEQ= 010:check-build-conflicts 050:extract-message 100:checksum \ 150:extract-depends 190:clean-wrkdir 200:${EXTRACT_WRKDIR} \ 300:pre-extract 450:pre-extract-script 500:do-extract \ 700:post-extract 850:post-extract-script \ ${_OPTIONS_extract} ${_USES_extract} _PATCH_DEP= extract _PATCH_SEQ= 050:ask-license 100:patch-message 150:patch-depends \ 300:pre-patch 450:pre-patch-script 500:do-patch \ 700:post-patch 850:post-patch-script \ ${_OPTIONS_patch} ${_USES_patch} _CONFIGURE_DEP= patch _CONFIGURE_SEQ= 150:build-depends 151:lib-depends 200:configure-message \ 300:pre-configure 450:pre-configure-script 460:run-autotools \ 490:run-autotools-fixup 500:do-configure 700:post-configure \ 850:post-configure-script \ ${_OPTIONS_configure} ${_USES_configure} _BUILD_DEP= configure _BUILD_SEQ= 100:build-message 300:pre-build 450:pre-build-script \ 500:do-build 700:post-build 850:post-build-script \ ${_OPTIONS_build} ${_USES_build} _STAGE_DEP= build # STAGE is special in its numbering as it has install and stage, so install is # the main, and stage goes after. _STAGE_SEQ= 050:stage-message 100:stage-dir 150:run-depends \ 151:lib-depends 200:apply-slist 300:pre-install \ 400:generate-plist 450:pre-su-install 475:create-users-groups \ 500:do-install 550:kmod-post-install 700:post-install \ 750:post-install-script 800:post-stage 850:compress-man \ 860:install-rc-script 870:install-ldconfig-file \ 880:install-license 890:install-desktop-entries \ 900:add-plist-info 910:add-plist-docs 920:add-plist-examples \ 930:add-plist-data 940:add-plist-post ${POST_PLIST:C/^/990:/} \ ${_OPTIONS_install} ${_USES_install} \ ${_OPTIONS_stage} ${_USES_stage} .if defined(DEVELOPER) _STAGE_SEQ+= 995:stage-qa .else stage-qa: stage .endif _TEST_DEP= stage _TEST_SEQ= 100:test-message 150:test-depends 300:pre-test 500:do-test \ 800:post-test \ ${_OPTIONS_test} ${_USES_test} _INSTALL_DEP= stage _INSTALL_SEQ= 100:install-message 150:run-depends 151:lib-depends \ 200:check-already-installed _INSTALL_SUSEQ= 300:fake-pkg 500:security-check _PACKAGE_DEP= stage _PACKAGE_SEQ= 100:package-message 300:pre-package 450:pre-package-script \ 500:do-package 850:post-package-script \ ${_OPTIONS_package} ${_USES_package} # Enforce order for -jN builds .for _t in ${_TARGETS_STAGES} # Check if the port need to change the default order of some targets... . if defined(TARGET_ORDER_OVERRIDE) _tmp_seq:= . for _entry in ${_${_t}_SEQ} # for _target because :M${_target} does not work with fmake . for _target in ${_entry:C/^[0-9]+://} . if ${TARGET_ORDER_OVERRIDE:M*\:${_target}} _tmp_seq:= ${_tmp_seq} ${TARGET_ORDER_OVERRIDE:M*\:${_target}} . else _tmp_seq:= ${_tmp_seq} ${_entry} . endif . endfor . endfor _${_t}_SEQ:= ${_tmp_seq} . endif . for s in ${_${_t}_SEQ:O:C/^[0-9]+://} . if target(${s}) . if ! ${NOTPHONY:M${s}} _PHONY_TARGETS+= ${s} . endif _${_t}_REAL_SEQ+= ${s} . endif . endfor . for s in ${_${_t}_SUSEQ:O:C/^[0-9]+://} . if target(${s}) . if ! ${NOTPHONY:M${s}} _PHONY_TARGETS+= ${s} . endif _${_t}_REAL_SUSEQ+= ${s} . endif . endfor .ORDER: ${_${_t}_DEP} ${_${_t}_REAL_SEQ} .endfor # Define all of the main targets which depend on a sequence of other targets. # See above *_SEQ and *_DEP. The _DEP will run before this defined target is # ran. The _SEQ will run as this target once _DEP is satisfied. .for target in extract patch configure build stage install package # Check if config dialog needs to show and execute it if needed. If is it not # needed (_OPTIONS_OK), then just depend on the cookie which is defined later # to depend on the *_DEP and execute the *_SEQ. # If options are required, execute config-conditional and then re-execute the # target noting that config is no longer needed. .if !target(${target}) && defined(_OPTIONS_OK) _PHONY_TARGETS+= ${target} ${target}: ${${target:tu}_COOKIE} .elif !target(${target}) ${target}: config-conditional @cd ${.CURDIR} && ${MAKE} CONFIG_DONE_${PKGBASE:tu}=1 ${${target:tu}_COOKIE} .elif target(${target}) && defined(IGNORE) .endif .if !exists(${${target:tu}_COOKIE}) # Define the real target behavior. Depend on the target's *_DEP. Execute # the target's *_SEQ. Also handle su and USE_SUBMAKE needs. .if ${UID} != 0 && defined(_${target:tu}_REAL_SUSEQ) && !defined(INSTALL_AS_USER) . if defined(USE_SUBMAKE) ${${target:tu}_COOKIE}: ${_${target:tu}_DEP} @cd ${.CURDIR} && ${MAKE} ${_${target:tu}_REAL_SEQ} . else # !USE_SUBMAKE ${${target:tu}_COOKIE}: ${_${target:tu}_DEP} ${_${target:tu}_REAL_SEQ} . endif # USE_SUBMAKE @${ECHO_MSG} "===> Switching to root credentials for '${target}' target" @cd ${.CURDIR} && \ ${SU_CMD} "${MAKE} ${_${target:tu}_REAL_SUSEQ}" @${ECHO_MSG} "===> Returning to user credentials" @${TOUCH} ${TOUCH_FLAGS} ${.TARGET} .else # No SU needed . if defined(USE_SUBMAKE) ${${target:tu}_COOKIE}: ${_${target:tu}_DEP} @cd ${.CURDIR} && \ ${MAKE} ${_${target:tu}_REAL_SEQ} ${_${target:tu}_REAL_SUSEQ} @${TOUCH} ${TOUCH_FLAGS} ${.TARGET} . else # !USE_SUBMAKE ${${target:tu}_COOKIE}: ${_${target:tu}_DEP} ${_${target:tu}_REAL_SEQ} ${_${target:tu}_REAL_SUSEQ} @${TOUCH} ${TOUCH_FLAGS} ${.TARGET} . endif # USE_SUBMAKE .endif # SU needed .else # exists(cookie) ${${target:tu}_COOKIE}:: @if [ -e ${.TARGET} ]; then \ ${DO_NADA}; \ else \ cd ${.CURDIR} && ${MAKE} ${.TARGET}; \ fi .endif # !exists(cookie) .endfor # foreach(targets) .PHONY: ${_PHONY_TARGETS} check-sanity fetch pkg .if !target(check-sanity) check-sanity: ${_SANITY_REAL_SEQ} .endif .if !target(fetch) fetch: ${_FETCH_DEP} ${_FETCH_REAL_SEQ} .endif .if !target(pkg) pkg: ${_PKG_DEP} ${_PKG_REAL_SEQ} .endif .if !target(test) test: ${_TEST_DEP} ${_TEST_REAL_SEQ} .endif .endif # End of post-makefile section. .endif # End of the DESTDIR if statement Index: head/accessibility/linux-c6-atk/distinfo.x86_64 =================================================================== --- head/accessibility/linux-c6-atk/distinfo.x86_64 (revision 413167) +++ head/accessibility/linux-c6-atk/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/atk-1.30.0-1.el6.x86_64.rpm) = 0627b9fa757608512a7f7fd0f887717212e58f3d8af8e0ca338af73a38d9b65b SIZE (rpm/x86_64/centos/6.7/atk-1.30.0-1.el6.x86_64.rpm) = 200052 +SHA256 (rpm/x86_64/centos/6.7/atk-1.30.0-1.el6.i686.rpm) = 1fb6cdc8bdeaab448dc07d6c326fe402e3170e7b4e9fff84de45c6fc9aeee216 +SIZE (rpm/x86_64/centos/6.7/atk-1.30.0-1.el6.i686.rpm) = 198868 SHA256 (rpm/x86_64/centos/6.7/atk-1.30.0-1.el6.src.rpm) = fc87523ecb6cb944f9452a9da4385c73346acc3714ea494d3110245c4fbce12a SIZE (rpm/x86_64/centos/6.7/atk-1.30.0-1.el6.src.rpm) = 758480 Index: head/accessibility/linux-c6-atk/pkg-plist.x86_64 =================================================================== --- head/accessibility/linux-c6-atk/pkg-plist.x86_64 (revision 413167) +++ head/accessibility/linux-c6-atk/pkg-plist.x86_64 (revision 413168) @@ -1,97 +1,99 @@ +usr/lib/libatk-1.0.so.0 +usr/lib/libatk-1.0.so.0.3009.1 usr/lib64/libatk-1.0.so.0 usr/lib64/libatk-1.0.so.0.3009.1 usr/share/doc/atk-1.30.0/AUTHORS usr/share/doc/atk-1.30.0/COPYING usr/share/doc/atk-1.30.0/NEWS usr/share/doc/atk-1.30.0/README usr/share/locale/af/LC_MESSAGES/atk10.mo usr/share/locale/am/LC_MESSAGES/atk10.mo usr/share/locale/ar/LC_MESSAGES/atk10.mo usr/share/locale/as/LC_MESSAGES/atk10.mo usr/share/locale/ast/LC_MESSAGES/atk10.mo usr/share/locale/az/LC_MESSAGES/atk10.mo usr/share/locale/be/LC_MESSAGES/atk10.mo usr/share/locale/be@latin/LC_MESSAGES/atk10.mo usr/share/locale/bg/LC_MESSAGES/atk10.mo usr/share/locale/bn/LC_MESSAGES/atk10.mo usr/share/locale/bn_IN/LC_MESSAGES/atk10.mo usr/share/locale/bs/LC_MESSAGES/atk10.mo usr/share/locale/ca/LC_MESSAGES/atk10.mo usr/share/locale/ca@valencia/LC_MESSAGES/atk10.mo usr/share/locale/cs/LC_MESSAGES/atk10.mo usr/share/locale/cy/LC_MESSAGES/atk10.mo usr/share/locale/da/LC_MESSAGES/atk10.mo usr/share/locale/de/LC_MESSAGES/atk10.mo usr/share/locale/dz/LC_MESSAGES/atk10.mo usr/share/locale/el/LC_MESSAGES/atk10.mo usr/share/locale/en_CA/LC_MESSAGES/atk10.mo usr/share/locale/en@shaw/LC_MESSAGES/atk10.mo usr/share/locale/en_GB/LC_MESSAGES/atk10.mo usr/share/locale/eo/LC_MESSAGES/atk10.mo usr/share/locale/es/LC_MESSAGES/atk10.mo usr/share/locale/et/LC_MESSAGES/atk10.mo usr/share/locale/eu/LC_MESSAGES/atk10.mo usr/share/locale/fa/LC_MESSAGES/atk10.mo usr/share/locale/fi/LC_MESSAGES/atk10.mo usr/share/locale/fr/LC_MESSAGES/atk10.mo usr/share/locale/ga/LC_MESSAGES/atk10.mo usr/share/locale/gl/LC_MESSAGES/atk10.mo usr/share/locale/gu/LC_MESSAGES/atk10.mo usr/share/locale/he/LC_MESSAGES/atk10.mo usr/share/locale/hi/LC_MESSAGES/atk10.mo usr/share/locale/hr/LC_MESSAGES/atk10.mo usr/share/locale/hu/LC_MESSAGES/atk10.mo usr/share/locale/id/LC_MESSAGES/atk10.mo usr/share/locale/is/LC_MESSAGES/atk10.mo usr/share/locale/it/LC_MESSAGES/atk10.mo usr/share/locale/ja/LC_MESSAGES/atk10.mo usr/share/locale/ka/LC_MESSAGES/atk10.mo usr/share/locale/kn/LC_MESSAGES/atk10.mo usr/share/locale/ko/LC_MESSAGES/atk10.mo usr/share/locale/ku/LC_MESSAGES/atk10.mo usr/share/locale/li/LC_MESSAGES/atk10.mo usr/share/locale/lt/LC_MESSAGES/atk10.mo usr/share/locale/lv/LC_MESSAGES/atk10.mo usr/share/locale/mai/LC_MESSAGES/atk10.mo usr/share/locale/mk/LC_MESSAGES/atk10.mo usr/share/locale/ml/LC_MESSAGES/atk10.mo usr/share/locale/mn/LC_MESSAGES/atk10.mo usr/share/locale/mr/LC_MESSAGES/atk10.mo usr/share/locale/ms/LC_MESSAGES/atk10.mo usr/share/locale/nb/LC_MESSAGES/atk10.mo usr/share/locale/ne/LC_MESSAGES/atk10.mo usr/share/locale/nl/LC_MESSAGES/atk10.mo usr/share/locale/nn/LC_MESSAGES/atk10.mo usr/share/locale/oc/LC_MESSAGES/atk10.mo usr/share/locale/or/LC_MESSAGES/atk10.mo usr/share/locale/pa/LC_MESSAGES/atk10.mo usr/share/locale/pl/LC_MESSAGES/atk10.mo usr/share/locale/ps/LC_MESSAGES/atk10.mo usr/share/locale/pt/LC_MESSAGES/atk10.mo usr/share/locale/pt_BR/LC_MESSAGES/atk10.mo usr/share/locale/ro/LC_MESSAGES/atk10.mo usr/share/locale/ru/LC_MESSAGES/atk10.mo usr/share/locale/rw/LC_MESSAGES/atk10.mo usr/share/locale/si/LC_MESSAGES/atk10.mo usr/share/locale/sk/LC_MESSAGES/atk10.mo usr/share/locale/sl/LC_MESSAGES/atk10.mo usr/share/locale/sq/LC_MESSAGES/atk10.mo usr/share/locale/sr/LC_MESSAGES/atk10.mo usr/share/locale/sr@ije/LC_MESSAGES/atk10.mo usr/share/locale/sr@latin/LC_MESSAGES/atk10.mo usr/share/locale/sv/LC_MESSAGES/atk10.mo usr/share/locale/ta/LC_MESSAGES/atk10.mo usr/share/locale/te/LC_MESSAGES/atk10.mo usr/share/locale/th/LC_MESSAGES/atk10.mo usr/share/locale/tk/LC_MESSAGES/atk10.mo usr/share/locale/tr/LC_MESSAGES/atk10.mo usr/share/locale/tt/LC_MESSAGES/atk10.mo usr/share/locale/ug/LC_MESSAGES/atk10.mo usr/share/locale/uk/LC_MESSAGES/atk10.mo usr/share/locale/vi/LC_MESSAGES/atk10.mo usr/share/locale/wa/LC_MESSAGES/atk10.mo usr/share/locale/xh/LC_MESSAGES/atk10.mo usr/share/locale/yi/LC_MESSAGES/atk10.mo usr/share/locale/zh_CN/LC_MESSAGES/atk10.mo usr/share/locale/zh_HK/LC_MESSAGES/atk10.mo usr/share/locale/zh_TW/LC_MESSAGES/atk10.mo Property changes on: head/accessibility/linux-c6-atk/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/audio/linux-c6-alsa-lib/Makefile =================================================================== --- head/audio/linux-c6-alsa-lib/Makefile (revision 413167) +++ head/audio/linux-c6-alsa-lib/Makefile (revision 413168) @@ -1,40 +1,40 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= alsa-lib PORTVERSION= 1.0.22 PORTREVISION= 2 CATEGORIES= audio linux MAINTAINER= emulation@FreeBSD.org COMMENT= Advanced Linux Sound Architecture libraries (Linux CentOS ${LINUX_DIST_VER}) LICENSE= GPLv3 RUN_DEPENDS= alsa-lib>0:audio/alsa-lib -CONFLICTS= linux-alsa-lib-[0-9]* linux-f8-alsa-lib-[0-9]* linux-f10-alsa-lib-[0-9]* +CONFLICTS= linux-f10-alsa-lib-[0-9]* BRANDELF_FILES= usr/bin/aserver ONLY_FOR_ARCHS= i386 amd64 USE_LINUX= c6 USE_LINUX_RPM= yes RPMVERSION= 3.el6 USE_LDCONFIG= yes # We will use native configuration file, so delete a linux one post-extract: @${RM} -r ${WRKSRC}/etc post-install: @${MKDIR} ${STAGEDIR}${PREFIX}/etc ${LN} -fs ${LOCALBASE}/etc/asound.conf ${STAGEDIR}${PREFIX}/etc ${RM} ${STAGEDIR}${PREFIX}/usr/lib/alsa-lib/smixer/smixer-ac97.la ${RM} ${STAGEDIR}${PREFIX}/usr/lib/alsa-lib/smixer/smixer-hda.la ${RM} ${STAGEDIR}${PREFIX}/usr/lib/alsa-lib/smixer/smixer-sbase.la ${RM} ${STAGEDIR}${PREFIX}/usr/lib64/alsa-lib/smixer/smixer-ac97.la ${RM} ${STAGEDIR}${PREFIX}/usr/lib64/alsa-lib/smixer/smixer-hda.la ${RM} ${STAGEDIR}${PREFIX}/usr/lib64/alsa-lib/smixer/smixer-sbase.la .include Index: head/audio/linux-c6-alsa-lib/distinfo.x86_64 =================================================================== --- head/audio/linux-c6-alsa-lib/distinfo.x86_64 (revision 413167) +++ head/audio/linux-c6-alsa-lib/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/alsa-lib-1.0.22-3.el6.x86_64.rpm) = 921f9aa4d5d677233b2c25db3ffb7e883279ec0b5bafef24c706844bf9a66870 SIZE (rpm/x86_64/centos/6.7/alsa-lib-1.0.22-3.el6.x86_64.rpm) = 379052 +SHA256 (rpm/x86_64/centos/6.7/alsa-lib-1.0.22-3.el6.i686.rpm) = bf1ab0941cd82cf78281246b73ad79bd4c575f29ee59dca35f11c63f2cdde0f8 +SIZE (rpm/x86_64/centos/6.7/alsa-lib-1.0.22-3.el6.i686.rpm) = 377492 SHA256 (rpm/x86_64/centos/6.7/alsa-lib-1.0.22-3.el6.src.rpm) = f2415ca52513095fffde190840a1f2bd7873870767250298ad116a9e57082dec SIZE (rpm/x86_64/centos/6.7/alsa-lib-1.0.22-3.el6.src.rpm) = 865098 Index: head/audio/linux-c6-alsa-lib/pkg-plist.x86_64 =================================================================== --- head/audio/linux-c6-alsa-lib/pkg-plist.x86_64 (revision 413167) +++ head/audio/linux-c6-alsa-lib/pkg-plist.x86_64 (revision 413168) @@ -1,86 +1,91 @@ @comment file listing etc/asound.conf +lib/libasound.so.2 +lib/libasound.so.2.0.0 lib64/libasound.so.2 lib64/libasound.so.2.0.0 usr/bin/aserver +usr/lib/alsa-lib/smixer/smixer-ac97.so +usr/lib/alsa-lib/smixer/smixer-hda.so +usr/lib/alsa-lib/smixer/smixer-sbase.so usr/lib64/alsa-lib/smixer/smixer-ac97.so usr/lib64/alsa-lib/smixer/smixer-hda.so usr/lib64/alsa-lib/smixer/smixer-sbase.so usr/share/alsa/alsa.conf usr/share/alsa/cards/AACI.conf usr/share/alsa/cards/ATIIXP-MODEM.conf usr/share/alsa/cards/ATIIXP-SPDMA.conf usr/share/alsa/cards/ATIIXP.conf usr/share/alsa/cards/AU8810.conf usr/share/alsa/cards/AU8820.conf usr/share/alsa/cards/AU8830.conf usr/share/alsa/cards/Audigy.conf usr/share/alsa/cards/Audigy2.conf usr/share/alsa/cards/Aureon51.conf usr/share/alsa/cards/Aureon71.conf usr/share/alsa/cards/CA0106.conf usr/share/alsa/cards/CMI8338-SWIEC.conf usr/share/alsa/cards/CMI8338.conf usr/share/alsa/cards/CMI8738-MC6.conf usr/share/alsa/cards/CMI8738-MC8.conf usr/share/alsa/cards/CMI8788.conf usr/share/alsa/cards/CS46xx.conf usr/share/alsa/cards/EMU10K1.conf usr/share/alsa/cards/EMU10K1X.conf usr/share/alsa/cards/ENS1370.conf usr/share/alsa/cards/ENS1371.conf usr/share/alsa/cards/ES1968.conf usr/share/alsa/cards/FM801.conf usr/share/alsa/cards/GUS.conf usr/share/alsa/cards/HDA-Intel.conf usr/share/alsa/cards/ICE1712.conf usr/share/alsa/cards/ICE1724.conf usr/share/alsa/cards/ICH-MODEM.conf usr/share/alsa/cards/ICH.conf usr/share/alsa/cards/ICH4.conf usr/share/alsa/cards/Maestro3.conf usr/share/alsa/cards/NFORCE.conf usr/share/alsa/cards/PC-Speaker.conf usr/share/alsa/cards/PMac.conf usr/share/alsa/cards/PMacToonie.conf usr/share/alsa/cards/PS3.conf usr/share/alsa/cards/RME9636.conf usr/share/alsa/cards/RME9652.conf usr/share/alsa/cards/SB-XFi.conf usr/share/alsa/cards/SI7018.conf usr/share/alsa/cards/SI7018/sndoc-mixer.alisp usr/share/alsa/cards/SI7018/sndop-mixer.alisp usr/share/alsa/cards/TRID4DWAVENX.conf usr/share/alsa/cards/USB-Audio.conf usr/share/alsa/cards/VIA686A.conf usr/share/alsa/cards/VIA8233.conf usr/share/alsa/cards/VIA8233A.conf usr/share/alsa/cards/VIA8237.conf usr/share/alsa/cards/VX222.conf usr/share/alsa/cards/VXPocket.conf usr/share/alsa/cards/VXPocket440.conf usr/share/alsa/cards/YMF744.conf usr/share/alsa/cards/aliases.alisp usr/share/alsa/cards/aliases.conf usr/share/alsa/pcm/center_lfe.conf usr/share/alsa/pcm/default.conf usr/share/alsa/pcm/dmix.conf usr/share/alsa/pcm/dpl.conf usr/share/alsa/pcm/dsnoop.conf usr/share/alsa/pcm/front.conf usr/share/alsa/pcm/hdmi.conf usr/share/alsa/pcm/iec958.conf usr/share/alsa/pcm/modem.conf usr/share/alsa/pcm/rear.conf usr/share/alsa/pcm/side.conf usr/share/alsa/pcm/surround40.conf usr/share/alsa/pcm/surround41.conf usr/share/alsa/pcm/surround50.conf usr/share/alsa/pcm/surround51.conf usr/share/alsa/pcm/surround71.conf usr/share/alsa/smixer.conf usr/share/alsa/sndo-mixer.alisp usr/share/doc/alsa-lib-1.0.22/COPYING usr/share/doc/alsa-lib-1.0.22/ChangeLog usr/share/doc/alsa-lib-1.0.22/TODO usr/share/doc/alsa-lib-1.0.22/asoundrc.txt Property changes on: head/audio/linux-c6-alsa-lib/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/audio/linux-c6-alsa-plugins-oss/Makefile =================================================================== --- head/audio/linux-c6-alsa-plugins-oss/Makefile (revision 413167) +++ head/audio/linux-c6-alsa-plugins-oss/Makefile (revision 413168) @@ -1,32 +1,30 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= alsa-plugins-oss PORTVERSION= 1.0.21 PORTREVISION= 3 CATEGORIES= audio linux MAINTAINER= emulation@FreeBSD.org COMMENT= OSS plugin for ALSA (Linux CentOS ${LINUX_DIST_VER}) LICENSE= GPLv3 CONFLICTS= linux-f10-alsa-plugins-oss-[0-9]* -.if defined(PACKAGE_BUILDING) SRC_DISTFILES= alsa-plugins-${PORTVERSION}-${RPMVERSION}${SRC_SUFX}:SOURCE -.endif ONLY_FOR_ARCHS= i386 amd64 USE_LINUX= c6 USE_LINUX_APPS= alsalib USE_LINUX_RPM= yes RPMVERSION= 3.el6 USE_LDCONFIG= yes # We will use native configuration file, so delete a linux one post-extract: @${RM} -r ${WRKSRC}/etc .include Index: head/audio/linux-c6-alsa-plugins-oss/distinfo.x86_64 =================================================================== --- head/audio/linux-c6-alsa-plugins-oss/distinfo.x86_64 (revision 413167) +++ head/audio/linux-c6-alsa-plugins-oss/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/alsa-plugins-oss-1.0.21-3.el6.x86_64.rpm) = 4596288975ced8f80aeca78e64a0ebe0b3181267676efcdb248dea29a7ffcb59 SIZE (rpm/x86_64/centos/6.7/alsa-plugins-oss-1.0.21-3.el6.x86_64.rpm) = 29016 +SHA256 (rpm/x86_64/centos/6.7/alsa-plugins-oss-1.0.21-3.el6.i686.rpm) = 120d11f7e4fe4e4e0c615690e6f471a78dcd2f48e7ba756ea71b0248fc1e2908 +SIZE (rpm/x86_64/centos/6.7/alsa-plugins-oss-1.0.21-3.el6.i686.rpm) = 28660 SHA256 (rpm/x86_64/centos/6.7/alsa-plugins-1.0.21-3.el6.src.rpm) = ef92534d1459f389f7a69176760f6247981b70c864aa4ae9bfe0565b4e7bd0e6 SIZE (rpm/x86_64/centos/6.7/alsa-plugins-1.0.21-3.el6.src.rpm) = 340131 Index: head/audio/linux-c6-alsa-plugins-oss/pkg-plist.x86_64 =================================================================== --- head/audio/linux-c6-alsa-plugins-oss/pkg-plist.x86_64 (revision 413167) +++ head/audio/linux-c6-alsa-plugins-oss/pkg-plist.x86_64 (revision 413168) @@ -1,5 +1,7 @@ +usr/lib/alsa-lib/libasound_module_ctl_oss.so +usr/lib/alsa-lib/libasound_module_pcm_oss.so usr/lib64/alsa-lib/libasound_module_ctl_oss.so usr/lib64/alsa-lib/libasound_module_pcm_oss.so usr/share/doc/alsa-plugins-oss-1.0.21/COPYING usr/share/doc/alsa-plugins-oss-1.0.21/COPYING.GPL usr/share/doc/alsa-plugins-oss-1.0.21/README-pcm-oss Property changes on: head/audio/linux-c6-alsa-plugins-oss/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/audio/linux-c6-alsa-plugins-pulseaudio/distinfo.x86_64 =================================================================== --- head/audio/linux-c6-alsa-plugins-pulseaudio/distinfo.x86_64 (revision 413167) +++ head/audio/linux-c6-alsa-plugins-pulseaudio/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/alsa-plugins-pulseaudio-1.0.21-3.el6.x86_64.rpm) = 070122ab7aa8fb95cf70a9dd3f7df969c2ba8963638b7bebbd08a3e0b71fc324 SIZE (rpm/x86_64/centos/6.7/alsa-plugins-pulseaudio-1.0.21-3.el6.x86_64.rpm) = 35836 +SHA256 (rpm/x86_64/centos/6.7/alsa-plugins-pulseaudio-1.0.21-3.el6.i686.rpm) = e0696f6ee9685d976320f84a17e1f5a6024686e094aa66284cd13903cf3746cc +SIZE (rpm/x86_64/centos/6.7/alsa-plugins-pulseaudio-1.0.21-3.el6.i686.rpm) = 35156 SHA256 (rpm/x86_64/centos/6.7/alsa-plugins-1.0.21-3.el6.src.rpm) = ef92534d1459f389f7a69176760f6247981b70c864aa4ae9bfe0565b4e7bd0e6 SIZE (rpm/x86_64/centos/6.7/alsa-plugins-1.0.21-3.el6.src.rpm) = 340131 Index: head/audio/linux-c6-alsa-plugins-pulseaudio/pkg-plist.x86_64 =================================================================== --- head/audio/linux-c6-alsa-plugins-pulseaudio/pkg-plist.x86_64 (revision 413167) +++ head/audio/linux-c6-alsa-plugins-pulseaudio/pkg-plist.x86_64 (revision 413168) @@ -1,6 +1,9 @@ +usr/lib/alsa-lib/libasound_module_conf_pulse.so +usr/lib/alsa-lib/libasound_module_ctl_pulse.so +usr/lib/alsa-lib/libasound_module_pcm_pulse.so usr/lib64/alsa-lib/libasound_module_conf_pulse.so usr/lib64/alsa-lib/libasound_module_ctl_pulse.so usr/lib64/alsa-lib/libasound_module_pcm_pulse.so %%PORTDOCS%%usr/%%DOCSDIR%%-1.0.21/COPYING %%PORTDOCS%%usr/%%DOCSDIR%%-1.0.21/COPYING.GPL %%PORTDOCS%%usr/%%DOCSDIR%%-1.0.21/README-pulse Property changes on: head/audio/linux-c6-alsa-plugins-pulseaudio/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/audio/linux-c6-alsa-utils/Makefile =================================================================== --- head/audio/linux-c6-alsa-utils/Makefile (revision 413167) +++ head/audio/linux-c6-alsa-utils/Makefile (revision 413168) @@ -1,25 +1,25 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= alsa-utils PORTVERSION= 1.0.22 PORTREVISION= 2 CATEGORIES= audio linux MASTER_SITES= CENTOS_LINUX MAINTAINER= emulation@FreeBSD.org COMMENT= Advanced Linux Sound Architecture libraries (Linux CentOS ${LINUX_DIST_VER}) LICENSE= GPLv3 CONFLICTS= linux-alsa-lib-[0-9]* linux-f8-alsa-lib-[0-9]* linux-f10-alsa-lib-[0-9]* BRANDELF_FILES= sbin/alsactl usr/bin/aconnect usr/bin/alsamixer usr/bin/amidi usr/bin/aplay usr/bin/aplaymidi usr/bin/arecord usr/bin/arecordmidi usr/bin/aseqdump usr/bin/aseqnet usr/bin/iecset usr/bin/speaker-test usr/sbin/alsactl USE_LINUX_APPS= alsalib alsa-plugins-oss ONLY_FOR_ARCHS= i386 amd64 USE_LINUX= c6 -USE_LINUX_RPM= yes +USE_LINUX_RPM= nolib RPMVERSION= 9.el6_6 .include Index: head/audio/linux-c6-arts/distinfo.x86_64 =================================================================== --- head/audio/linux-c6-arts/distinfo.x86_64 (revision 413167) +++ head/audio/linux-c6-arts/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/arts-1.5.10-10.el6.x86_64.rpm) = d9b4b8b4369d3ef80d4f92beedd4a8f2228c620cf61770fda3075777645bb5b1 SIZE (rpm/x86_64/centos/6.7/arts-1.5.10-10.el6.x86_64.rpm) = 989216 +SHA256 (rpm/x86_64/centos/6.7/arts-1.5.10-10.el6.i686.rpm) = 332ab57a42e5930f175cd4cab7b326b4f1d36b20199f65ca8194bb190c3b2f6f +SIZE (rpm/x86_64/centos/6.7/arts-1.5.10-10.el6.i686.rpm) = 933716 SHA256 (rpm/x86_64/centos/6.7/arts-1.5.10-10.el6.src.rpm) = a89b4f46f4c26c281fd299ae33beba8496036926472b065984b09968d9d89930 SIZE (rpm/x86_64/centos/6.7/arts-1.5.10-10.el6.src.rpm) = 996853 Index: head/audio/linux-c6-arts/pkg-plist.x86_64 =================================================================== --- head/audio/linux-c6-arts/pkg-plist.x86_64 (revision 413167) +++ head/audio/linux-c6-arts/pkg-plist.x86_64 (revision 413168) @@ -1,66 +1,124 @@ usr/bin/artscat usr/bin/artsd usr/bin/artsdsp usr/bin/artsplay usr/bin/artsrec usr/bin/artsshell usr/bin/artswrapper +usr/lib/libartsc.so.0 +usr/lib/libartsc.so.0.0.0 +usr/lib/libartscbackend.so.0 +usr/lib/libartscbackend.so.0.0.0 +usr/lib/libartsdsp.so.0 +usr/lib/libartsdsp.so.0.0.0 +usr/lib/libartsdsp_st.so.0 +usr/lib/libartsdsp_st.so.0.0.0 +usr/lib/libartsflow.so.1 +usr/lib/libartsflow.so.1.0.0 +usr/lib/libartsflow_idl.so.1 +usr/lib/libartsflow_idl.so.1.0.0 +usr/lib/libartsgslplayobject.so.0 +usr/lib/libartsgslplayobject.so.0.0.0 +usr/lib/libartswavplayobject.so.0 +usr/lib/libartswavplayobject.so.0.0.0 +usr/lib/libgmcop.so.1 +usr/lib/libgmcop.so.1.0.0 +usr/lib/libkmedia2.so.1 +usr/lib/libkmedia2.so.1.0.0 +usr/lib/libkmedia2_idl.so.1 +usr/lib/libkmedia2_idl.so.1.0.0 +usr/lib/libmcop.so.1 +usr/lib/libmcop.so.1.0.0 +usr/lib/libmcop_mt.so.1 +usr/lib/libmcop_mt.so.1.0.0 +usr/lib/libqtmcop.so.1 +usr/lib/libqtmcop.so.1.0.0 +usr/lib/libsoundserver_idl.so.1 +usr/lib/libsoundserver_idl.so.1.0.0 +usr/lib/libx11globalcomm.so.1 +usr/lib/libx11globalcomm.so.1.0.0 +usr/lib/mcop/Arts/DataHandlePlay.mcopclass +usr/lib/mcop/Arts/FileInputStream.mcopclass +usr/lib/mcop/Arts/GSLPlayObject.mcopclass +usr/lib/mcop/Arts/Synth_ADD.mcopclass +usr/lib/mcop/Arts/Synth_AMAN_PLAY.mcopclass +usr/lib/mcop/Arts/Synth_AMAN_RECORD.mcopclass +usr/lib/mcop/Arts/Synth_BUS_DOWNLINK.mcopclass +usr/lib/mcop/Arts/Synth_BUS_UPLINK.mcopclass +usr/lib/mcop/Arts/Synth_FREQUENCY.mcopclass +usr/lib/mcop/Arts/Synth_MUL.mcopclass +usr/lib/mcop/Arts/Synth_MULTI_ADD.mcopclass +usr/lib/mcop/Arts/Synth_PLAY.mcopclass +usr/lib/mcop/Arts/Synth_PLAY_WAV.mcopclass +usr/lib/mcop/Arts/Synth_RECORD.mcopclass +usr/lib/mcop/Arts/Synth_WAVE_SIN.mcopclass +usr/lib/mcop/Arts/WavPlayObject.mcopclass +usr/lib/mcop/Arts/WaveDataHandle.mcopclass +usr/lib/mcop/Arts/X11GlobalComm.mcopclass +usr/lib/mcop/artsflow.mcopclass +usr/lib/mcop/artsflow.mcoptype +usr/lib/mcop/kmedia2.mcopclass +usr/lib/mcop/kmedia2.mcoptype +usr/lib/mcop/soundserver.mcopclass +usr/lib/mcop/soundserver.mcoptype +usr/lib/mcop/x11globalcomm.mcopclass +usr/lib/mcop/x11globalcomm.mcoptype usr/lib64/libartsc.so.0 usr/lib64/libartsc.so.0.0.0 usr/lib64/libartscbackend.so.0 usr/lib64/libartscbackend.so.0.0.0 usr/lib64/libartsdsp.so.0 usr/lib64/libartsdsp.so.0.0.0 usr/lib64/libartsdsp_st.so.0 usr/lib64/libartsdsp_st.so.0.0.0 usr/lib64/libartsflow.so.1 usr/lib64/libartsflow.so.1.0.0 usr/lib64/libartsflow_idl.so.1 usr/lib64/libartsflow_idl.so.1.0.0 usr/lib64/libartsgslplayobject.so.0 usr/lib64/libartsgslplayobject.so.0.0.0 usr/lib64/libartswavplayobject.so.0 usr/lib64/libartswavplayobject.so.0.0.0 usr/lib64/libgmcop.so.1 usr/lib64/libgmcop.so.1.0.0 usr/lib64/libkmedia2.so.1 usr/lib64/libkmedia2.so.1.0.0 usr/lib64/libkmedia2_idl.so.1 usr/lib64/libkmedia2_idl.so.1.0.0 usr/lib64/libmcop.so.1 usr/lib64/libmcop.so.1.0.0 usr/lib64/libmcop_mt.so.1 usr/lib64/libmcop_mt.so.1.0.0 usr/lib64/libqtmcop.so.1 usr/lib64/libqtmcop.so.1.0.0 usr/lib64/libsoundserver_idl.so.1 usr/lib64/libsoundserver_idl.so.1.0.0 usr/lib64/libx11globalcomm.so.1 usr/lib64/libx11globalcomm.so.1.0.0 usr/lib64/mcop/Arts/DataHandlePlay.mcopclass usr/lib64/mcop/Arts/FileInputStream.mcopclass usr/lib64/mcop/Arts/GSLPlayObject.mcopclass usr/lib64/mcop/Arts/Synth_ADD.mcopclass usr/lib64/mcop/Arts/Synth_AMAN_PLAY.mcopclass usr/lib64/mcop/Arts/Synth_AMAN_RECORD.mcopclass usr/lib64/mcop/Arts/Synth_BUS_DOWNLINK.mcopclass usr/lib64/mcop/Arts/Synth_BUS_UPLINK.mcopclass usr/lib64/mcop/Arts/Synth_FREQUENCY.mcopclass usr/lib64/mcop/Arts/Synth_MUL.mcopclass usr/lib64/mcop/Arts/Synth_MULTI_ADD.mcopclass usr/lib64/mcop/Arts/Synth_PLAY.mcopclass usr/lib64/mcop/Arts/Synth_PLAY_WAV.mcopclass usr/lib64/mcop/Arts/Synth_RECORD.mcopclass usr/lib64/mcop/Arts/Synth_WAVE_SIN.mcopclass usr/lib64/mcop/Arts/WavPlayObject.mcopclass usr/lib64/mcop/Arts/WaveDataHandle.mcopclass usr/lib64/mcop/Arts/X11GlobalComm.mcopclass usr/lib64/mcop/artsflow.mcopclass usr/lib64/mcop/artsflow.mcoptype usr/lib64/mcop/kmedia2.mcopclass usr/lib64/mcop/kmedia2.mcoptype usr/lib64/mcop/soundserver.mcopclass usr/lib64/mcop/soundserver.mcoptype usr/lib64/mcop/x11globalcomm.mcopclass usr/lib64/mcop/x11globalcomm.mcoptype usr/share/doc/arts-1.5.10/COPYING.LIB Property changes on: head/audio/linux-c6-arts/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/audio/linux-c6-esound/distinfo.x86_64 =================================================================== --- head/audio/linux-c6-esound/distinfo.x86_64 (revision 413167) +++ head/audio/linux-c6-esound/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/esound-libs-0.2.41-3.1.el6.x86_64.rpm) = 203d1e83ab2c53554ba054c7b763fad55e4e32aa87763a0bef225c369f698038 SIZE (rpm/x86_64/centos/6.7/esound-libs-0.2.41-3.1.el6.x86_64.rpm) = 75984 +SHA256 (rpm/x86_64/centos/6.7/esound-libs-0.2.41-3.1.el6.i686.rpm) = 01deb1ca2dbcdcf6738b7c6399b6328393c70df5d7107a4b89b8630163089835 +SIZE (rpm/x86_64/centos/6.7/esound-libs-0.2.41-3.1.el6.i686.rpm) = 75756 SHA256 (rpm/x86_64/centos/6.7/esound-0.2.41-3.1.el6.src.rpm) = 764e4f001f96f71dd6fdcc5ad7dafd990ea734152aee7c6f2293503d8a8f51b4 SIZE (rpm/x86_64/centos/6.7/esound-0.2.41-3.1.el6.src.rpm) = 412396 Index: head/audio/linux-c6-esound/pkg-plist.x86_64 =================================================================== --- head/audio/linux-c6-esound/pkg-plist.x86_64 (revision 413167) +++ head/audio/linux-c6-esound/pkg-plist.x86_64 (revision 413168) @@ -1,4 +1,8 @@ +usr/lib/libesd.so.0 +usr/lib/libesd.so.0.2.39 +usr/lib/libesddsp.so.0 +usr/lib/libesddsp.so.0.2.39 usr/lib64/libesd.so.0 usr/lib64/libesd.so.0.2.39 usr/lib64/libesddsp.so.0 usr/lib64/libesddsp.so.0.2.39 Property changes on: head/audio/linux-c6-esound/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/audio/linux-c6-flac/distinfo.x86_64 =================================================================== --- head/audio/linux-c6-flac/distinfo.x86_64 (revision 413167) +++ head/audio/linux-c6-flac/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/flac-1.2.1-7.el6_6.x86_64.rpm) = 7211ff37e92c809f2d12ce6ea81059087df14fdfd2f59c2eba810d7b47112767 SIZE (rpm/x86_64/centos/6.7/flac-1.2.1-7.el6_6.x86_64.rpm) = 248252 +SHA256 (rpm/x86_64/centos/6.7/flac-1.2.1-7.el6_6.i686.rpm) = 205a76001ac677e76ca9455fdebf2ddcdaaaf9cff8523651db23a8c1e444d03e +SIZE (rpm/x86_64/centos/6.7/flac-1.2.1-7.el6_6.i686.rpm) = 259432 SHA256 (rpm/x86_64/centos/6.7/flac-1.2.1-7.el6_6.src.rpm) = 6c5a6bf61baa48c63f2f529d836888f7b5b2efce964dd212bde4bb1cd74d9282 SIZE (rpm/x86_64/centos/6.7/flac-1.2.1-7.el6_6.src.rpm) = 2016484 Index: head/audio/linux-c6-flac/pkg-plist.x86_64 =================================================================== --- head/audio/linux-c6-flac/pkg-plist.x86_64 (revision 413167) +++ head/audio/linux-c6-flac/pkg-plist.x86_64 (revision 413168) @@ -1,14 +1,18 @@ usr/bin/flac usr/bin/metaflac +usr/lib/libFLAC++.so.6 +usr/lib/libFLAC++.so.6.2.0 +usr/lib/libFLAC.so.8 +usr/lib/libFLAC.so.8.2.0 usr/lib64/libFLAC++.so.6 usr/lib64/libFLAC++.so.6.2.0 usr/lib64/libFLAC.so.8 usr/lib64/libFLAC.so.8.2.0 %%PORTDOCS%%usr/%%DOCSDIR%%-1.2.1/AUTHORS %%PORTDOCS%%usr/%%DOCSDIR%%-1.2.1/COPYING.FDL %%PORTDOCS%%usr/%%DOCSDIR%%-1.2.1/COPYING.GPL %%PORTDOCS%%usr/%%DOCSDIR%%-1.2.1/COPYING.LGPL %%PORTDOCS%%usr/%%DOCSDIR%%-1.2.1/COPYING.Xiph %%PORTDOCS%%usr/%%DOCSDIR%%-1.2.1/README usr/share/man/man1/flac.1.gz usr/share/man/man1/metaflac.1.gz Property changes on: head/audio/linux-c6-flac/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/audio/linux-c6-libaudiofile/distinfo.x86_64 =================================================================== --- head/audio/linux-c6-libaudiofile/distinfo.x86_64 (revision 413167) +++ head/audio/linux-c6-libaudiofile/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/audiofile-0.2.6-11.1.el6.x86_64.rpm) = 528b304107d7004939cbb7060151091b81eb4696111f0510418e8444a707d89d SIZE (rpm/x86_64/centos/6.7/audiofile-0.2.6-11.1.el6.x86_64.rpm) = 97244 +SHA256 (rpm/x86_64/centos/6.7/audiofile-0.2.6-11.1.el6.i686.rpm) = 0c69612801fba085f31d4efb86516249349ef468629af48497de3480ed02394c +SIZE (rpm/x86_64/centos/6.7/audiofile-0.2.6-11.1.el6.i686.rpm) = 98100 SHA256 (rpm/x86_64/centos/6.7/audiofile-0.2.6-11.1.el6.src.rpm) = fc01779d488a6430cfe2c437d996cfd42025a1864f2b15bd241325ecafc05f5b SIZE (rpm/x86_64/centos/6.7/audiofile-0.2.6-11.1.el6.src.rpm) = 291993 Index: head/audio/linux-c6-libaudiofile/pkg-plist.x86_64 =================================================================== --- head/audio/linux-c6-libaudiofile/pkg-plist.x86_64 (revision 413167) +++ head/audio/linux-c6-libaudiofile/pkg-plist.x86_64 (revision 413168) @@ -1,23 +1,25 @@ usr/bin/sfconvert usr/bin/sfinfo +usr/lib/libaudiofile.so.0 +usr/lib/libaudiofile.so.0.0.2 usr/lib64/libaudiofile.so.0 usr/lib64/libaudiofile.so.0.0.2 usr/share/doc/audiofile-0.2.6/COPYING usr/share/doc/audiofile-0.2.6/ChangeLog usr/share/doc/audiofile-0.2.6/README usr/share/doc/audiofile-0.2.6/TODO usr/share/doc/audiofile-0.2.6/docs/afCloseFile usr/share/doc/audiofile-0.2.6/docs/afGetFrameSize usr/share/doc/audiofile-0.2.6/docs/afGetTrackBytes usr/share/doc/audiofile-0.2.6/docs/afIntro usr/share/doc/audiofile-0.2.6/docs/afNewFileSetup usr/share/doc/audiofile-0.2.6/docs/afOpenFile usr/share/doc/audiofile-0.2.6/docs/afQuery usr/share/doc/audiofile-0.2.6/docs/afReadFrames usr/share/doc/audiofile-0.2.6/docs/afReadMisc usr/share/doc/audiofile-0.2.6/docs/afSeekFrame usr/share/doc/audiofile-0.2.6/docs/afSetErrorHandler usr/share/doc/audiofile-0.2.6/docs/afSetVirtualByteOrder usr/share/doc/audiofile-0.2.6/docs/afWriteFrames usr/share/doc/audiofile-0.2.6/docs/sfconvert usr/share/doc/audiofile-0.2.6/docs/sfinfo Property changes on: head/audio/linux-c6-libaudiofile/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/audio/linux-c6-libogg/distinfo.x86_64 =================================================================== --- head/audio/linux-c6-libogg/distinfo.x86_64 (revision 413167) +++ head/audio/linux-c6-libogg/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/libogg-1.1.4-2.1.el6.x86_64.rpm) = 065a86824f6d88d6f2fbba456cdbaebd458869232a8d6f4c1249a7da81a58a82 SIZE (rpm/x86_64/centos/6.7/libogg-1.1.4-2.1.el6.x86_64.rpm) = 21392 +SHA256 (rpm/x86_64/centos/6.7/libogg-1.1.4-2.1.el6.i686.rpm) = cb9c44995ebd89d5063bb9c91cf64fdae911e1350c412c99019d76ca7e9f70ab +SIZE (rpm/x86_64/centos/6.7/libogg-1.1.4-2.1.el6.i686.rpm) = 22172 SHA256 (rpm/x86_64/centos/6.7/libogg-1.1.4-2.1.el6.src.rpm) = e3052e1e020779e92aa5a37d453de207071100bde1e50cac046ee1dc9fd535a2 SIZE (rpm/x86_64/centos/6.7/libogg-1.1.4-2.1.el6.src.rpm) = 447558 Index: head/audio/linux-c6-libogg/pkg-plist.x86_64 =================================================================== --- head/audio/linux-c6-libogg/pkg-plist.x86_64 (revision 413167) +++ head/audio/linux-c6-libogg/pkg-plist.x86_64 (revision 413168) @@ -1,2 +1,4 @@ +usr/lib/libogg.so.0 +usr/lib/libogg.so.0.6.0 usr/lib64/libogg.so.0 usr/lib64/libogg.so.0.6.0 Property changes on: head/audio/linux-c6-libogg/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/audio/linux-c6-libsndfile/distinfo.x86_64 =================================================================== --- head/audio/linux-c6-libsndfile/distinfo.x86_64 (revision 413167) +++ head/audio/linux-c6-libsndfile/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/libsndfile-1.0.20-5.el6.x86_64.rpm) = 46bc5182db51d1fb38acfe3e4b0404371e13c7ddda0dbb2559cfb03d0295ede4 SIZE (rpm/x86_64/centos/6.7/libsndfile-1.0.20-5.el6.x86_64.rpm) = 238272 +SHA256 (rpm/x86_64/centos/6.7/libsndfile-1.0.20-5.el6.i686.rpm) = 70068f93a67f926518cf850c8fc082ae3fb82bddcf080f28fcabe412b5f47aac +SIZE (rpm/x86_64/centos/6.7/libsndfile-1.0.20-5.el6.i686.rpm) = 250528 SHA256 (rpm/x86_64/centos/6.7/libsndfile-1.0.20-5.el6.src.rpm) = 2c464568eab538961923c232e9291723e85309f019648b3228b105ce3a373833 SIZE (rpm/x86_64/centos/6.7/libsndfile-1.0.20-5.el6.src.rpm) = 935996 Index: head/audio/linux-c6-libsndfile/pkg-plist.x86_64 =================================================================== --- head/audio/linux-c6-libsndfile/pkg-plist.x86_64 (revision 413167) +++ head/audio/linux-c6-libsndfile/pkg-plist.x86_64 (revision 413168) @@ -1,17 +1,19 @@ usr/bin/sndfile-cmp usr/bin/sndfile-convert usr/bin/sndfile-info usr/bin/sndfile-metadata-get usr/bin/sndfile-metadata-set usr/bin/sndfile-play usr/bin/sndfile-regtest +usr/lib/libsndfile.so.1 +usr/lib/libsndfile.so.1.0.20 usr/lib64/libsndfile.so.1 usr/lib64/libsndfile.so.1.0.20 %%PORTDOCS%%usr/%%DOCSDIR%%-1.0.20/AUTHORS %%PORTDOCS%%usr/%%DOCSDIR%%-1.0.20/COPYING %%PORTDOCS%%usr/%%DOCSDIR%%-1.0.20/ChangeLog %%PORTDOCS%%usr/%%DOCSDIR%%-1.0.20/NEWS %%PORTDOCS%%usr/%%DOCSDIR%%-1.0.20/README usr/share/man/man1/sndfile-convert.1.gz usr/share/man/man1/sndfile-info.1.gz usr/share/man/man1/sndfile-play.1.gz Property changes on: head/audio/linux-c6-libsndfile/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/audio/linux-c6-libvorbis/distinfo.x86_64 =================================================================== --- head/audio/linux-c6-libvorbis/distinfo.x86_64 (revision 413167) +++ head/audio/linux-c6-libvorbis/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/libvorbis-1.2.3-4.el6_2.1.x86_64.rpm) = da803914d66eca64ef7a9dd69cfcf4a0afb3da2d781547fbf4a663f06c0e4431 SIZE (rpm/x86_64/centos/6.7/libvorbis-1.2.3-4.el6_2.1.x86_64.rpm) = 171824 +SHA256 (rpm/x86_64/centos/6.7/libvorbis-1.2.3-4.el6_2.1.i686.rpm) = ffd0931ac246c926bb29585865f972e262460ac75edeccd35e59bdc4bd6e4e15 +SIZE (rpm/x86_64/centos/6.7/libvorbis-1.2.3-4.el6_2.1.i686.rpm) = 160680 SHA256 (rpm/x86_64/centos/6.7/libvorbis-1.2.3-4.el6_2.1.src.rpm) = 8fa60e212c3ec73da945e31723866426421e1ce376a3bd7c0550719ea489fa57 SIZE (rpm/x86_64/centos/6.7/libvorbis-1.2.3-4.el6_2.1.src.rpm) = 1207467 Index: head/audio/linux-c6-libvorbis/pkg-plist.x86_64 =================================================================== --- head/audio/linux-c6-libvorbis/pkg-plist.x86_64 (revision 413167) +++ head/audio/linux-c6-libvorbis/pkg-plist.x86_64 (revision 413168) @@ -1,6 +1,12 @@ +usr/lib/libvorbis.so.0 +usr/lib/libvorbis.so.0.4.3 +usr/lib/libvorbisenc.so.2 +usr/lib/libvorbisenc.so.2.0.6 +usr/lib/libvorbisfile.so.3 +usr/lib/libvorbisfile.so.3.3.2 usr/lib64/libvorbis.so.0 usr/lib64/libvorbis.so.0.4.3 usr/lib64/libvorbisenc.so.2 usr/lib64/libvorbisenc.so.2.0.6 usr/lib64/libvorbisfile.so.3 usr/lib64/libvorbisfile.so.3.3.2 Property changes on: head/audio/linux-c6-libvorbis/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/audio/linux-c6-mikmod/distinfo.x86_64 =================================================================== --- head/audio/linux-c6-mikmod/distinfo.x86_64 (revision 413167) +++ head/audio/linux-c6-mikmod/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/libmikmod-3.2.0-10.beta2.el6.x86_64.rpm) = d567bd9b175d76f7b468c8459082dfcdef2eba020ab44a597c614d9da6a0ed41 SIZE (rpm/x86_64/centos/6.7/libmikmod-3.2.0-10.beta2.el6.x86_64.rpm) = 164048 +SHA256 (rpm/x86_64/centos/6.7/libmikmod-3.2.0-10.beta2.el6.i686.rpm) = b8092168a549a2966bdd9a388d13560e9af66deccd7e65b26fa487413e163382 +SIZE (rpm/x86_64/centos/6.7/libmikmod-3.2.0-10.beta2.el6.i686.rpm) = 163544 SHA256 (rpm/x86_64/centos/6.7/libmikmod-3.2.0-10.beta2.el6.src.rpm) = 61c1ccfe2d9afd2b942fe7ffa2a36d0c8b5a713bd71e8c578df55ef3a053e00e SIZE (rpm/x86_64/centos/6.7/libmikmod-3.2.0-10.beta2.el6.src.rpm) = 559890 Index: head/audio/linux-c6-mikmod/pkg-plist.x86_64 =================================================================== --- head/audio/linux-c6-mikmod/pkg-plist.x86_64 (revision 413167) +++ head/audio/linux-c6-mikmod/pkg-plist.x86_64 (revision 413168) @@ -1,2 +1,4 @@ +usr/lib/libmikmod.so.3 +usr/lib/libmikmod.so.3.0.0 usr/lib64/libmikmod.so.3 usr/lib64/libmikmod.so.3.0.0 Property changes on: head/audio/linux-c6-mikmod/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/audio/linux-c6-nas-libs/distinfo.x86_64 =================================================================== --- head/audio/linux-c6-nas-libs/distinfo.x86_64 (revision 413167) +++ head/audio/linux-c6-nas-libs/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/nas-1.9.1-7.el6.x86_64.rpm) = 55fdc433567495bbab33b880a61cd8744057f54e993995abed8846382b5314af SIZE (rpm/x86_64/centos/6.7/nas-1.9.1-7.el6.x86_64.rpm) = 333456 +SHA256 (rpm/x86_64/centos/6.7/nas-1.9.1-7.el6.i686.rpm) = f9830ef307755aa66c0b8356912c2591c9b00be426dff36c988e0d7e58a126f9 +SIZE (rpm/x86_64/centos/6.7/nas-1.9.1-7.el6.i686.rpm) = 339968 SHA256 (rpm/x86_64/centos/6.7/nas-1.9.1-7.el6.src.rpm) = 051cc5ab26e5296ecb22044daaf2781f2c7124cb6b3a18fe73b7e1f795749747 SIZE (rpm/x86_64/centos/6.7/nas-1.9.1-7.el6.src.rpm) = 1442022 Index: head/audio/linux-c6-nas-libs/pkg-plist.x86_64 =================================================================== --- head/audio/linux-c6-nas-libs/pkg-plist.x86_64 (revision 413167) +++ head/audio/linux-c6-nas-libs/pkg-plist.x86_64 (revision 413168) @@ -1,28 +1,31 @@ etc/nas/nasd.conf +usr/lib/X11/AuErrorDB +usr/lib/libaudio.so.2 +usr/lib/libaudio.so.2.4 usr/lib64/X11/AuErrorDB usr/lib64/libaudio.so.2 usr/lib64/libaudio.so.2.4 %%PORTDOCS%%%%DOCSDIR%%/FAQ %%PORTDOCS%%%%DOCSDIR%%/HISTORY %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/TODO usr/share/man/man1/auconvert.1x.gz usr/share/man/man1/auctl.1x.gz usr/share/man/man1/audemo.1x.gz usr/share/man/man1/audial.1x.gz usr/share/man/man1/auedit.1x.gz usr/share/man/man1/auinfo.1x.gz usr/share/man/man1/aupanel.1x.gz usr/share/man/man1/auphone.1x.gz usr/share/man/man1/auplay.1x.gz usr/share/man/man1/aurecord.1x.gz usr/share/man/man1/auscope.1x.gz usr/share/man/man1/autool.1x.gz usr/share/man/man1/auwave.1x.gz usr/share/man/man1/checkmail.1x.gz usr/share/man/man1/issndfile.1x.gz usr/share/man/man1/nas.1x.gz usr/share/man/man1/nasd.1x.gz usr/share/man/man1/playbucket.1x.gz usr/share/man/man1/soundtoh.1x.gz usr/share/man/man5/nasd.conf.5x.gz Property changes on: head/audio/linux-c6-nas-libs/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/audio/linux-c6-openal-soft/distinfo.x86_64 =================================================================== --- head/audio/linux-c6-openal-soft/distinfo.x86_64 (revision 413167) +++ head/audio/linux-c6-openal-soft/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/openal-soft-1.12.854-1.el6.x86_64.rpm) = 607343af6d2782d272f70ea51293b0e5167a690248790fb9e74bcdf7545bdca7 SIZE (rpm/x86_64/centos/6.7/openal-soft-1.12.854-1.el6.x86_64.rpm) = 131664 +SHA256 (rpm/x86_64/centos/6.7/openal-soft-1.12.854-1.el6.i686.rpm) = fc2dd7f0c3e49be942e38bd73a73e32ab950c1ca2390ccf9f208de561d6b3e5c +SIZE (rpm/x86_64/centos/6.7/openal-soft-1.12.854-1.el6.i686.rpm) = 115708 SHA256 (rpm/x86_64/centos/6.7/openal-soft-1.12.854-1.el6.src.rpm) = efdf8696cd2d3a9bd035815adbde6607c97ea48b91de06aa2bcec6b9bbd10ba7 SIZE (rpm/x86_64/centos/6.7/openal-soft-1.12.854-1.el6.src.rpm) = 113553 Index: head/audio/linux-c6-openal-soft/pkg-plist.x86_64 =================================================================== --- head/audio/linux-c6-openal-soft/pkg-plist.x86_64 (revision 413167) +++ head/audio/linux-c6-openal-soft/pkg-plist.x86_64 (revision 413168) @@ -1,4 +1,6 @@ etc/openal/alsoft.conf usr/bin/openal-info +usr/lib/libopenal.so.1 +usr/lib/libopenal.so.1.12.854 usr/lib64/libopenal.so.1 usr/lib64/libopenal.so.1.12.854 Property changes on: head/audio/linux-c6-openal-soft/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/audio/linux-c6-pulseaudio-libs/Makefile =================================================================== --- head/audio/linux-c6-pulseaudio-libs/Makefile (revision 413167) +++ head/audio/linux-c6-pulseaudio-libs/Makefile (revision 413168) @@ -1,30 +1,31 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= pulseaudio-libs PORTVERSION= 0.9.21 PORTREVISION= 3 CATEGORIES= audio linux -DISTFILES= ${PORTNAME}-${PORTVERSION}-${RPMVERSION}${EXTRACT_SUFX} \ +DISTFILES:= # hack +LIB_DISTFILES= ${PORTNAME}-${PORTVERSION}-${RPMVERSION}${EXTRACT_SUFX} \ ${PORTNAME}-glib2-${PORTVERSION}-${RPMVERSION}${EXTRACT_SUFX} MAINTAINER= emulation@FreeBSD.org COMMENT= Libraries for PulseAudio clients (Linux CentOS ${LINUX_DIST_VER}) USE_LINUX= c6 USE_LINUX_RPM= yes USE_LINUX_APPS= dbuslibs libasyncns libsndfile tcp_wrappers-libs xorglibs RPMVERSION= 21.el6 USE_LDCONFIG= yes DOCSDIR= ${PREFIX}/usr/share/doc/pulseaudio-${PORTVERSION} DESCR= ${.CURDIR}/../pulseaudio/pkg-descr SRC_DISTFILES= pulseaudio-${PORTVERSION}-${RPMVERSION}${SRC_SUFX}:SOURCE post-extract: @${RM} -r ${WRKSRC}/usr/bin ${WRKSRC}/etc/rc.d ${WRKSRC}/etc/sysconfig .include Index: head/audio/linux-c6-pulseaudio-libs/distinfo.x86_64 =================================================================== --- head/audio/linux-c6-pulseaudio-libs/distinfo.x86_64 (revision 413167) +++ head/audio/linux-c6-pulseaudio-libs/distinfo.x86_64 (revision 413168) @@ -1,6 +1,10 @@ SHA256 (rpm/x86_64/centos/6.7/pulseaudio-libs-0.9.21-21.el6.x86_64.rpm) = a5ec585204e0fe6ae10b05bbadf820bc657136c800bffcdfee4ee38b25d3e99a SIZE (rpm/x86_64/centos/6.7/pulseaudio-libs-0.9.21-21.el6.x86_64.rpm) = 473448 SHA256 (rpm/x86_64/centos/6.7/pulseaudio-libs-glib2-0.9.21-21.el6.x86_64.rpm) = ce2f148217e9b43203d84e94a81f2c5dbc23c772a75b6bc4db2e6161b7d95559 SIZE (rpm/x86_64/centos/6.7/pulseaudio-libs-glib2-0.9.21-21.el6.x86_64.rpm) = 24068 +SHA256 (rpm/x86_64/centos/6.7/pulseaudio-libs-0.9.21-21.el6.i686.rpm) = 606f945f55cf25d4ad1560ea7adb1bf86a0ce0eb58df63cd8ecf87b32f1d4a3c +SIZE (rpm/x86_64/centos/6.7/pulseaudio-libs-0.9.21-21.el6.i686.rpm) = 464948 +SHA256 (rpm/x86_64/centos/6.7/pulseaudio-libs-glib2-0.9.21-21.el6.i686.rpm) = b546f6ad09df7f6add6f0d022132c59d3d94edeb70655caa36d221c4d3cc2eb7 +SIZE (rpm/x86_64/centos/6.7/pulseaudio-libs-glib2-0.9.21-21.el6.i686.rpm) = 23924 SHA256 (rpm/x86_64/centos/6.7/pulseaudio-0.9.21-21.el6.src.rpm) = 8528b5febbcff3b6f345d9b4e7d2e375609bbc392c2b4ed583a242502266f54c SIZE (rpm/x86_64/centos/6.7/pulseaudio-0.9.21-21.el6.src.rpm) = 2385218 Index: head/audio/linux-c6-pulseaudio-libs/pkg-plist.x86_64 =================================================================== --- head/audio/linux-c6-pulseaudio-libs/pkg-plist.x86_64 (revision 413167) +++ head/audio/linux-c6-pulseaudio-libs/pkg-plist.x86_64 (revision 413168) @@ -1,46 +1,53 @@ etc/pulse/client.conf +usr/lib/libpulse-simple.so.0 +usr/lib/libpulse-simple.so.0.0.3 +usr/lib/libpulse.so.0 +usr/lib/libpulse.so.0.12.2 +usr/lib/libpulsecommon-0.9.21.so +usr/lib/libpulse-mainloop-glib.so.0 +usr/lib/libpulse-mainloop-glib.so.0.0.4 usr/lib64/libpulse-simple.so.0 usr/lib64/libpulse-simple.so.0.0.3 usr/lib64/libpulse.so.0 usr/lib64/libpulse.so.0.12.2 usr/lib64/libpulsecommon-0.9.21.so usr/lib64/libpulse-mainloop-glib.so.0 usr/lib64/libpulse-mainloop-glib.so.0.0.4 usr/share/doc/pulseaudio-libs-0.9.21/GPL usr/share/doc/pulseaudio-libs-0.9.21/LGPL usr/share/doc/pulseaudio-libs-0.9.21/LICENSE usr/share/doc/pulseaudio-libs-0.9.21/README usr/share/locale/as/LC_MESSAGES/pulseaudio.mo usr/share/locale/bn_IN/LC_MESSAGES/pulseaudio.mo usr/share/locale/ca/LC_MESSAGES/pulseaudio.mo usr/share/locale/cs/LC_MESSAGES/pulseaudio.mo usr/share/locale/de/LC_MESSAGES/pulseaudio.mo usr/share/locale/de_CH/LC_MESSAGES/pulseaudio.mo usr/share/locale/el/LC_MESSAGES/pulseaudio.mo usr/share/locale/es/LC_MESSAGES/pulseaudio.mo usr/share/locale/fi/LC_MESSAGES/pulseaudio.mo usr/share/locale/fr/LC_MESSAGES/pulseaudio.mo usr/share/locale/gu/LC_MESSAGES/pulseaudio.mo usr/share/locale/hi/LC_MESSAGES/pulseaudio.mo usr/share/locale/hu/LC_MESSAGES/pulseaudio.mo usr/share/locale/it/LC_MESSAGES/pulseaudio.mo usr/share/locale/ja/LC_MESSAGES/pulseaudio.mo usr/share/locale/kn/LC_MESSAGES/pulseaudio.mo usr/share/locale/ko/LC_MESSAGES/pulseaudio.mo usr/share/locale/ml/LC_MESSAGES/pulseaudio.mo usr/share/locale/mr/LC_MESSAGES/pulseaudio.mo usr/share/locale/nl/LC_MESSAGES/pulseaudio.mo usr/share/locale/or/LC_MESSAGES/pulseaudio.mo usr/share/locale/pa/LC_MESSAGES/pulseaudio.mo usr/share/locale/pl/LC_MESSAGES/pulseaudio.mo usr/share/locale/pt/LC_MESSAGES/pulseaudio.mo usr/share/locale/pt_BR/LC_MESSAGES/pulseaudio.mo usr/share/locale/ru/LC_MESSAGES/pulseaudio.mo usr/share/locale/sr/LC_MESSAGES/pulseaudio.mo usr/share/locale/sr@latin/LC_MESSAGES/pulseaudio.mo usr/share/locale/sv/LC_MESSAGES/pulseaudio.mo usr/share/locale/ta/LC_MESSAGES/pulseaudio.mo usr/share/locale/te/LC_MESSAGES/pulseaudio.mo usr/share/locale/uk/LC_MESSAGES/pulseaudio.mo usr/share/locale/zh_CN/LC_MESSAGES/pulseaudio.mo usr/share/locale/zh_TW/LC_MESSAGES/pulseaudio.mo Index: head/audio/linux-c6-pulseaudio-utils/distinfo.x86_64 =================================================================== --- head/audio/linux-c6-pulseaudio-utils/distinfo.x86_64 (revision 413167) +++ head/audio/linux-c6-pulseaudio-utils/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/pulseaudio-utils-0.9.21-21.el6.x86_64.rpm) = 449fdb518b34061ab3933efb484a859843fbefe5b1368b0adf241de312cac66b SIZE (rpm/x86_64/centos/6.7/pulseaudio-utils-0.9.21-21.el6.x86_64.rpm) = 72740 +SHA256 (rpm/x86_64/centos/6.7/pulseaudio-utils-0.9.21-21.el6.i686.rpm) = b3badf869a14b2992de00f4c32910af0cbda62e17e74d60b604fb6597b93c25a +SIZE (rpm/x86_64/centos/6.7/pulseaudio-utils-0.9.21-21.el6.i686.rpm) = 72156 SHA256 (rpm/x86_64/centos/6.7/pulseaudio-0.9.21-21.el6.src.rpm) = 8528b5febbcff3b6f345d9b4e7d2e375609bbc392c2b4ed583a242502266f54c SIZE (rpm/x86_64/centos/6.7/pulseaudio-0.9.21-21.el6.src.rpm) = 2385218 Index: head/audio/linux-c6-pulseaudio-utils/pkg-plist.x86_64 =================================================================== --- head/audio/linux-c6-pulseaudio-utils/pkg-plist.x86_64 (revision 413167) +++ head/audio/linux-c6-pulseaudio-utils/pkg-plist.x86_64 (revision 413168) @@ -1,18 +1,19 @@ usr/bin/pacat usr/bin/pacmd usr/bin/pactl usr/bin/padsp usr/bin/pamon usr/bin/paplay usr/bin/parec usr/bin/parecord usr/bin/pasuspender usr/bin/pax11publish +usr/lib/libpulsedsp.so usr/lib64/libpulsedsp.so usr/share/man/man1/pacat.1.gz usr/share/man/man1/pacmd.1.gz usr/share/man/man1/pactl.1.gz usr/share/man/man1/padsp.1.gz usr/share/man/man1/paplay.1.gz usr/share/man/man1/pasuspender.1.gz usr/share/man/man1/pax11publish.1.gz Property changes on: head/audio/linux-c6-pulseaudio-utils/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/audio/linux-c6-sdl_mixer/distinfo.x86_64 =================================================================== --- head/audio/linux-c6-sdl_mixer/distinfo.x86_64 (revision 413167) +++ head/audio/linux-c6-sdl_mixer/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/SDL_mixer-1.2.12-1.el6.x86_64.rpm) = 83c6869de31f9da391e41b57f91f6f1ed81ed38b3fbd6db819b90a91e2c5bbdb SIZE (rpm/x86_64/centos/6.7/SDL_mixer-1.2.12-1.el6.x86_64.rpm) = 85388 +SHA256 (rpm/x86_64/centos/6.7/SDL_mixer-1.2.12-1.el6.i686.rpm) = fe55d342e9a75f481dbf13e441f6090e078c6022f3493186ee06084672ea3a7c +SIZE (rpm/x86_64/centos/6.7/SDL_mixer-1.2.12-1.el6.i686.rpm) = 85304 SHA256 (rpm/x86_64/centos/6.7/SDL_mixer-1.2.12-1.el6.src.rpm) = 935b0d8e096dd8f9ec746be2a841531161d247da6de7400fa4072ac61d39a140 SIZE (rpm/x86_64/centos/6.7/SDL_mixer-1.2.12-1.el6.src.rpm) = 3700092 Index: head/audio/linux-c6-sdl_mixer/pkg-plist.x86_64 =================================================================== --- head/audio/linux-c6-sdl_mixer/pkg-plist.x86_64 (revision 413167) +++ head/audio/linux-c6-sdl_mixer/pkg-plist.x86_64 (revision 413168) @@ -1,4 +1,6 @@ usr/bin/playmus usr/bin/playwave +usr/lib/libSDL_mixer-1.2.so.0 +usr/lib/libSDL_mixer-1.2.so.0.12.0 usr/lib64/libSDL_mixer-1.2.so.0 usr/lib64/libSDL_mixer-1.2.so.0.12.0 Property changes on: head/audio/linux-c6-sdl_mixer/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/databases/linux-c6-sqlite3/distinfo.x86_64 =================================================================== --- head/databases/linux-c6-sqlite3/distinfo.x86_64 (revision 413167) +++ head/databases/linux-c6-sqlite3/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/sqlite-3.6.20-1.el6_7.2.x86_64.rpm) = 85c33d9453f890eead343eb9a3b9b4c036b8b9edba531ab9356b71b8b00b327d SIZE (rpm/x86_64/centos/6.7/sqlite-3.6.20-1.el6_7.2.x86_64.rpm) = 307360 +SHA256 (rpm/x86_64/centos/6.7/sqlite-3.6.20-1.el6_7.2.i686.rpm) = 6d06ed0adf5e60dadb88da40e062b961cf2661f07f5ec84c5bce5c3a5e7c9ecd +SIZE (rpm/x86_64/centos/6.7/sqlite-3.6.20-1.el6_7.2.i686.rpm) = 313792 SHA256 (rpm/x86_64/centos/6.7/sqlite-3.6.20-1.el6_7.2.src.rpm) = 09b54fd6a222696b67bf4c9cad01ae5f55a3f71b3d63d9f6a9a2842ae47c0fc9 SIZE (rpm/x86_64/centos/6.7/sqlite-3.6.20-1.el6_7.2.src.rpm) = 5327584 Index: head/databases/linux-c6-sqlite3/pkg-plist.x86_64 =================================================================== --- head/databases/linux-c6-sqlite3/pkg-plist.x86_64 (revision 413167) +++ head/databases/linux-c6-sqlite3/pkg-plist.x86_64 (revision 413168) @@ -1,4 +1,6 @@ usr/bin/sqlite3 +usr/lib/libsqlite3.so.0 +usr/lib/libsqlite3.so.0.8.6 usr/lib64/libsqlite3.so.0 usr/lib64/libsqlite3.so.0.8.6 usr/share/man/man1/sqlite3.1.gz Property changes on: head/databases/linux-c6-sqlite3/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/devel/linux-c6-dbus-glib/distinfo.x86_64 =================================================================== --- head/devel/linux-c6-dbus-glib/distinfo.x86_64 (revision 413167) +++ head/devel/linux-c6-dbus-glib/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/dbus-glib-0.86-6.el6.x86_64.rpm) = ac65cfb655e0882ef77326bc1bb9b2eafe8d2c3d945aaa781e9f9ef1ed314a88 SIZE (rpm/x86_64/centos/6.7/dbus-glib-0.86-6.el6.x86_64.rpm) = 173696 +SHA256 (rpm/x86_64/centos/6.7/dbus-glib-0.86-6.el6.i686.rpm) = e1cb0f93ab95f372e8f1db1f5cb478bef50162df83529b30df86d3a2230b15ad +SIZE (rpm/x86_64/centos/6.7/dbus-glib-0.86-6.el6.i686.rpm) = 174260 SHA256 (rpm/x86_64/centos/6.7/dbus-glib-0.86-6.el6.src.rpm) = 64debf22fe3655502f1afa6e27451b0de83a3a8ac922470ce5694087f656c82f SIZE (rpm/x86_64/centos/6.7/dbus-glib-0.86-6.el6.src.rpm) = 717593 Index: head/devel/linux-c6-dbus-glib/pkg-plist.x86_64 =================================================================== --- head/devel/linux-c6-dbus-glib/pkg-plist.x86_64 (revision 413167) +++ head/devel/linux-c6-dbus-glib/pkg-plist.x86_64 (revision 413168) @@ -1,3 +1,5 @@ usr/bin/dbus-binding-tool +usr/lib/libdbus-glib-1.so.2 +usr/lib/libdbus-glib-1.so.2.1.0 usr/lib64/libdbus-glib-1.so.2 usr/lib64/libdbus-glib-1.so.2.1.0 Property changes on: head/devel/linux-c6-dbus-glib/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/devel/linux-c6-dbus-libs/distinfo.x86_64 =================================================================== --- head/devel/linux-c6-dbus-libs/distinfo.x86_64 (revision 413167) +++ head/devel/linux-c6-dbus-libs/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/dbus-libs-1.2.24-8.el6_6.x86_64.rpm) = e412f3b9c5a250d9b08617f967ff5a0b81cddd7dc31c57bd4dc6a8fba2fee7da SIZE (rpm/x86_64/centos/6.7/dbus-libs-1.2.24-8.el6_6.x86_64.rpm) = 129816 +SHA256 (rpm/x86_64/centos/6.7/dbus-libs-1.2.24-8.el6_6.i686.rpm) = 831edc20cf2faf3c49c669de67053534dcd46c21a9320331441bbb5667d952c1 +SIZE (rpm/x86_64/centos/6.7/dbus-libs-1.2.24-8.el6_6.i686.rpm) = 131868 SHA256 (rpm/x86_64/centos/6.7/dbus-1.2.24-8.el6_6.src.rpm) = 97c5927a869793f0edd404c59b0d89d15c2d4db3b466b49ed25f00949b1eca84 SIZE (rpm/x86_64/centos/6.7/dbus-1.2.24-8.el6_6.src.rpm) = 1721586 Index: head/devel/linux-c6-dbus-libs/pkg-plist.x86_64 =================================================================== --- head/devel/linux-c6-dbus-libs/pkg-plist.x86_64 (revision 413167) +++ head/devel/linux-c6-dbus-libs/pkg-plist.x86_64 (revision 413168) @@ -1,2 +1,4 @@ +lib/libdbus-1.so.3 +lib/libdbus-1.so.3.4.0 lib64/libdbus-1.so.3 lib64/libdbus-1.so.3.4.0 Property changes on: head/devel/linux-c6-dbus-libs/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/devel/linux-c6-devtools/Makefile =================================================================== --- head/devel/linux-c6-devtools/Makefile (revision 413167) +++ head/devel/linux-c6-devtools/Makefile (revision 413168) @@ -1,50 +1,55 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= devtools PORTVERSION= 6.7 CATEGORIES= devel MASTER_SITES= CENTOS_LINUX CENTOS_LINUX_UPDATES DISTFILES= binutils-2.20.51.0.2-5.43.el6.${LINUX_RPM_ARCH}.rpm \ - binutils-devel-2.20.51.0.2-5.43.el6.${LINUX_RPM_ARCH}.rpm \ - glibc-devel-2.12-1.166.el6_7.3.${LINUX_RPM_ARCH}.rpm \ glibc-headers-2.12-1.166.el6_7.3.${LINUX_RPM_ARCH}.rpm \ kernel-headers-2.6.32-573.8.1.el6.${LINUX_RPM_ARCH}.rpm \ - libstdc++-devel-4.4.7-16.el6.${LINUX_RPM_ARCH}.rpm \ - libgomp-4.4.7-16.el6.${LINUX_RPM_ARCH}.rpm \ mpfr-2.4.1-6.el6.${LINUX_RPM_ARCH}.rpm \ cpp-4.4.7-16.el6.${LINUX_RPM_ARCH}.rpm \ gcc-4.4.7-16.el6.${LINUX_RPM_ARCH}.rpm \ gcc-c++-4.4.7-16.el6.${LINUX_RPM_ARCH}.rpm \ gcc-gfortran-4.4.7-16.el6.${LINUX_RPM_ARCH}.rpm +LIB_DISTFILES= binutils-devel-2.20.51.0.2-5.43.el6.${LINUX_RPM_ARCH}.rpm \ + glibc-devel-2.12-1.166.el6_7.3.${LINUX_RPM_ARCH}.rpm \ + libstdc++-devel-4.4.7-16.el6.${LINUX_RPM_ARCH}.rpm \ + libgomp-4.4.7-16.el6.${LINUX_RPM_ARCH}.rpm \ + MAINTAINER= emulation@FreeBSD.org COMMENT= Linux compilers and base libraries (CentOS ${LINUX_DIST_VER}) # LICENSE= Various GNU RUN_DEPENDS+= linux-${USE_LINUX}-libgfortran>0:devel/linux-c6-libgfortran ONLY_FOR_ARCHS= i386 amd64 USE_LINUX= c6 USE_LINUX_RPM= yes USE_LDCONFIG= yes PLIST_SUB+= NLS="" SRC_DISTFILES= binutils-2.20.51.0.2-5.43.el6.src.rpm:SOURCE \ glibc-2.12-1.166.el6_7.3.src.rpm:SOURCE \ kernel-2.6.32-573.8.1.el6.src.rpm:SOURCE \ mpfr-2.4.1-6.el6.src.rpm:SOURCE \ gcc-4.4.7-16.el6.src.rpm:SOURCE post-install: . if defined(OVERRIDE_LINUX_BASE_PORT) && ${OVERRIDE_LINUX_BASE_PORT} == "c6_64" ${LN} -sf ${LINUXBASE}/lib64/libgcc_s.so.1 \ ${STAGEDIR}${PREFIX}/usr/lib/gcc/x86_64-redhat-linux/4.4.4/libgcc_s.so + + ${LN} -sf ${LINUXBASE}/lib/libgcc_s.so.1 \ + ${STAGEDIR}${PREFIX}/usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/libgcc_s.so + . else ${LN} -sf ${LINUXBASE}/lib/libgcc_s.so.1 \ ${STAGEDIR}${PREFIX}/usr/lib/gcc/i686-redhat-linux/4.4.4/libgcc_s.so . endif .include Index: head/devel/linux-c6-devtools/distinfo.x86_64 =================================================================== --- head/devel/linux-c6-devtools/distinfo.x86_64 (revision 413167) +++ head/devel/linux-c6-devtools/distinfo.x86_64 (revision 413168) @@ -1,34 +1,42 @@ SHA256 (rpm/x86_64/centos/6.7/binutils-2.20.51.0.2-5.43.el6.x86_64.rpm) = c83e836821a1ab65d4b212a7c0d13ce067739ac6f00ce4cd66b620c85ac5ff0f SIZE (rpm/x86_64/centos/6.7/binutils-2.20.51.0.2-5.43.el6.x86_64.rpm) = 2899148 -SHA256 (rpm/x86_64/centos/6.7/binutils-devel-2.20.51.0.2-5.43.el6.x86_64.rpm) = ad3aaf0e8781349408bb7c0947b092420bf6759b386aecdb86ee7aa95fd1cac6 -SIZE (rpm/x86_64/centos/6.7/binutils-devel-2.20.51.0.2-5.43.el6.x86_64.rpm) = 703328 -SHA256 (rpm/x86_64/centos/6.7/glibc-devel-2.12-1.166.el6_7.3.x86_64.rpm) = 893edb51df79b670c8aaa4f22700c850b16bdafe0dd70125c9e2551b2ceee873 -SIZE (rpm/x86_64/centos/6.7/glibc-devel-2.12-1.166.el6_7.3.x86_64.rpm) = 1009424 SHA256 (rpm/x86_64/centos/6.7/glibc-headers-2.12-1.166.el6_7.3.x86_64.rpm) = 27ddbdd367d041db8ad4385c00e1064ee585eed2d39760917befb4abc732c4b0 SIZE (rpm/x86_64/centos/6.7/glibc-headers-2.12-1.166.el6_7.3.x86_64.rpm) = 629408 SHA256 (rpm/x86_64/centos/6.7/kernel-headers-2.6.32-573.8.1.el6.x86_64.rpm) = 7620087539b341a9b42a3cb5e27368506dee304756012748c417b10989ac7325 SIZE (rpm/x86_64/centos/6.7/kernel-headers-2.6.32-573.8.1.el6.x86_64.rpm) = 4095792 -SHA256 (rpm/x86_64/centos/6.7/libstdc++-devel-4.4.7-16.el6.x86_64.rpm) = ebf585398915525036ad7d1a1186bf7a46edae4e46258661e6d7882c02a38d61 -SIZE (rpm/x86_64/centos/6.7/libstdc++-devel-4.4.7-16.el6.x86_64.rpm) = 1676108 -SHA256 (rpm/x86_64/centos/6.7/libgomp-4.4.7-16.el6.x86_64.rpm) = 3cf7cba15be4449e8d35ab066fbb11951b07d883faf5ea30889e39836c53bd66 -SIZE (rpm/x86_64/centos/6.7/libgomp-4.4.7-16.el6.x86_64.rpm) = 136896 SHA256 (rpm/x86_64/centos/6.7/mpfr-2.4.1-6.el6.x86_64.rpm) = 20d2ce3bc1ea03844a0beb1726b01ef50d8555b3c9facb65264055a634709cf4 SIZE (rpm/x86_64/centos/6.7/mpfr-2.4.1-6.el6.x86_64.rpm) = 160772 SHA256 (rpm/x86_64/centos/6.7/cpp-4.4.7-16.el6.x86_64.rpm) = 214d6f5d94d9782fe205783ded4f13bbe9f278416926bf4553c0116525da0e8c SIZE (rpm/x86_64/centos/6.7/cpp-4.4.7-16.el6.x86_64.rpm) = 3908340 SHA256 (rpm/x86_64/centos/6.7/gcc-4.4.7-16.el6.x86_64.rpm) = 60daf9ea57aa9054404603318959b5a5f2756545818727fcd043984a9c08187d SIZE (rpm/x86_64/centos/6.7/gcc-4.4.7-16.el6.x86_64.rpm) = 10601196 SHA256 (rpm/x86_64/centos/6.7/gcc-c++-4.4.7-16.el6.x86_64.rpm) = c5e6fcd24d57d580d771b5953822abc29e4d713ef2fecb9e6a14fbed68a6ed75 SIZE (rpm/x86_64/centos/6.7/gcc-c++-4.4.7-16.el6.x86_64.rpm) = 4949360 SHA256 (rpm/x86_64/centos/6.7/gcc-gfortran-4.4.7-16.el6.x86_64.rpm) = 07438dfbb13c5ab71ec8152f7fb00d71039ede39697fa531edde090448b26bb0 SIZE (rpm/x86_64/centos/6.7/gcc-gfortran-4.4.7-16.el6.x86_64.rpm) = 4940428 +SHA256 (rpm/x86_64/centos/6.7/binutils-devel-2.20.51.0.2-5.43.el6.x86_64.rpm) = ad3aaf0e8781349408bb7c0947b092420bf6759b386aecdb86ee7aa95fd1cac6 +SIZE (rpm/x86_64/centos/6.7/binutils-devel-2.20.51.0.2-5.43.el6.x86_64.rpm) = 703328 +SHA256 (rpm/x86_64/centos/6.7/glibc-devel-2.12-1.166.el6_7.3.x86_64.rpm) = 893edb51df79b670c8aaa4f22700c850b16bdafe0dd70125c9e2551b2ceee873 +SIZE (rpm/x86_64/centos/6.7/glibc-devel-2.12-1.166.el6_7.3.x86_64.rpm) = 1009424 +SHA256 (rpm/x86_64/centos/6.7/libstdc++-devel-4.4.7-16.el6.x86_64.rpm) = ebf585398915525036ad7d1a1186bf7a46edae4e46258661e6d7882c02a38d61 +SIZE (rpm/x86_64/centos/6.7/libstdc++-devel-4.4.7-16.el6.x86_64.rpm) = 1676108 +SHA256 (rpm/x86_64/centos/6.7/libgomp-4.4.7-16.el6.x86_64.rpm) = 3cf7cba15be4449e8d35ab066fbb11951b07d883faf5ea30889e39836c53bd66 +SIZE (rpm/x86_64/centos/6.7/libgomp-4.4.7-16.el6.x86_64.rpm) = 136896 +SHA256 (rpm/x86_64/centos/6.7/binutils-devel-2.20.51.0.2-5.43.el6.i686.rpm) = 5a7bad510192fb2d7dc7beed0ca3f9367957ee268b5b09a7d3a506f14edf30f3 +SIZE (rpm/x86_64/centos/6.7/binutils-devel-2.20.51.0.2-5.43.el6.i686.rpm) = 745324 +SHA256 (rpm/x86_64/centos/6.7/glibc-devel-2.12-1.166.el6_7.3.i686.rpm) = c592a8d8340b15bb72e122810b006daf4e7f54d85b83daea673b11867756321c +SIZE (rpm/x86_64/centos/6.7/glibc-devel-2.12-1.166.el6_7.3.i686.rpm) = 1009856 +SHA256 (rpm/x86_64/centos/6.7/libstdc++-devel-4.4.7-16.el6.i686.rpm) = 73c906e0dbf8af8c32fc0d4d621eb0df7180d6f1c1bc0d41c4fd1ddf800bc231 +SIZE (rpm/x86_64/centos/6.7/libstdc++-devel-4.4.7-16.el6.i686.rpm) = 1667136 +SHA256 (rpm/x86_64/centos/6.7/libgomp-4.4.7-16.el6.i686.rpm) = 9f87aad056402c8f300bc9b343ec208461bf79af163fb89a8214e843b6249fb8 +SIZE (rpm/x86_64/centos/6.7/libgomp-4.4.7-16.el6.i686.rpm) = 138940 SHA256 (rpm/x86_64/centos/6.7/binutils-2.20.51.0.2-5.43.el6.src.rpm) = 533c32ababcaa168e263c7c62fec3e10a36ea9f9c9f19280be1a82aa18776924 SIZE (rpm/x86_64/centos/6.7/binutils-2.20.51.0.2-5.43.el6.src.rpm) = 16325838 SHA256 (rpm/x86_64/centos/6.7/glibc-2.12-1.166.el6_7.3.src.rpm) = a361834d9e2fc4c175cec86ff0717f51105871316e5aca1ce0923b59be2cd4af SIZE (rpm/x86_64/centos/6.7/glibc-2.12-1.166.el6_7.3.src.rpm) = 16226785 SHA256 (rpm/x86_64/centos/6.7/kernel-2.6.32-573.8.1.el6.src.rpm) = 5459866f5dd62bdee3d90044295063e39da53cda5f53afdaad9b928148d54e5e SIZE (rpm/x86_64/centos/6.7/kernel-2.6.32-573.8.1.el6.src.rpm) = 109539398 SHA256 (rpm/x86_64/centos/6.7/mpfr-2.4.1-6.el6.src.rpm) = 4b5fcd2cf40deb6a791f4fa4e39315e2345001e528c45ed52042e3c4ba467f6c SIZE (rpm/x86_64/centos/6.7/mpfr-2.4.1-6.el6.src.rpm) = 911271 SHA256 (rpm/x86_64/centos/6.7/gcc-4.4.7-16.el6.src.rpm) = eea99c50677354efffd12a70887d6be686ddcfe1f8d59328728683517e511221 SIZE (rpm/x86_64/centos/6.7/gcc-4.4.7-16.el6.src.rpm) = 52391361 Index: head/devel/linux-c6-devtools/pkg-plist.x86_64 =================================================================== --- head/devel/linux-c6-devtools/pkg-plist.x86_64 (revision 413167) +++ head/devel/linux-c6-devtools/pkg-plist.x86_64 (revision 413168) @@ -1,2104 +1,2172 @@ lib/cpp usr/bin/addr2line usr/bin/ar usr/bin/as usr/bin/c++ usr/bin/c++filt usr/bin/c89 usr/bin/c99 usr/bin/cc usr/bin/cpp usr/bin/f95 usr/bin/g++ usr/bin/gcc usr/bin/gcov usr/bin/gfortran usr/bin/gprof -usr/bin/x86_64-redhat-linux-c++ -usr/bin/x86_64-redhat-linux-g++ -usr/bin/x86_64-redhat-linux-gcc usr/bin/ld usr/bin/nm usr/bin/objcopy usr/bin/objdump usr/bin/protoize usr/bin/ranlib usr/bin/readelf usr/bin/size usr/bin/strings usr/bin/strip usr/bin/unprotoize +usr/bin/x86_64-redhat-linux-c++ +usr/bin/x86_64-redhat-linux-g++ +usr/bin/x86_64-redhat-linux-gcc usr/include/_G_config.h usr/include/a.out.h usr/include/aio.h usr/include/aliases.h usr/include/alloca.h usr/include/ansidecl.h usr/include/ar.h usr/include/argp.h usr/include/argz.h usr/include/arpa/ftp.h usr/include/arpa/inet.h usr/include/arpa/nameser.h usr/include/arpa/nameser_compat.h usr/include/arpa/telnet.h usr/include/arpa/tftp.h usr/include/asm-generic/auxvec.h usr/include/asm-generic/bitsperlong.h usr/include/asm-generic/errno-base.h usr/include/asm-generic/errno.h usr/include/asm-generic/fcntl.h usr/include/asm-generic/int-l64.h usr/include/asm-generic/int-ll64.h usr/include/asm-generic/ioctl.h usr/include/asm-generic/ioctls.h usr/include/asm-generic/ipcbuf.h usr/include/asm-generic/mman-common.h usr/include/asm-generic/mman.h usr/include/asm-generic/msgbuf.h usr/include/asm-generic/param.h usr/include/asm-generic/poll.h usr/include/asm-generic/posix_types.h usr/include/asm-generic/resource.h usr/include/asm-generic/sembuf.h usr/include/asm-generic/setup.h usr/include/asm-generic/shmbuf.h usr/include/asm-generic/shmparam.h usr/include/asm-generic/siginfo.h usr/include/asm-generic/signal-defs.h usr/include/asm-generic/signal.h usr/include/asm-generic/socket.h usr/include/asm-generic/sockios.h usr/include/asm-generic/stat.h usr/include/asm-generic/statfs.h usr/include/asm-generic/swab.h usr/include/asm-generic/termbits.h usr/include/asm-generic/termios.h usr/include/asm-generic/types.h usr/include/asm-generic/ucontext.h usr/include/asm-generic/unistd.h usr/include/asm/a.out.h usr/include/asm/auxvec.h usr/include/asm/bitsperlong.h usr/include/asm/boot.h usr/include/asm/bootparam.h usr/include/asm/byteorder.h usr/include/asm/debugreg.h usr/include/asm/e820.h usr/include/asm/errno.h usr/include/asm/fcntl.h usr/include/asm/hyperv.h usr/include/asm/ioctl.h usr/include/asm/ioctls.h usr/include/asm/ipcbuf.h usr/include/asm/ist.h usr/include/asm/kvm.h usr/include/asm/kvm_para.h usr/include/asm/ldt.h usr/include/asm/mce.h usr/include/asm/mman.h usr/include/asm/msgbuf.h usr/include/asm/msr-index.h usr/include/asm/msr.h usr/include/asm/mtrr.h usr/include/asm/param.h usr/include/asm/poll.h usr/include/asm/posix_types.h usr/include/asm/posix_types_32.h usr/include/asm/posix_types_64.h usr/include/asm/prctl.h usr/include/asm/processor-flags.h usr/include/asm/ptrace-abi.h usr/include/asm/ptrace.h usr/include/asm/resource.h usr/include/asm/sembuf.h usr/include/asm/setup.h usr/include/asm/shmbuf.h usr/include/asm/sigcontext.h usr/include/asm/sigcontext32.h usr/include/asm/siginfo.h usr/include/asm/signal.h usr/include/asm/socket.h usr/include/asm/sockios.h usr/include/asm/stat.h usr/include/asm/statfs.h usr/include/asm/swab.h usr/include/asm/termbits.h usr/include/asm/termios.h usr/include/asm/types.h usr/include/asm/ucontext.h usr/include/asm/unistd.h usr/include/asm/unistd_32.h usr/include/asm/unistd_64.h usr/include/asm/vm86.h usr/include/asm/vsyscall.h usr/include/assert.h usr/include/bfd.h usr/include/bfdlink.h usr/include/bits/a.out.h usr/include/bits/byteswap.h usr/include/bits/cmathcalls.h usr/include/bits/confname.h usr/include/bits/dirent.h usr/include/bits/dlfcn.h usr/include/bits/elfclass.h usr/include/bits/endian.h usr/include/bits/environments.h usr/include/bits/errno.h usr/include/bits/error.h usr/include/bits/fcntl.h usr/include/bits/fcntl2.h usr/include/bits/fenv.h usr/include/bits/fenvinline.h usr/include/bits/huge_val.h usr/include/bits/huge_valf.h usr/include/bits/huge_vall.h usr/include/bits/in.h usr/include/bits/inf.h usr/include/bits/initspin.h usr/include/bits/ioctl-types.h usr/include/bits/ioctls.h usr/include/bits/ipc.h usr/include/bits/ipctypes.h usr/include/bits/libc-lock.h usr/include/bits/libio-ldbl.h usr/include/bits/link.h usr/include/bits/local_lim.h usr/include/bits/locale.h usr/include/bits/mathcalls.h usr/include/bits/mathdef.h usr/include/bits/mathinline.h usr/include/bits/mman.h usr/include/bits/monetary-ldbl.h usr/include/bits/mqueue.h usr/include/bits/mqueue2.h usr/include/bits/msq.h usr/include/bits/nan.h usr/include/bits/netdb.h usr/include/bits/poll.h usr/include/bits/posix1_lim.h usr/include/bits/posix2_lim.h usr/include/bits/posix_opt.h usr/include/bits/printf-ldbl.h usr/include/bits/pthreadtypes.h usr/include/bits/resource.h usr/include/bits/sched.h usr/include/bits/select.h usr/include/bits/sem.h usr/include/bits/semaphore.h usr/include/bits/setjmp.h usr/include/bits/setjmp2.h usr/include/bits/shm.h usr/include/bits/sigaction.h usr/include/bits/sigcontext.h usr/include/bits/siginfo.h usr/include/bits/signum.h usr/include/bits/sigset.h usr/include/bits/sigstack.h usr/include/bits/sigthread.h usr/include/bits/sockaddr.h usr/include/bits/socket.h usr/include/bits/socket2.h usr/include/bits/stab.def usr/include/bits/stat.h usr/include/bits/statfs.h usr/include/bits/statvfs.h usr/include/bits/stdio-ldbl.h usr/include/bits/stdio-lock.h usr/include/bits/stdio.h usr/include/bits/stdio2.h usr/include/bits/stdio_lim.h usr/include/bits/stdlib-ldbl.h usr/include/bits/stdlib.h usr/include/bits/string.h usr/include/bits/string2.h usr/include/bits/string3.h usr/include/bits/sys_errlist.h usr/include/bits/syscall.h usr/include/bits/syslog-ldbl.h usr/include/bits/syslog-path.h usr/include/bits/syslog.h usr/include/bits/termios.h usr/include/bits/time.h usr/include/bits/types.h usr/include/bits/typesizes.h usr/include/bits/uio.h usr/include/bits/unistd.h usr/include/bits/ustat.h usr/include/bits/utmp.h usr/include/bits/utmpx.h usr/include/bits/utsname.h usr/include/bits/waitflags.h usr/include/bits/waitstatus.h usr/include/bits/wchar-ldbl.h usr/include/bits/wchar.h usr/include/bits/wchar2.h usr/include/bits/wordsize.h usr/include/bits/xopen_lim.h usr/include/byteswap.h usr/include/c++/4.4.4/algorithm usr/include/c++/4.4.4/array usr/include/c++/4.4.4/backward/auto_ptr.h usr/include/c++/4.4.4/backward/backward_warning.h usr/include/c++/4.4.4/backward/binders.h usr/include/c++/4.4.4/backward/hash_fun.h usr/include/c++/4.4.4/backward/hash_map usr/include/c++/4.4.4/backward/hash_set usr/include/c++/4.4.4/backward/hashtable.h usr/include/c++/4.4.4/backward/strstream usr/include/c++/4.4.4/bits/algorithmfwd.h usr/include/c++/4.4.4/bits/allocator.h usr/include/c++/4.4.4/bits/atomic_0.h usr/include/c++/4.4.4/bits/atomic_2.h usr/include/c++/4.4.4/bits/atomicfwd_c.h usr/include/c++/4.4.4/bits/atomicfwd_cxx.h usr/include/c++/4.4.4/bits/basic_ios.h usr/include/c++/4.4.4/bits/basic_ios.tcc usr/include/c++/4.4.4/bits/basic_string.h usr/include/c++/4.4.4/bits/basic_string.tcc usr/include/c++/4.4.4/bits/boost_concept_check.h usr/include/c++/4.4.4/bits/char_traits.h usr/include/c++/4.4.4/bits/cmath.tcc usr/include/c++/4.4.4/bits/codecvt.h usr/include/c++/4.4.4/bits/concept_check.h usr/include/c++/4.4.4/bits/cpp_type_traits.h usr/include/c++/4.4.4/bits/deque.tcc usr/include/c++/4.4.4/bits/forward_list.h usr/include/c++/4.4.4/bits/forward_list.tcc usr/include/c++/4.4.4/bits/fstream.tcc usr/include/c++/4.4.4/bits/functexcept.h usr/include/c++/4.4.4/bits/functional_hash.h usr/include/c++/4.4.4/bits/gslice.h usr/include/c++/4.4.4/bits/gslice_array.h usr/include/c++/4.4.4/bits/hashtable.h usr/include/c++/4.4.4/bits/indirect_array.h usr/include/c++/4.4.4/bits/ios_base.h usr/include/c++/4.4.4/bits/istream.tcc usr/include/c++/4.4.4/bits/list.tcc usr/include/c++/4.4.4/bits/locale_classes.h usr/include/c++/4.4.4/bits/locale_classes.tcc usr/include/c++/4.4.4/bits/locale_facets.h usr/include/c++/4.4.4/bits/locale_facets.tcc usr/include/c++/4.4.4/bits/locale_facets_nonio.h usr/include/c++/4.4.4/bits/locale_facets_nonio.tcc usr/include/c++/4.4.4/bits/localefwd.h usr/include/c++/4.4.4/bits/mask_array.h usr/include/c++/4.4.4/bits/move.h usr/include/c++/4.4.4/bits/ostream.tcc usr/include/c++/4.4.4/bits/ostream_insert.h usr/include/c++/4.4.4/bits/postypes.h usr/include/c++/4.4.4/bits/shared_ptr.h usr/include/c++/4.4.4/bits/slice_array.h usr/include/c++/4.4.4/bits/sstream.tcc usr/include/c++/4.4.4/bits/stl_algo.h usr/include/c++/4.4.4/bits/stl_algobase.h usr/include/c++/4.4.4/bits/stl_bvector.h usr/include/c++/4.4.4/bits/stl_construct.h usr/include/c++/4.4.4/bits/stl_deque.h usr/include/c++/4.4.4/bits/stl_function.h usr/include/c++/4.4.4/bits/stl_heap.h usr/include/c++/4.4.4/bits/stl_iterator.h usr/include/c++/4.4.4/bits/stl_iterator_base_funcs.h usr/include/c++/4.4.4/bits/stl_iterator_base_types.h usr/include/c++/4.4.4/bits/stl_list.h usr/include/c++/4.4.4/bits/stl_map.h usr/include/c++/4.4.4/bits/stl_multimap.h usr/include/c++/4.4.4/bits/stl_multiset.h usr/include/c++/4.4.4/bits/stl_numeric.h usr/include/c++/4.4.4/bits/stl_pair.h usr/include/c++/4.4.4/bits/stl_queue.h usr/include/c++/4.4.4/bits/stl_raw_storage_iter.h usr/include/c++/4.4.4/bits/stl_relops.h usr/include/c++/4.4.4/bits/stl_set.h usr/include/c++/4.4.4/bits/stl_stack.h usr/include/c++/4.4.4/bits/stl_tempbuf.h usr/include/c++/4.4.4/bits/stl_tree.h usr/include/c++/4.4.4/bits/stl_uninitialized.h usr/include/c++/4.4.4/bits/stl_vector.h usr/include/c++/4.4.4/bits/stream_iterator.h usr/include/c++/4.4.4/bits/streambuf.tcc usr/include/c++/4.4.4/bits/streambuf_iterator.h usr/include/c++/4.4.4/bits/stringfwd.h usr/include/c++/4.4.4/bits/unique_ptr.h usr/include/c++/4.4.4/bits/valarray_after.h usr/include/c++/4.4.4/bits/valarray_array.h usr/include/c++/4.4.4/bits/valarray_array.tcc usr/include/c++/4.4.4/bits/valarray_before.h usr/include/c++/4.4.4/bits/vector.tcc usr/include/c++/4.4.4/bitset usr/include/c++/4.4.4/c++0x_warning.h usr/include/c++/4.4.4/cassert usr/include/c++/4.4.4/ccomplex usr/include/c++/4.4.4/cctype usr/include/c++/4.4.4/cerrno usr/include/c++/4.4.4/cfenv usr/include/c++/4.4.4/cfloat usr/include/c++/4.4.4/chrono usr/include/c++/4.4.4/cinttypes usr/include/c++/4.4.4/ciso646 usr/include/c++/4.4.4/climits usr/include/c++/4.4.4/clocale usr/include/c++/4.4.4/cmath usr/include/c++/4.4.4/complex usr/include/c++/4.4.4/complex.h usr/include/c++/4.4.4/condition_variable usr/include/c++/4.4.4/csetjmp usr/include/c++/4.4.4/csignal usr/include/c++/4.4.4/cstdarg usr/include/c++/4.4.4/cstdatomic usr/include/c++/4.4.4/cstdbool usr/include/c++/4.4.4/cstddef usr/include/c++/4.4.4/cstdint usr/include/c++/4.4.4/cstdio usr/include/c++/4.4.4/cstdlib usr/include/c++/4.4.4/cstring usr/include/c++/4.4.4/ctgmath usr/include/c++/4.4.4/ctime usr/include/c++/4.4.4/cwchar usr/include/c++/4.4.4/cwctype usr/include/c++/4.4.4/cxxabi-forced.h usr/include/c++/4.4.4/cxxabi.h usr/include/c++/4.4.4/debug/bitset usr/include/c++/4.4.4/debug/debug.h usr/include/c++/4.4.4/debug/deque usr/include/c++/4.4.4/debug/formatter.h usr/include/c++/4.4.4/debug/functions.h usr/include/c++/4.4.4/debug/list usr/include/c++/4.4.4/debug/macros.h usr/include/c++/4.4.4/debug/map usr/include/c++/4.4.4/debug/map.h usr/include/c++/4.4.4/debug/multimap.h usr/include/c++/4.4.4/debug/multiset.h usr/include/c++/4.4.4/debug/safe_base.h usr/include/c++/4.4.4/debug/safe_iterator.h usr/include/c++/4.4.4/debug/safe_iterator.tcc usr/include/c++/4.4.4/debug/safe_sequence.h usr/include/c++/4.4.4/debug/set usr/include/c++/4.4.4/debug/set.h usr/include/c++/4.4.4/debug/string usr/include/c++/4.4.4/debug/unordered_map usr/include/c++/4.4.4/debug/unordered_set usr/include/c++/4.4.4/debug/vector usr/include/c++/4.4.4/deque usr/include/c++/4.4.4/exception usr/include/c++/4.4.4/exception_defines.h usr/include/c++/4.4.4/exception_ptr.h usr/include/c++/4.4.4/ext/algorithm usr/include/c++/4.4.4/ext/array_allocator.h usr/include/c++/4.4.4/ext/atomicity.h usr/include/c++/4.4.4/ext/bitmap_allocator.h usr/include/c++/4.4.4/ext/cast.h usr/include/c++/4.4.4/ext/codecvt_specializations.h usr/include/c++/4.4.4/ext/concurrence.h usr/include/c++/4.4.4/ext/debug_allocator.h usr/include/c++/4.4.4/ext/enc_filebuf.h usr/include/c++/4.4.4/ext/extptr_allocator.h usr/include/c++/4.4.4/ext/functional usr/include/c++/4.4.4/ext/hash_map usr/include/c++/4.4.4/ext/hash_set usr/include/c++/4.4.4/ext/iterator usr/include/c++/4.4.4/ext/malloc_allocator.h usr/include/c++/4.4.4/ext/memory usr/include/c++/4.4.4/ext/mt_allocator.h usr/include/c++/4.4.4/ext/new_allocator.h usr/include/c++/4.4.4/ext/numeric usr/include/c++/4.4.4/ext/numeric_traits.h usr/include/c++/4.4.4/ext/pb_ds/assoc_container.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/basic_tree_policy/basic_tree_policy_base.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/basic_tree_policy/null_node_metadata.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/basic_tree_policy/traits.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/basic_types.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/bin_search_tree_/cond_dtor_entry_dealtor.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/bin_search_tree_/cond_key_dtor_entry_dealtor.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/bin_search_tree_/constructors_destructor_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/bin_search_tree_/debug_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/bin_search_tree_/erase_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/bin_search_tree_/find_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/bin_search_tree_/info_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/bin_search_tree_/insert_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/bin_search_tree_/iterators_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/bin_search_tree_/node_iterators.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/bin_search_tree_/point_iterators.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/bin_search_tree_/policy_access_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/bin_search_tree_/r_erase_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/bin_search_tree_/rotate_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/bin_search_tree_/split_join_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/bin_search_tree_/traits.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/binary_heap_/const_iterator.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/binary_heap_/const_point_iterator.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/binary_heap_/constructors_destructor_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/binary_heap_/debug_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/binary_heap_/entry_cmp.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/binary_heap_/entry_pred.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/binary_heap_/erase_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/binary_heap_/find_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/binary_heap_/info_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/binary_heap_/iterators_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/binary_heap_/policy_access_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/binary_heap_/resize_policy.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/binary_heap_/split_join_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/binary_heap_/trace_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/binomial_heap_/constructors_destructor_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/binomial_heap_/debug_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/binomial_heap_base_/binomial_heap_base_.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/binomial_heap_base_/constructors_destructor_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/binomial_heap_base_/debug_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/binomial_heap_base_/erase_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/binomial_heap_base_/find_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/binomial_heap_base_/insert_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/binomial_heap_base_/split_join_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/cc_hash_table_map_/cmp_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/cc_hash_table_map_/cond_key_dtor_entry_dealtor.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/cc_hash_table_map_/debug_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/cc_hash_table_map_/debug_store_hash_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/cc_hash_table_map_/entry_list_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/cc_hash_table_map_/erase_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/cc_hash_table_map_/erase_store_hash_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/cc_hash_table_map_/find_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/cc_hash_table_map_/find_store_hash_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/cc_hash_table_map_/info_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/cc_hash_table_map_/insert_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/cc_hash_table_map_/insert_store_hash_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/cc_hash_table_map_/iterators_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/cc_hash_table_map_/policy_access_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/cc_hash_table_map_/resize_store_hash_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/cc_hash_table_map_/size_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/cc_hash_table_map_/standard_policies.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/cc_hash_table_map_/trace_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/cond_dealtor.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/constructors_destructor_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/container_base_dispatch.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/debug_map_base.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/eq_fn/eq_by_less.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/eq_fn/hash_eq_fn.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/gp_hash_table_map_/debug_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/gp_hash_table_map_/debug_store_hash_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/gp_hash_table_map_/erase_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/gp_hash_table_map_/erase_store_hash_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/gp_hash_table_map_/find_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/gp_hash_table_map_/find_no_store_hash_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/gp_hash_table_map_/find_store_hash_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/gp_hash_table_map_/info_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/gp_hash_table_map_/insert_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/gp_hash_table_map_/insert_store_hash_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/gp_hash_table_map_/iterator_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/gp_hash_table_map_/policy_access_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/gp_hash_table_map_/resize_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/gp_hash_table_map_/resize_store_hash_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/gp_hash_table_map_/standard_policies.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/gp_hash_table_map_/trace_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/hash_fn/direct_mask_range_hashing_imp.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/hash_fn/direct_mod_range_hashing_imp.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/hash_fn/linear_probe_fn_imp.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/hash_fn/mask_based_range_hashing.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/hash_fn/mod_based_range_hashing.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/hash_fn/probe_fn_base.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/hash_fn/quadratic_probe_fn_imp.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/hash_fn/sample_probe_fn.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/hash_fn/sample_range_hashing.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/hash_fn/sample_ranged_hash_fn.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/hash_fn/sample_ranged_probe_fn.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/left_child_next_sibling_heap_/const_iterator.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/left_child_next_sibling_heap_/const_point_iterator.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/left_child_next_sibling_heap_/debug_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/left_child_next_sibling_heap_/erase_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/left_child_next_sibling_heap_/info_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/left_child_next_sibling_heap_/insert_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/left_child_next_sibling_heap_/iterators_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/left_child_next_sibling_heap_/node.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/left_child_next_sibling_heap_/null_metadata.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/left_child_next_sibling_heap_/policy_access_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/left_child_next_sibling_heap_/trace_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/list_update_map_/constructor_destructor_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/list_update_map_/debug_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/list_update_map_/entry_metadata_base.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/list_update_map_/erase_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/list_update_map_/find_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/list_update_map_/info_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/list_update_map_/insert_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/list_update_map_/iterators_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/list_update_map_/lu_map_.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/list_update_map_/trace_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/list_update_policy/counter_lu_metadata.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/list_update_policy/counter_lu_policy_imp.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/list_update_policy/mtf_lu_policy_imp.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/list_update_policy/sample_update_policy.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/ov_tree_map_/cond_dtor.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/ov_tree_map_/constructors_destructor_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/ov_tree_map_/debug_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/ov_tree_map_/erase_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/ov_tree_map_/info_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/ov_tree_map_/insert_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/ov_tree_map_/iterators_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/ov_tree_map_/node_iterators.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/ov_tree_map_/ov_tree_map_.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/ov_tree_map_/policy_access_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/ov_tree_map_/split_join_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/ov_tree_map_/traits.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pairing_heap_/constructors_destructor_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pairing_heap_/debug_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pairing_heap_/erase_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pairing_heap_/find_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pairing_heap_/insert_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pairing_heap_/pairing_heap_.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pairing_heap_/split_join_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pat_trie_/child_iterator.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pat_trie_/cond_dtor_entry_dealtor.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pat_trie_/const_child_iterator.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pat_trie_/constructors_destructor_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pat_trie_/debug_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pat_trie_/erase_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pat_trie_/find_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pat_trie_/head.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pat_trie_/info_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pat_trie_/insert_join_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pat_trie_/internal_node.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pat_trie_/iterators_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pat_trie_/leaf.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pat_trie_/node_base.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pat_trie_/node_iterators.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pat_trie_/node_metadata_base.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pat_trie_/pat_trie_.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pat_trie_/point_iterators.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pat_trie_/policy_access_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pat_trie_/r_erase_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pat_trie_/rotate_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pat_trie_/split_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pat_trie_/split_join_branch_bag.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pat_trie_/synth_e_access_traits.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pat_trie_/trace_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pat_trie_/traits.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/pat_trie_/update_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/priority_queue_base_dispatch.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/rb_tree_map_/constructors_destructor_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/rb_tree_map_/debug_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/rb_tree_map_/find_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/rb_tree_map_/info_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/rb_tree_map_/insert_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/rb_tree_map_/node.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/rb_tree_map_/rb_tree_.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/rb_tree_map_/split_join_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/rb_tree_map_/traits.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/rc_binomial_heap_/constructors_destructor_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/rc_binomial_heap_/debug_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/rc_binomial_heap_/erase_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/rc_binomial_heap_/insert_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/rc_binomial_heap_/rc.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/rc_binomial_heap_/rc_binomial_heap_.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/rc_binomial_heap_/split_join_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/rc_binomial_heap_/trace_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/resize_policy/cc_hash_max_collision_check_resize_trigger_imp.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/resize_policy/hash_exponential_size_policy_imp.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_imp.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_size_base.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/resize_policy/hash_prime_size_policy_imp.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/resize_policy/hash_standard_resize_policy_imp.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/resize_policy/sample_resize_policy.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/resize_policy/sample_resize_trigger.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/resize_policy/sample_size_policy.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/splay_tree_/constructors_destructor_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/splay_tree_/debug_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/splay_tree_/erase_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/splay_tree_/find_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/splay_tree_/info_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/splay_tree_/insert_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/splay_tree_/node.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/splay_tree_/splay_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/splay_tree_/splay_tree_.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/splay_tree_/split_join_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/splay_tree_/traits.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/standard_policies.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/thin_heap_/constructors_destructor_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/thin_heap_/debug_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/thin_heap_/erase_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/thin_heap_/find_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/thin_heap_/insert_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/thin_heap_/split_join_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/thin_heap_/thin_heap_.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/thin_heap_/trace_fn_imps.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/tree_policy/node_metadata_selector.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/tree_policy/null_node_update_imp.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/tree_policy/order_statistics_imp.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/tree_policy/sample_tree_node_update.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/tree_trace_base.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/trie_policy/node_metadata_selector.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/trie_policy/null_node_update_imp.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/trie_policy/order_statistics_imp.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/trie_policy/prefix_search_node_update_imp.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/trie_policy/sample_trie_e_access_traits.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/trie_policy/sample_trie_node_update.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/trie_policy/string_trie_e_access_traits_imp.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/trie_policy/trie_policy_base.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/type_utils.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/types_traits.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/unordered_iterator/const_iterator.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/unordered_iterator/const_point_iterator.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/unordered_iterator/iterator.hpp usr/include/c++/4.4.4/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp usr/include/c++/4.4.4/ext/pb_ds/exception.hpp usr/include/c++/4.4.4/ext/pb_ds/hash_policy.hpp usr/include/c++/4.4.4/ext/pb_ds/list_update_policy.hpp usr/include/c++/4.4.4/ext/pb_ds/priority_queue.hpp usr/include/c++/4.4.4/ext/pb_ds/tag_and_trait.hpp usr/include/c++/4.4.4/ext/pb_ds/tree_policy.hpp usr/include/c++/4.4.4/ext/pb_ds/trie_policy.hpp usr/include/c++/4.4.4/ext/pod_char_traits.h usr/include/c++/4.4.4/ext/pointer.h usr/include/c++/4.4.4/ext/pool_allocator.h usr/include/c++/4.4.4/ext/rb_tree usr/include/c++/4.4.4/ext/rc_string_base.h usr/include/c++/4.4.4/ext/rope usr/include/c++/4.4.4/ext/ropeimpl.h usr/include/c++/4.4.4/ext/slist usr/include/c++/4.4.4/ext/sso_string_base.h usr/include/c++/4.4.4/ext/stdio_filebuf.h usr/include/c++/4.4.4/ext/stdio_sync_filebuf.h usr/include/c++/4.4.4/ext/string_conversions.h usr/include/c++/4.4.4/ext/throw_allocator.h usr/include/c++/4.4.4/ext/type_traits.h usr/include/c++/4.4.4/ext/typelist.h usr/include/c++/4.4.4/ext/vstring.h usr/include/c++/4.4.4/ext/vstring.tcc usr/include/c++/4.4.4/ext/vstring_fwd.h usr/include/c++/4.4.4/ext/vstring_util.h usr/include/c++/4.4.4/fenv.h usr/include/c++/4.4.4/forward_list usr/include/c++/4.4.4/fstream usr/include/c++/4.4.4/functional -usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/atomic_word.h -usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/basic_file.h -usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/c++allocator.h -usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/c++config.h -usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/c++io.h -usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/c++locale.h -usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/cpu_defines.h -usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/ctype_base.h -usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/ctype_inline.h -usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/ctype_noninline.h -usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/cxxabi_tweaks.h -usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/error_constants.h -usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/extc++.h -usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/gthr-default.h -usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/gthr-posix.h -usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/gthr-single.h -usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/gthr-tpf.h -usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/gthr.h -usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/messages_members.h -usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/os_defines.h -usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/stdc++.h -usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/stdtr1c++.h -usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/time_members.h -usr/include/c++/4.4.4/x86_64-redhat-linux/bits/atomic_word.h -usr/include/c++/4.4.4/x86_64-redhat-linux/bits/basic_file.h -usr/include/c++/4.4.4/x86_64-redhat-linux/bits/c++allocator.h -usr/include/c++/4.4.4/x86_64-redhat-linux/bits/c++config.h -usr/include/c++/4.4.4/x86_64-redhat-linux/bits/c++io.h -usr/include/c++/4.4.4/x86_64-redhat-linux/bits/c++locale.h -usr/include/c++/4.4.4/x86_64-redhat-linux/bits/cpu_defines.h -usr/include/c++/4.4.4/x86_64-redhat-linux/bits/ctype_base.h -usr/include/c++/4.4.4/x86_64-redhat-linux/bits/ctype_inline.h -usr/include/c++/4.4.4/x86_64-redhat-linux/bits/ctype_noninline.h -usr/include/c++/4.4.4/x86_64-redhat-linux/bits/cxxabi_tweaks.h -usr/include/c++/4.4.4/x86_64-redhat-linux/bits/error_constants.h -usr/include/c++/4.4.4/x86_64-redhat-linux/bits/extc++.h -usr/include/c++/4.4.4/x86_64-redhat-linux/bits/gthr-default.h -usr/include/c++/4.4.4/x86_64-redhat-linux/bits/gthr-posix.h -usr/include/c++/4.4.4/x86_64-redhat-linux/bits/gthr-single.h -usr/include/c++/4.4.4/x86_64-redhat-linux/bits/gthr-tpf.h -usr/include/c++/4.4.4/x86_64-redhat-linux/bits/gthr.h -usr/include/c++/4.4.4/x86_64-redhat-linux/bits/messages_members.h -usr/include/c++/4.4.4/x86_64-redhat-linux/bits/os_defines.h -usr/include/c++/4.4.4/x86_64-redhat-linux/bits/stdc++.h -usr/include/c++/4.4.4/x86_64-redhat-linux/bits/stdtr1c++.h -usr/include/c++/4.4.4/x86_64-redhat-linux/bits/time_members.h +usr/include/c++/4.4.4/i686-redhat-linux/bits/atomic_word.h +usr/include/c++/4.4.4/i686-redhat-linux/bits/basic_file.h +usr/include/c++/4.4.4/i686-redhat-linux/bits/c++allocator.h +usr/include/c++/4.4.4/i686-redhat-linux/bits/c++config.h +usr/include/c++/4.4.4/i686-redhat-linux/bits/c++io.h +usr/include/c++/4.4.4/i686-redhat-linux/bits/c++locale.h +usr/include/c++/4.4.4/i686-redhat-linux/bits/cpu_defines.h +usr/include/c++/4.4.4/i686-redhat-linux/bits/ctype_base.h +usr/include/c++/4.4.4/i686-redhat-linux/bits/ctype_inline.h +usr/include/c++/4.4.4/i686-redhat-linux/bits/ctype_noninline.h +usr/include/c++/4.4.4/i686-redhat-linux/bits/cxxabi_tweaks.h +usr/include/c++/4.4.4/i686-redhat-linux/bits/error_constants.h +usr/include/c++/4.4.4/i686-redhat-linux/bits/extc++.h +usr/include/c++/4.4.4/i686-redhat-linux/bits/gthr-default.h +usr/include/c++/4.4.4/i686-redhat-linux/bits/gthr-posix.h +usr/include/c++/4.4.4/i686-redhat-linux/bits/gthr-single.h +usr/include/c++/4.4.4/i686-redhat-linux/bits/gthr-tpf.h +usr/include/c++/4.4.4/i686-redhat-linux/bits/gthr.h +usr/include/c++/4.4.4/i686-redhat-linux/bits/messages_members.h +usr/include/c++/4.4.4/i686-redhat-linux/bits/os_defines.h +usr/include/c++/4.4.4/i686-redhat-linux/bits/stdc++.h +usr/include/c++/4.4.4/i686-redhat-linux/bits/stdtr1c++.h +usr/include/c++/4.4.4/i686-redhat-linux/bits/time_members.h usr/include/c++/4.4.4/initializer_list usr/include/c++/4.4.4/iomanip usr/include/c++/4.4.4/ios usr/include/c++/4.4.4/iosfwd usr/include/c++/4.4.4/iostream usr/include/c++/4.4.4/istream usr/include/c++/4.4.4/iterator usr/include/c++/4.4.4/limits usr/include/c++/4.4.4/list usr/include/c++/4.4.4/locale usr/include/c++/4.4.4/map usr/include/c++/4.4.4/memory usr/include/c++/4.4.4/mutex usr/include/c++/4.4.4/new usr/include/c++/4.4.4/numeric usr/include/c++/4.4.4/ostream usr/include/c++/4.4.4/parallel/algo.h usr/include/c++/4.4.4/parallel/algobase.h usr/include/c++/4.4.4/parallel/algorithm usr/include/c++/4.4.4/parallel/algorithmfwd.h usr/include/c++/4.4.4/parallel/balanced_quicksort.h usr/include/c++/4.4.4/parallel/base.h usr/include/c++/4.4.4/parallel/basic_iterator.h usr/include/c++/4.4.4/parallel/checkers.h usr/include/c++/4.4.4/parallel/compatibility.h usr/include/c++/4.4.4/parallel/compiletime_settings.h usr/include/c++/4.4.4/parallel/equally_split.h usr/include/c++/4.4.4/parallel/features.h usr/include/c++/4.4.4/parallel/find.h usr/include/c++/4.4.4/parallel/find_selectors.h usr/include/c++/4.4.4/parallel/for_each.h usr/include/c++/4.4.4/parallel/for_each_selectors.h usr/include/c++/4.4.4/parallel/iterator.h usr/include/c++/4.4.4/parallel/list_partition.h usr/include/c++/4.4.4/parallel/losertree.h usr/include/c++/4.4.4/parallel/merge.h usr/include/c++/4.4.4/parallel/multiseq_selection.h usr/include/c++/4.4.4/parallel/multiway_merge.h usr/include/c++/4.4.4/parallel/multiway_mergesort.h usr/include/c++/4.4.4/parallel/numeric usr/include/c++/4.4.4/parallel/numericfwd.h usr/include/c++/4.4.4/parallel/omp_loop.h usr/include/c++/4.4.4/parallel/omp_loop_static.h usr/include/c++/4.4.4/parallel/par_loop.h usr/include/c++/4.4.4/parallel/parallel.h usr/include/c++/4.4.4/parallel/partial_sum.h usr/include/c++/4.4.4/parallel/partition.h usr/include/c++/4.4.4/parallel/queue.h usr/include/c++/4.4.4/parallel/quicksort.h usr/include/c++/4.4.4/parallel/random_number.h usr/include/c++/4.4.4/parallel/random_shuffle.h usr/include/c++/4.4.4/parallel/search.h usr/include/c++/4.4.4/parallel/set_operations.h usr/include/c++/4.4.4/parallel/settings.h usr/include/c++/4.4.4/parallel/sort.h usr/include/c++/4.4.4/parallel/tags.h usr/include/c++/4.4.4/parallel/types.h usr/include/c++/4.4.4/parallel/unique_copy.h usr/include/c++/4.4.4/parallel/workstealing.h usr/include/c++/4.4.4/queue usr/include/c++/4.4.4/random usr/include/c++/4.4.4/ratio usr/include/c++/4.4.4/regex usr/include/c++/4.4.4/set usr/include/c++/4.4.4/sstream usr/include/c++/4.4.4/stack usr/include/c++/4.4.4/stdatomic.h usr/include/c++/4.4.4/stdexcept usr/include/c++/4.4.4/streambuf usr/include/c++/4.4.4/string usr/include/c++/4.4.4/system_error usr/include/c++/4.4.4/tgmath.h usr/include/c++/4.4.4/thread usr/include/c++/4.4.4/tr1/array usr/include/c++/4.4.4/tr1/bessel_function.tcc usr/include/c++/4.4.4/tr1/beta_function.tcc usr/include/c++/4.4.4/tr1/ccomplex usr/include/c++/4.4.4/tr1/cctype usr/include/c++/4.4.4/tr1/cfenv usr/include/c++/4.4.4/tr1/cfloat usr/include/c++/4.4.4/tr1/cinttypes usr/include/c++/4.4.4/tr1/climits usr/include/c++/4.4.4/tr1/cmath usr/include/c++/4.4.4/tr1/complex usr/include/c++/4.4.4/tr1/complex.h usr/include/c++/4.4.4/tr1/cstdarg usr/include/c++/4.4.4/tr1/cstdbool usr/include/c++/4.4.4/tr1/cstdint usr/include/c++/4.4.4/tr1/cstdio usr/include/c++/4.4.4/tr1/cstdlib usr/include/c++/4.4.4/tr1/ctgmath usr/include/c++/4.4.4/tr1/ctime usr/include/c++/4.4.4/tr1/ctype.h usr/include/c++/4.4.4/tr1/cwchar usr/include/c++/4.4.4/tr1/cwctype usr/include/c++/4.4.4/tr1/ell_integral.tcc usr/include/c++/4.4.4/tr1/exp_integral.tcc usr/include/c++/4.4.4/tr1/fenv.h usr/include/c++/4.4.4/tr1/float.h usr/include/c++/4.4.4/tr1/functional usr/include/c++/4.4.4/tr1/functional_hash.h usr/include/c++/4.4.4/tr1/gamma.tcc usr/include/c++/4.4.4/tr1/hashtable.h usr/include/c++/4.4.4/tr1/hypergeometric.tcc usr/include/c++/4.4.4/tr1/inttypes.h usr/include/c++/4.4.4/tr1/legendre_function.tcc usr/include/c++/4.4.4/tr1/limits.h usr/include/c++/4.4.4/tr1/math.h usr/include/c++/4.4.4/tr1/memory usr/include/c++/4.4.4/tr1/modified_bessel_func.tcc usr/include/c++/4.4.4/tr1/poly_hermite.tcc usr/include/c++/4.4.4/tr1/poly_laguerre.tcc usr/include/c++/4.4.4/tr1/random usr/include/c++/4.4.4/tr1/regex usr/include/c++/4.4.4/tr1/riemann_zeta.tcc usr/include/c++/4.4.4/tr1/shared_ptr.h usr/include/c++/4.4.4/tr1/special_function_util.h usr/include/c++/4.4.4/tr1/stdarg.h usr/include/c++/4.4.4/tr1/stdbool.h usr/include/c++/4.4.4/tr1/stdint.h usr/include/c++/4.4.4/tr1/stdio.h usr/include/c++/4.4.4/tr1/stdlib.h usr/include/c++/4.4.4/tr1/tgmath.h usr/include/c++/4.4.4/tr1/tuple usr/include/c++/4.4.4/tr1/type_traits usr/include/c++/4.4.4/tr1/unordered_map usr/include/c++/4.4.4/tr1/unordered_set usr/include/c++/4.4.4/tr1/utility usr/include/c++/4.4.4/tr1/wchar.h usr/include/c++/4.4.4/tr1/wctype.h usr/include/c++/4.4.4/tr1_impl/array usr/include/c++/4.4.4/tr1_impl/boost_sp_counted_base.h usr/include/c++/4.4.4/tr1_impl/cctype usr/include/c++/4.4.4/tr1_impl/cfenv usr/include/c++/4.4.4/tr1_impl/cinttypes usr/include/c++/4.4.4/tr1_impl/cmath usr/include/c++/4.4.4/tr1_impl/complex usr/include/c++/4.4.4/tr1_impl/cstdint usr/include/c++/4.4.4/tr1_impl/cstdio usr/include/c++/4.4.4/tr1_impl/cstdlib usr/include/c++/4.4.4/tr1_impl/cwchar usr/include/c++/4.4.4/tr1_impl/cwctype usr/include/c++/4.4.4/tr1_impl/functional usr/include/c++/4.4.4/tr1_impl/functional_hash.h usr/include/c++/4.4.4/tr1_impl/hashtable usr/include/c++/4.4.4/tr1_impl/hashtable_policy.h usr/include/c++/4.4.4/tr1_impl/random usr/include/c++/4.4.4/tr1_impl/random.tcc usr/include/c++/4.4.4/tr1_impl/regex usr/include/c++/4.4.4/tr1_impl/type_traits usr/include/c++/4.4.4/tr1_impl/unordered_map usr/include/c++/4.4.4/tr1_impl/unordered_set usr/include/c++/4.4.4/tr1_impl/utility usr/include/c++/4.4.4/tuple usr/include/c++/4.4.4/type_traits usr/include/c++/4.4.4/typeinfo usr/include/c++/4.4.4/unordered_map usr/include/c++/4.4.4/unordered_set usr/include/c++/4.4.4/utility usr/include/c++/4.4.4/valarray usr/include/c++/4.4.4/vector +usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/atomic_word.h +usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/basic_file.h +usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/c++allocator.h +usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/c++config.h +usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/c++io.h +usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/c++locale.h +usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/cpu_defines.h +usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/ctype_base.h +usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/ctype_inline.h +usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/ctype_noninline.h +usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/cxxabi_tweaks.h +usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/error_constants.h +usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/extc++.h +usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/gthr-default.h +usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/gthr-posix.h +usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/gthr-single.h +usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/gthr-tpf.h +usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/gthr.h +usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/messages_members.h +usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/os_defines.h +usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/stdc++.h +usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/stdtr1c++.h +usr/include/c++/4.4.4/x86_64-redhat-linux/32/bits/time_members.h +usr/include/c++/4.4.4/x86_64-redhat-linux/bits/atomic_word.h +usr/include/c++/4.4.4/x86_64-redhat-linux/bits/basic_file.h +usr/include/c++/4.4.4/x86_64-redhat-linux/bits/c++allocator.h +usr/include/c++/4.4.4/x86_64-redhat-linux/bits/c++config.h +usr/include/c++/4.4.4/x86_64-redhat-linux/bits/c++io.h +usr/include/c++/4.4.4/x86_64-redhat-linux/bits/c++locale.h +usr/include/c++/4.4.4/x86_64-redhat-linux/bits/cpu_defines.h +usr/include/c++/4.4.4/x86_64-redhat-linux/bits/ctype_base.h +usr/include/c++/4.4.4/x86_64-redhat-linux/bits/ctype_inline.h +usr/include/c++/4.4.4/x86_64-redhat-linux/bits/ctype_noninline.h +usr/include/c++/4.4.4/x86_64-redhat-linux/bits/cxxabi_tweaks.h +usr/include/c++/4.4.4/x86_64-redhat-linux/bits/error_constants.h +usr/include/c++/4.4.4/x86_64-redhat-linux/bits/extc++.h +usr/include/c++/4.4.4/x86_64-redhat-linux/bits/gthr-default.h +usr/include/c++/4.4.4/x86_64-redhat-linux/bits/gthr-posix.h +usr/include/c++/4.4.4/x86_64-redhat-linux/bits/gthr-single.h +usr/include/c++/4.4.4/x86_64-redhat-linux/bits/gthr-tpf.h +usr/include/c++/4.4.4/x86_64-redhat-linux/bits/gthr.h +usr/include/c++/4.4.4/x86_64-redhat-linux/bits/messages_members.h +usr/include/c++/4.4.4/x86_64-redhat-linux/bits/os_defines.h +usr/include/c++/4.4.4/x86_64-redhat-linux/bits/stdc++.h +usr/include/c++/4.4.4/x86_64-redhat-linux/bits/stdtr1c++.h +usr/include/c++/4.4.4/x86_64-redhat-linux/bits/time_members.h usr/include/c++/4.4.7 usr/include/complex.h usr/include/cpio.h usr/include/crypt.h usr/include/ctype.h usr/include/dirent.h usr/include/dis-asm.h usr/include/dlfcn.h usr/include/drm/drm.h usr/include/drm/drm_fourcc.h usr/include/drm/drm_mode.h usr/include/drm/drm_sarea.h usr/include/drm/i810_drm.h usr/include/drm/i915_drm.h usr/include/drm/mga_drm.h usr/include/drm/nouveau_drm.h usr/include/drm/r128_drm.h usr/include/drm/radeon_drm.h usr/include/drm/savage_drm.h usr/include/drm/sis_drm.h usr/include/drm/via_drm.h usr/include/elf.h usr/include/endian.h usr/include/envz.h usr/include/err.h usr/include/errno.h usr/include/error.h usr/include/execinfo.h usr/include/fcntl.h usr/include/features.h usr/include/fenv.h usr/include/fmtmsg.h usr/include/fnmatch.h usr/include/fpu_control.h usr/include/fstab.h usr/include/fts.h usr/include/ftw.h usr/include/gconv.h usr/include/getopt.h usr/include/glob.h usr/include/gnu-versions.h usr/include/gnu/lib-names.h usr/include/gnu/libc-version.h +usr/include/gnu/stubs-32.h usr/include/gnu/stubs-64.h usr/include/gnu/stubs.h usr/include/grp.h usr/include/gshadow.h usr/include/iconv.h usr/include/ieee754.h usr/include/ifaddrs.h usr/include/inttypes.h usr/include/langinfo.h usr/include/lastlog.h usr/include/libgen.h usr/include/libiberty.h usr/include/libintl.h usr/include/libio.h usr/include/limits.h usr/include/link.h usr/include/linux/a.out.h usr/include/linux/acct.h usr/include/linux/adb.h usr/include/linux/adfs_fs.h usr/include/linux/affs_hardblocks.h usr/include/linux/agpgart.h usr/include/linux/aio_abi.h usr/include/linux/apm_bios.h usr/include/linux/arcfb.h usr/include/linux/atalk.h usr/include/linux/atm.h usr/include/linux/atm_eni.h usr/include/linux/atm_he.h usr/include/linux/atm_idt77105.h usr/include/linux/atm_nicstar.h usr/include/linux/atm_tcp.h usr/include/linux/atm_zatm.h usr/include/linux/atmapi.h usr/include/linux/atmarp.h usr/include/linux/atmbr2684.h usr/include/linux/atmclip.h usr/include/linux/atmdev.h usr/include/linux/atmioc.h usr/include/linux/atmlec.h usr/include/linux/atmmpc.h usr/include/linux/atmppp.h usr/include/linux/atmsap.h usr/include/linux/atmsvc.h usr/include/linux/audit.h usr/include/linux/auto_fs.h usr/include/linux/auto_fs4.h usr/include/linux/auxvec.h usr/include/linux/ax25.h usr/include/linux/b1lli.h usr/include/linux/baycom.h usr/include/linux/bfs_fs.h usr/include/linux/binfmts.h usr/include/linux/blk_types.h usr/include/linux/blkpg.h usr/include/linux/blktrace_api.h usr/include/linux/bpqether.h usr/include/linux/bsg.h usr/include/linux/byteorder/big_endian.h usr/include/linux/byteorder/little_endian.h usr/include/linux/can.h usr/include/linux/can/bcm.h usr/include/linux/can/error.h usr/include/linux/can/netlink.h usr/include/linux/can/raw.h usr/include/linux/capability.h usr/include/linux/capi.h usr/include/linux/cciss_ioctl.h usr/include/linux/cdk.h usr/include/linux/cdrom.h usr/include/linux/cgroupstats.h usr/include/linux/chio.h usr/include/linux/cm4000_cs.h usr/include/linux/cn_proc.h usr/include/linux/coda.h usr/include/linux/coda_psdev.h usr/include/linux/coff.h usr/include/linux/comstats.h usr/include/linux/connector.h usr/include/linux/const.h usr/include/linux/cramfs_fs.h usr/include/linux/cuda.h usr/include/linux/cyclades.h usr/include/linux/cycx_cfm.h usr/include/linux/dcbnl.h usr/include/linux/dccp.h usr/include/linux/dlm.h usr/include/linux/dlm_device.h usr/include/linux/dlm_netlink.h usr/include/linux/dlm_plock.h usr/include/linux/dlmconstants.h usr/include/linux/dm-ioctl.h usr/include/linux/dm-log-userspace.h usr/include/linux/dn.h usr/include/linux/dqblk_xfs.h usr/include/linux/dvb/audio.h usr/include/linux/dvb/ca.h usr/include/linux/dvb/dmx.h usr/include/linux/dvb/frontend.h usr/include/linux/dvb/net.h usr/include/linux/dvb/osd.h usr/include/linux/dvb/version.h usr/include/linux/dvb/video.h usr/include/linux/edd.h usr/include/linux/efs_fs_sb.h usr/include/linux/elf-em.h usr/include/linux/elf-fdpic.h usr/include/linux/elf.h usr/include/linux/elfcore.h usr/include/linux/errno.h usr/include/linux/errqueue.h usr/include/linux/ethtool.h usr/include/linux/eventpoll.h usr/include/linux/ext2_fs.h usr/include/linux/fadvise.h usr/include/linux/falloc.h usr/include/linux/fb.h usr/include/linux/fcntl.h usr/include/linux/fd.h usr/include/linux/fdreg.h usr/include/linux/fib_rules.h usr/include/linux/fiemap.h usr/include/linux/filter.h usr/include/linux/firewire-cdev.h usr/include/linux/firewire-constants.h usr/include/linux/flat.h usr/include/linux/fs.h usr/include/linux/fuse.h usr/include/linux/futex.h usr/include/linux/gameport.h usr/include/linux/gen_stats.h usr/include/linux/generic_serial.h usr/include/linux/genetlink.h usr/include/linux/gfs2_ondisk.h usr/include/linux/gigaset_dev.h usr/include/linux/hayesesp.h usr/include/linux/hdlc.h usr/include/linux/hdlc/ioctl.h usr/include/linux/hdlcdrv.h usr/include/linux/hdreg.h usr/include/linux/hid.h usr/include/linux/hiddev.h usr/include/linux/hidraw.h usr/include/linux/hpet.h usr/include/linux/hysdn_if.h usr/include/linux/i2c-dev.h usr/include/linux/i2c.h usr/include/linux/i2o-dev.h usr/include/linux/i8k.h usr/include/linux/icmp.h usr/include/linux/icmpv6.h usr/include/linux/if.h usr/include/linux/if_addr.h usr/include/linux/if_addrlabel.h usr/include/linux/if_arcnet.h usr/include/linux/if_arp.h usr/include/linux/if_bonding.h usr/include/linux/if_bridge.h usr/include/linux/if_cablemodem.h usr/include/linux/if_ec.h usr/include/linux/if_eql.h usr/include/linux/if_ether.h usr/include/linux/if_fc.h usr/include/linux/if_fddi.h usr/include/linux/if_frad.h usr/include/linux/if_hippi.h usr/include/linux/if_infiniband.h usr/include/linux/if_link.h usr/include/linux/if_ltalk.h usr/include/linux/if_packet.h usr/include/linux/if_phonet.h usr/include/linux/if_plip.h usr/include/linux/if_ppp.h usr/include/linux/if_pppol2tp.h usr/include/linux/if_pppox.h usr/include/linux/if_slip.h usr/include/linux/if_strip.h usr/include/linux/if_tr.h usr/include/linux/if_tun.h usr/include/linux/if_tunnel.h usr/include/linux/if_vlan.h usr/include/linux/igmp.h usr/include/linux/in.h usr/include/linux/in6.h usr/include/linux/in_route.h usr/include/linux/inet_diag.h usr/include/linux/inotify.h usr/include/linux/input.h usr/include/linux/ioctl.h usr/include/linux/ip.h usr/include/linux/ip6_tunnel.h usr/include/linux/ip_vs.h usr/include/linux/ipc.h usr/include/linux/ipmi.h usr/include/linux/ipmi_msgdefs.h usr/include/linux/ipsec.h usr/include/linux/ipv6.h usr/include/linux/ipv6_route.h usr/include/linux/ipx.h usr/include/linux/irda.h usr/include/linux/irqnr.h usr/include/linux/isdn.h usr/include/linux/isdn/capicmd.h usr/include/linux/isdn_divertif.h usr/include/linux/isdn_ppp.h usr/include/linux/isdnif.h usr/include/linux/iso_fs.h usr/include/linux/ivtv.h usr/include/linux/ivtvfb.h usr/include/linux/ixjuser.h usr/include/linux/jffs2.h usr/include/linux/joystick.h usr/include/linux/kd.h usr/include/linux/kdev_t.h usr/include/linux/kernel.h usr/include/linux/kernelcapi.h usr/include/linux/keyboard.h usr/include/linux/keyctl.h usr/include/linux/kvm.h usr/include/linux/kvm_para.h usr/include/linux/libc-compat.h usr/include/linux/limits.h usr/include/linux/llc.h usr/include/linux/loop.h usr/include/linux/lp.h usr/include/linux/magic.h usr/include/linux/major.h usr/include/linux/map_to_7segment.h usr/include/linux/matroxfb.h usr/include/linux/mempolicy.h usr/include/linux/meye.h usr/include/linux/mii.h usr/include/linux/minix_fs.h usr/include/linux/mman.h usr/include/linux/mmtimer.h usr/include/linux/mqueue.h usr/include/linux/mroute.h usr/include/linux/mroute6.h usr/include/linux/msdos_fs.h usr/include/linux/msg.h usr/include/linux/mtio.h usr/include/linux/n_r3964.h usr/include/linux/nbd.h usr/include/linux/ncp.h usr/include/linux/ncp_fs.h usr/include/linux/ncp_mount.h usr/include/linux/ncp_no.h usr/include/linux/neighbour.h usr/include/linux/net.h usr/include/linux/net_dropmon.h usr/include/linux/net_tstamp.h usr/include/linux/netdevice.h usr/include/linux/netfilter.h usr/include/linux/netfilter/ipset/ip_set.h usr/include/linux/netfilter/ipset/ip_set_bitmap.h usr/include/linux/netfilter/ipset/ip_set_hash.h usr/include/linux/netfilter/ipset/ip_set_list.h usr/include/linux/netfilter/nf_conntrack_common.h usr/include/linux/netfilter/nf_conntrack_ftp.h usr/include/linux/netfilter/nf_conntrack_sctp.h usr/include/linux/netfilter/nf_conntrack_tcp.h usr/include/linux/netfilter/nf_conntrack_tuple_common.h usr/include/linux/netfilter/nfnetlink.h usr/include/linux/netfilter/nfnetlink_compat.h usr/include/linux/netfilter/nfnetlink_conntrack.h usr/include/linux/netfilter/nfnetlink_log.h usr/include/linux/netfilter/nfnetlink_queue.h usr/include/linux/netfilter/x_tables.h usr/include/linux/netfilter/xt_AUDIT.h usr/include/linux/netfilter/xt_CHECKSUM.h usr/include/linux/netfilter/xt_CLASSIFY.h usr/include/linux/netfilter/xt_CONNMARK.h usr/include/linux/netfilter/xt_CONNSECMARK.h usr/include/linux/netfilter/xt_DSCP.h usr/include/linux/netfilter/xt_LED.h usr/include/linux/netfilter/xt_MARK.h usr/include/linux/netfilter/xt_NFLOG.h usr/include/linux/netfilter/xt_NFQUEUE.h usr/include/linux/netfilter/xt_RATEEST.h usr/include/linux/netfilter/xt_SECMARK.h usr/include/linux/netfilter/xt_TCPMSS.h usr/include/linux/netfilter/xt_TCPOPTSTRIP.h usr/include/linux/netfilter/xt_TPROXY.h usr/include/linux/netfilter/xt_cluster.h usr/include/linux/netfilter/xt_comment.h usr/include/linux/netfilter/xt_connbytes.h usr/include/linux/netfilter/xt_connlimit.h usr/include/linux/netfilter/xt_connmark.h usr/include/linux/netfilter/xt_conntrack.h usr/include/linux/netfilter/xt_dccp.h usr/include/linux/netfilter/xt_dscp.h usr/include/linux/netfilter/xt_esp.h usr/include/linux/netfilter/xt_hashlimit.h usr/include/linux/netfilter/xt_helper.h usr/include/linux/netfilter/xt_iprange.h usr/include/linux/netfilter/xt_length.h usr/include/linux/netfilter/xt_limit.h usr/include/linux/netfilter/xt_mac.h usr/include/linux/netfilter/xt_mark.h usr/include/linux/netfilter/xt_multiport.h usr/include/linux/netfilter/xt_osf.h usr/include/linux/netfilter/xt_owner.h usr/include/linux/netfilter/xt_physdev.h usr/include/linux/netfilter/xt_pkttype.h usr/include/linux/netfilter/xt_policy.h usr/include/linux/netfilter/xt_quota.h usr/include/linux/netfilter/xt_rateest.h usr/include/linux/netfilter/xt_realm.h usr/include/linux/netfilter/xt_recent.h usr/include/linux/netfilter/xt_sctp.h usr/include/linux/netfilter/xt_set.h usr/include/linux/netfilter/xt_state.h usr/include/linux/netfilter/xt_statistic.h usr/include/linux/netfilter/xt_string.h usr/include/linux/netfilter/xt_tcpmss.h usr/include/linux/netfilter/xt_tcpudp.h usr/include/linux/netfilter/xt_time.h usr/include/linux/netfilter/xt_u32.h usr/include/linux/netfilter_arp.h usr/include/linux/netfilter_arp/arp_tables.h usr/include/linux/netfilter_arp/arpt_mangle.h usr/include/linux/netfilter_bridge.h usr/include/linux/netfilter_bridge/ebt_802_3.h usr/include/linux/netfilter_bridge/ebt_among.h usr/include/linux/netfilter_bridge/ebt_arp.h usr/include/linux/netfilter_bridge/ebt_arpreply.h usr/include/linux/netfilter_bridge/ebt_ip.h usr/include/linux/netfilter_bridge/ebt_limit.h usr/include/linux/netfilter_bridge/ebt_log.h usr/include/linux/netfilter_bridge/ebt_mark_m.h usr/include/linux/netfilter_bridge/ebt_mark_t.h usr/include/linux/netfilter_bridge/ebt_nat.h usr/include/linux/netfilter_bridge/ebt_pkttype.h usr/include/linux/netfilter_bridge/ebt_redirect.h usr/include/linux/netfilter_bridge/ebt_stp.h usr/include/linux/netfilter_bridge/ebt_ulog.h usr/include/linux/netfilter_bridge/ebt_vlan.h usr/include/linux/netfilter_bridge/ebtables.h usr/include/linux/netfilter_decnet.h usr/include/linux/netfilter_ipv4.h usr/include/linux/netfilter_ipv4/ip_queue.h usr/include/linux/netfilter_ipv4/ip_tables.h usr/include/linux/netfilter_ipv4/ipt_CLUSTERIP.h usr/include/linux/netfilter_ipv4/ipt_ECN.h usr/include/linux/netfilter_ipv4/ipt_LOG.h usr/include/linux/netfilter_ipv4/ipt_REJECT.h usr/include/linux/netfilter_ipv4/ipt_SAME.h usr/include/linux/netfilter_ipv4/ipt_TTL.h usr/include/linux/netfilter_ipv4/ipt_ULOG.h usr/include/linux/netfilter_ipv4/ipt_addrtype.h usr/include/linux/netfilter_ipv4/ipt_ah.h usr/include/linux/netfilter_ipv4/ipt_ecn.h usr/include/linux/netfilter_ipv4/ipt_realm.h usr/include/linux/netfilter_ipv4/ipt_ttl.h usr/include/linux/netfilter_ipv6.h usr/include/linux/netfilter_ipv6/ip6_tables.h usr/include/linux/netfilter_ipv6/ip6t_HL.h usr/include/linux/netfilter_ipv6/ip6t_LOG.h usr/include/linux/netfilter_ipv6/ip6t_REJECT.h usr/include/linux/netfilter_ipv6/ip6t_ah.h usr/include/linux/netfilter_ipv6/ip6t_frag.h usr/include/linux/netfilter_ipv6/ip6t_hl.h usr/include/linux/netfilter_ipv6/ip6t_ipv6header.h usr/include/linux/netfilter_ipv6/ip6t_mh.h usr/include/linux/netfilter_ipv6/ip6t_opts.h usr/include/linux/netfilter_ipv6/ip6t_rt.h usr/include/linux/netlink.h usr/include/linux/netrom.h usr/include/linux/nfs.h usr/include/linux/nfs2.h usr/include/linux/nfs3.h usr/include/linux/nfs4.h usr/include/linux/nfs4_mount.h usr/include/linux/nfs_fs.h usr/include/linux/nfs_idmap.h usr/include/linux/nfs_mount.h usr/include/linux/nfsacl.h usr/include/linux/nfsd/const.h usr/include/linux/nfsd/debug.h usr/include/linux/nfsd/export.h usr/include/linux/nfsd/nfsfh.h usr/include/linux/nfsd/stats.h usr/include/linux/nfsd/syscall.h usr/include/linux/nl80211.h usr/include/linux/nubus.h usr/include/linux/nvram.h usr/include/linux/oom.h usr/include/linux/param.h usr/include/linux/parport.h usr/include/linux/patchkey.h usr/include/linux/pci.h usr/include/linux/pci_regs.h usr/include/linux/perf_event.h usr/include/linux/personality.h usr/include/linux/pfkeyv2.h usr/include/linux/pg.h usr/include/linux/phantom.h usr/include/linux/phonet.h usr/include/linux/pkt_cls.h usr/include/linux/pkt_sched.h usr/include/linux/pktcdvd.h usr/include/linux/pmu.h usr/include/linux/poll.h usr/include/linux/posix_types.h usr/include/linux/ppdev.h usr/include/linux/ppp-comp.h usr/include/linux/ppp_defs.h usr/include/linux/pps.h usr/include/linux/prctl.h usr/include/linux/ptp_clock.h usr/include/linux/ptrace.h usr/include/linux/qnx4_fs.h usr/include/linux/qnxtypes.h usr/include/linux/quota.h usr/include/linux/radeonfb.h usr/include/linux/raid/md_p.h usr/include/linux/raid/md_u.h usr/include/linux/random.h usr/include/linux/raw.h usr/include/linux/reboot.h usr/include/linux/reiserfs_fs.h usr/include/linux/reiserfs_xattr.h usr/include/linux/resource.h usr/include/linux/rfkill.h usr/include/linux/romfs_fs.h usr/include/linux/rose.h usr/include/linux/route.h usr/include/linux/rtc.h usr/include/linux/rtnetlink.h usr/include/linux/scc.h usr/include/linux/sched.h usr/include/linux/screen_info.h usr/include/linux/sdla.h usr/include/linux/selinux_netlink.h usr/include/linux/sem.h usr/include/linux/serial.h usr/include/linux/serial_core.h usr/include/linux/serial_reg.h usr/include/linux/serio.h usr/include/linux/shm.h usr/include/linux/signal.h usr/include/linux/signalfd.h usr/include/linux/smb.h usr/include/linux/smb_fs.h usr/include/linux/smb_mount.h usr/include/linux/smbno.h usr/include/linux/snmp.h usr/include/linux/socket.h usr/include/linux/sockios.h usr/include/linux/som.h usr/include/linux/sonet.h usr/include/linux/sonypi.h usr/include/linux/sound.h usr/include/linux/soundcard.h usr/include/linux/spi/spidev.h usr/include/linux/stat.h usr/include/linux/stddef.h usr/include/linux/string.h usr/include/linux/sunrpc/debug.h usr/include/linux/suspend_ioctls.h usr/include/linux/swab.h usr/include/linux/synclink.h usr/include/linux/sysctl.h usr/include/linux/taskstats.h usr/include/linux/tc_act/tc_gact.h usr/include/linux/tc_act/tc_ipt.h usr/include/linux/tc_act/tc_mirred.h usr/include/linux/tc_act/tc_nat.h usr/include/linux/tc_act/tc_pedit.h usr/include/linux/tc_act/tc_skbedit.h usr/include/linux/tc_ematch/tc_em_cmp.h usr/include/linux/tc_ematch/tc_em_meta.h usr/include/linux/tc_ematch/tc_em_nbyte.h usr/include/linux/tc_ematch/tc_em_text.h usr/include/linux/tcp.h usr/include/linux/telephony.h usr/include/linux/termios.h usr/include/linux/time.h usr/include/linux/times.h usr/include/linux/timex.h usr/include/linux/tiocl.h usr/include/linux/tipc.h usr/include/linux/tipc_config.h usr/include/linux/toshiba.h usr/include/linux/tty.h usr/include/linux/types.h usr/include/linux/udf_fs_i.h usr/include/linux/udp.h usr/include/linux/uinput.h usr/include/linux/uio.h usr/include/linux/ultrasound.h usr/include/linux/un.h usr/include/linux/unistd.h usr/include/linux/usb/audio.h usr/include/linux/usb/cdc.h usr/include/linux/usb/ch9.h usr/include/linux/usb/g_printer.h usr/include/linux/usb/gadgetfs.h usr/include/linux/usb/midi.h usr/include/linux/usb/tmc.h usr/include/linux/usb/vstusb.h usr/include/linux/usbdevice_fs.h usr/include/linux/utime.h usr/include/linux/utsname.h usr/include/linux/uuid.h usr/include/linux/version.h usr/include/linux/veth.h usr/include/linux/vhost.h usr/include/linux/videodev.h usr/include/linux/videodev2.h usr/include/linux/videotext.h usr/include/linux/virtio_9p.h usr/include/linux/virtio_balloon.h usr/include/linux/virtio_blk.h usr/include/linux/virtio_config.h usr/include/linux/virtio_console.h usr/include/linux/virtio_ids.h usr/include/linux/virtio_net.h usr/include/linux/virtio_pci.h usr/include/linux/virtio_ring.h usr/include/linux/virtio_rng.h usr/include/linux/vt.h usr/include/linux/wait.h usr/include/linux/wanrouter.h usr/include/linux/watchdog.h usr/include/linux/wimax.h usr/include/linux/wimax/i2400m.h usr/include/linux/wireless.h usr/include/linux/x25.h usr/include/linux/xattr.h usr/include/linux/xfrm.h usr/include/locale.h usr/include/malloc.h usr/include/math.h usr/include/mcheck.h usr/include/memory.h usr/include/mntent.h usr/include/monetary.h usr/include/mqueue.h usr/include/mtd/inftl-user.h usr/include/mtd/mtd-abi.h usr/include/mtd/mtd-user.h usr/include/mtd/nftl-user.h usr/include/mtd/ubi-user.h usr/include/net/ethernet.h usr/include/net/if.h usr/include/net/if_arp.h usr/include/net/if_packet.h usr/include/net/if_ppp.h usr/include/net/if_shaper.h usr/include/net/if_slip.h usr/include/net/ppp-comp.h usr/include/net/ppp_defs.h usr/include/net/route.h usr/include/netash/ash.h usr/include/netatalk/at.h usr/include/netax25/ax25.h usr/include/netdb.h usr/include/neteconet/ec.h usr/include/netinet/ether.h usr/include/netinet/icmp6.h usr/include/netinet/if_ether.h usr/include/netinet/if_fddi.h usr/include/netinet/if_tr.h usr/include/netinet/igmp.h usr/include/netinet/in.h usr/include/netinet/in_systm.h usr/include/netinet/ip.h usr/include/netinet/ip6.h usr/include/netinet/ip_icmp.h usr/include/netinet/tcp.h usr/include/netinet/udp.h usr/include/netipx/ipx.h usr/include/netiucv/iucv.h usr/include/netpacket/packet.h usr/include/netrom/netrom.h usr/include/netrose/rose.h usr/include/nfs/nfs.h usr/include/nl_types.h usr/include/nss.h usr/include/obstack.h usr/include/paths.h usr/include/poll.h usr/include/printf.h usr/include/protocols/routed.h usr/include/protocols/rwhod.h usr/include/protocols/talkd.h usr/include/protocols/timed.h usr/include/pthread.h usr/include/pty.h usr/include/pwd.h usr/include/rdma/ib_user_cm.h usr/include/rdma/ib_user_mad.h usr/include/rdma/ib_user_sa.h usr/include/rdma/ib_user_verbs.h usr/include/rdma/rdma_netlink.h usr/include/rdma/rdma_user_cm.h usr/include/re_comp.h usr/include/regex.h usr/include/regexp.h usr/include/resolv.h usr/include/rpc/auth.h usr/include/rpc/auth_des.h usr/include/rpc/auth_unix.h usr/include/rpc/clnt.h usr/include/rpc/des_crypt.h usr/include/rpc/key_prot.h usr/include/rpc/netdb.h usr/include/rpc/pmap_clnt.h usr/include/rpc/pmap_prot.h usr/include/rpc/pmap_rmt.h usr/include/rpc/rpc.h usr/include/rpc/rpc_des.h usr/include/rpc/rpc_msg.h usr/include/rpc/svc.h usr/include/rpc/svc_auth.h usr/include/rpc/types.h usr/include/rpc/xdr.h usr/include/rpcsvc/bootparam.h usr/include/rpcsvc/bootparam_prot.h usr/include/rpcsvc/bootparam_prot.x usr/include/rpcsvc/key_prot.h usr/include/rpcsvc/key_prot.x usr/include/rpcsvc/klm_prot.h usr/include/rpcsvc/klm_prot.x usr/include/rpcsvc/mount.h usr/include/rpcsvc/mount.x usr/include/rpcsvc/nfs_prot.h usr/include/rpcsvc/nfs_prot.x usr/include/rpcsvc/nis.h usr/include/rpcsvc/nis.x usr/include/rpcsvc/nis_callback.h usr/include/rpcsvc/nis_callback.x usr/include/rpcsvc/nis_object.x usr/include/rpcsvc/nis_tags.h usr/include/rpcsvc/nislib.h usr/include/rpcsvc/nlm_prot.h usr/include/rpcsvc/nlm_prot.x usr/include/rpcsvc/rex.h usr/include/rpcsvc/rex.x usr/include/rpcsvc/rstat.h usr/include/rpcsvc/rstat.x usr/include/rpcsvc/rusers.h usr/include/rpcsvc/rusers.x usr/include/rpcsvc/sm_inter.h usr/include/rpcsvc/sm_inter.x usr/include/rpcsvc/spray.h usr/include/rpcsvc/spray.x usr/include/rpcsvc/yp.h usr/include/rpcsvc/yp.x usr/include/rpcsvc/yp_prot.h usr/include/rpcsvc/ypclnt.h usr/include/rpcsvc/yppasswd.h usr/include/rpcsvc/yppasswd.x usr/include/rpcsvc/ypupd.h usr/include/sched.h usr/include/scsi/scsi.h usr/include/scsi/scsi_ioctl.h usr/include/scsi/sg.h usr/include/search.h usr/include/semaphore.h usr/include/setjmp.h usr/include/sgtty.h usr/include/shadow.h usr/include/signal.h usr/include/sound/asequencer.h usr/include/sound/asound.h usr/include/sound/asound_fm.h usr/include/sound/emu10k1.h usr/include/sound/hdsp.h usr/include/sound/hdspm.h usr/include/sound/sb16_csp.h usr/include/sound/sfnt_info.h usr/include/sound/sscape_ioctl.h usr/include/spawn.h usr/include/stab.h usr/include/stdint.h usr/include/stdio.h usr/include/stdio_ext.h usr/include/stdlib.h usr/include/string.h usr/include/strings.h usr/include/symcat.h usr/include/sys/acct.h usr/include/sys/bitypes.h usr/include/sys/cdefs.h usr/include/sys/debugreg.h usr/include/sys/dir.h usr/include/sys/epoll.h usr/include/sys/errno.h usr/include/sys/eventfd.h usr/include/sys/fcntl.h usr/include/sys/file.h usr/include/sys/fsuid.h usr/include/sys/gmon.h usr/include/sys/gmon_out.h usr/include/sys/inotify.h usr/include/sys/io.h usr/include/sys/ioctl.h usr/include/sys/ipc.h usr/include/sys/kd.h usr/include/sys/kdaemon.h usr/include/sys/klog.h usr/include/sys/mman.h usr/include/sys/mount.h usr/include/sys/msg.h usr/include/sys/mtio.h usr/include/sys/param.h usr/include/sys/pci.h usr/include/sys/perm.h usr/include/sys/personality.h usr/include/sys/poll.h usr/include/sys/prctl.h usr/include/sys/procfs.h usr/include/sys/profil.h usr/include/sys/ptrace.h usr/include/sys/queue.h usr/include/sys/quota.h usr/include/sys/raw.h usr/include/sys/reboot.h usr/include/sys/reg.h usr/include/sys/resource.h usr/include/sys/select.h usr/include/sys/sem.h usr/include/sys/sendfile.h usr/include/sys/shm.h usr/include/sys/signal.h usr/include/sys/signalfd.h usr/include/sys/socket.h usr/include/sys/socketvar.h usr/include/sys/soundcard.h usr/include/sys/stat.h usr/include/sys/statfs.h usr/include/sys/statvfs.h usr/include/sys/swap.h usr/include/sys/syscall.h usr/include/sys/sysctl.h usr/include/sys/sysinfo.h usr/include/sys/syslog.h usr/include/sys/sysmacros.h usr/include/sys/termios.h usr/include/sys/time.h usr/include/sys/timeb.h usr/include/sys/timerfd.h usr/include/sys/times.h usr/include/sys/timex.h usr/include/sys/ttychars.h usr/include/sys/ttydefaults.h usr/include/sys/types.h usr/include/sys/ucontext.h usr/include/sys/uio.h usr/include/sys/ultrasound.h usr/include/sys/un.h usr/include/sys/unistd.h usr/include/sys/user.h usr/include/sys/ustat.h usr/include/sys/utsname.h usr/include/sys/vfs.h usr/include/sys/vlimit.h usr/include/sys/vt.h usr/include/sys/vtimes.h usr/include/sys/wait.h usr/include/sys/xattr.h usr/include/syscall.h usr/include/sysexits.h usr/include/syslog.h usr/include/tar.h usr/include/termio.h usr/include/termios.h usr/include/tgmath.h usr/include/thread_db.h usr/include/time.h usr/include/ttyent.h usr/include/uapi/nvme.h usr/include/ucontext.h usr/include/ulimit.h usr/include/unistd.h usr/include/ustat.h usr/include/utime.h usr/include/utmp.h usr/include/utmpx.h usr/include/values.h usr/include/video/edid.h usr/include/video/sisfb.h usr/include/video/uvesafb.h usr/include/wait.h usr/include/wchar.h usr/include/wctype.h usr/include/wordexp.h usr/include/xen/evtchn.h usr/include/xlocale.h -usr/lib64/Mcrt1.o -usr/lib64/Scrt1.o -usr/lib64/crt1.o -usr/lib64/crti.o -usr/lib64/crtn.o -usr/lib/gcc/x86_64-redhat-linux/4.4.4/SYSCALLS.c.X -usr/lib/gcc/x86_64-redhat-linux/4.4.4/crtbegin.o -usr/lib/gcc/x86_64-redhat-linux/4.4.4/crtbeginS.o -usr/lib/gcc/x86_64-redhat-linux/4.4.4/crtbeginT.o -usr/lib/gcc/x86_64-redhat-linux/4.4.4/crtend.o -usr/lib/gcc/x86_64-redhat-linux/4.4.4/crtendS.o -usr/lib/gcc/x86_64-redhat-linux/4.4.4/crtfastmath.o -usr/lib/gcc/x86_64-redhat-linux/4.4.4/crtprec32.o -usr/lib/gcc/x86_64-redhat-linux/4.4.4/crtprec64.o -usr/lib/gcc/x86_64-redhat-linux/4.4.4/crtprec80.o +usr/lib/Mcrt1.o +usr/lib/Scrt1.o +usr/lib/crt1.o +usr/lib/crti.o +usr/lib/crtn.o +usr/lib/gcc/i686-redhat-linux/4.4.4/libstdc++.a +usr/lib/gcc/i686-redhat-linux/4.4.4/libstdc++.so +usr/lib/gcc/i686-redhat-linux/4.4.4/libsupc++.a +usr/lib/gcc/i686-redhat-linux/4.4.7 usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/crtbegin.o usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/crtbeginS.o usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/crtbeginT.o usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/crtend.o usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/crtendS.o usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/crtfastmath.o usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/crtprec32.o usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/crtprec64.o usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/crtprec80.o usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/libgcc.a usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/libgcc_eh.a usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/libgcc_s.so usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/libgcov.a usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/libgfortran.a usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/libgfortran.so usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/libgfortranbegin.a usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/libgomp.a usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/libgomp.so usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/libmudflap.a usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/libmudflap.so usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/libmudflapth.a usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/libmudflapth.so usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/libstdc++.a usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/libstdc++.so usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/libsupc++.a +usr/lib/gcc/x86_64-redhat-linux/4.4.4/SYSCALLS.c.X +usr/lib/gcc/x86_64-redhat-linux/4.4.4/crtbegin.o +usr/lib/gcc/x86_64-redhat-linux/4.4.4/crtbeginS.o +usr/lib/gcc/x86_64-redhat-linux/4.4.4/crtbeginT.o +usr/lib/gcc/x86_64-redhat-linux/4.4.4/crtend.o +usr/lib/gcc/x86_64-redhat-linux/4.4.4/crtendS.o +usr/lib/gcc/x86_64-redhat-linux/4.4.4/crtfastmath.o +usr/lib/gcc/x86_64-redhat-linux/4.4.4/crtprec32.o +usr/lib/gcc/x86_64-redhat-linux/4.4.4/crtprec64.o +usr/lib/gcc/x86_64-redhat-linux/4.4.4/crtprec80.o usr/lib/gcc/x86_64-redhat-linux/4.4.4/finclude/omp_lib.f90 usr/lib/gcc/x86_64-redhat-linux/4.4.4/finclude/omp_lib.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/finclude/omp_lib.mod usr/lib/gcc/x86_64-redhat-linux/4.4.4/finclude/omp_lib_kinds.mod usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/abmintrin.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/ammintrin.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/avxintrin.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/bmiintrin.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/bmmintrin.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/cpuid.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/cross-stdarg.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/emmintrin.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/f16cintrin.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/float.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/fma4intrin.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/immintrin.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/iso646.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/limits.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/lwpintrin.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/mm3dnow.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/mm_malloc.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/mmintrin.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/nmmintrin.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/omp.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/pmmintrin.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/popcntintrin.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/smmintrin.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/stdarg.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/stdbool.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/stddef.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/stdfix.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/syslimits.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/tbmintrin.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/tmmintrin.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/unwind.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/varargs.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/wmmintrin.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/x86intrin.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/xmmintrin.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/include/xopintrin.h usr/lib/gcc/x86_64-redhat-linux/4.4.4/libgcc.a usr/lib/gcc/x86_64-redhat-linux/4.4.4/libgcc_eh.a usr/lib/gcc/x86_64-redhat-linux/4.4.4/libgcc_s.so usr/lib/gcc/x86_64-redhat-linux/4.4.4/libgcov.a usr/lib/gcc/x86_64-redhat-linux/4.4.4/libgfortran.a usr/lib/gcc/x86_64-redhat-linux/4.4.4/libgfortran.so usr/lib/gcc/x86_64-redhat-linux/4.4.4/libgfortranbegin.a usr/lib/gcc/x86_64-redhat-linux/4.4.4/libgomp.a usr/lib/gcc/x86_64-redhat-linux/4.4.4/libgomp.so usr/lib/gcc/x86_64-redhat-linux/4.4.4/libgomp.spec usr/lib/gcc/x86_64-redhat-linux/4.4.4/libstdc++.a usr/lib/gcc/x86_64-redhat-linux/4.4.4/libstdc++.so usr/lib/gcc/x86_64-redhat-linux/4.4.4/libsupc++.a usr/lib/gcc/x86_64-redhat-linux/4.4.7 +usr/lib/gcrt1.o +usr/lib/libBrokenLocale.so +usr/lib/libanl.so +usr/lib/libbfd.a +usr/lib/libbfd.so +usr/lib/libbsd-compat.a +usr/lib/libbsd.a +usr/lib/libc.so +usr/lib/libc_nonshared.a +usr/lib/libcidn.so +usr/lib/libcrypt.so +usr/lib/libdl.so +usr/lib/libg.a +usr/lib/libgomp.so.1 +usr/lib/libgomp.so.1.0.0 +usr/lib/libiberty.a +usr/lib/libieee.a +usr/lib/libm.so +usr/lib/libmcheck.a +usr/lib/libnsl.so +usr/lib/libnss_compat.so +usr/lib/libnss_dns.so +usr/lib/libnss_files.so +usr/lib/libnss_hesiod.so +usr/lib/libnss_nis.so +usr/lib/libnss_nisplus.so +usr/lib/libopcodes.a +usr/lib/libopcodes.so +usr/lib/libpthread.so +usr/lib/libpthread_nonshared.a +usr/lib/libresolv.so +usr/lib/librpcsvc.a +usr/lib/librt.so +usr/lib/libthread_db.so +usr/lib/libutil.so +usr/lib64/Mcrt1.o +usr/lib64/Scrt1.o +usr/lib64/crt1.o +usr/lib64/crti.o +usr/lib64/crtn.o usr/lib64/gcrt1.o usr/lib64/libBrokenLocale.so usr/lib64/libanl.so usr/lib64/libbfd-2.20.51.0.2-5.43.el6.so usr/lib64/libbfd.a usr/lib64/libbfd.so usr/lib64/libbsd-compat.a usr/lib64/libbsd.a usr/lib64/libc.so usr/lib64/libc_nonshared.a usr/lib64/libcidn.so usr/lib64/libcrypt.so usr/lib64/libdl.so usr/lib64/libg.a usr/lib64/libgomp.so.1 usr/lib64/libgomp.so.1.0.0 usr/lib64/libiberty.a usr/lib64/libieee.a usr/lib64/libm.so usr/lib64/libmcheck.a usr/lib64/libmpfr.so.1 usr/lib64/libmpfr.so.1.2.0 usr/lib64/libnsl.so usr/lib64/libnss_compat.so usr/lib64/libnss_dns.so usr/lib64/libnss_files.so usr/lib64/libnss_hesiod.so usr/lib64/libnss_nis.so usr/lib64/libnss_nisplus.so usr/lib64/libopcodes-2.20.51.0.2-5.43.el6.so usr/lib64/libopcodes.a usr/lib64/libopcodes.so usr/lib64/libpthread.so usr/lib64/libpthread_nonshared.a usr/lib64/libresolv.so usr/lib64/librpcsvc.a usr/lib64/librt.so usr/lib64/libthread_db.so usr/lib64/libutil.so usr/libexec/gcc/x86_64-redhat-linux/4.4.4/cc1 usr/libexec/gcc/x86_64-redhat-linux/4.4.4/cc1plus usr/libexec/gcc/x86_64-redhat-linux/4.4.4/collect2 usr/libexec/gcc/x86_64-redhat-linux/4.4.4/f951 usr/libexec/gcc/x86_64-redhat-linux/4.4.7 usr/libexec/getconf/default usr/share/doc/binutils-2.20.51.0.2/README usr/share/doc/gcc-4.4.7/COPYING usr/share/doc/gcc-4.4.7/COPYING.LIB usr/share/doc/gcc-4.4.7/COPYING3 usr/share/doc/gcc-4.4.7/COPYING3.LIB usr/share/doc/gcc-4.4.7/ChangeLog-1997.bz2 usr/share/doc/gcc-4.4.7/ChangeLog-1998.bz2 usr/share/doc/gcc-4.4.7/ChangeLog-1999.bz2 usr/share/doc/gcc-4.4.7/ChangeLog-2000.bz2 usr/share/doc/gcc-4.4.7/ChangeLog-2001.bz2 usr/share/doc/gcc-4.4.7/ChangeLog-2002.bz2 usr/share/doc/gcc-4.4.7/ChangeLog-2003.bz2 usr/share/doc/gcc-4.4.7/ChangeLog-2004.bz2 usr/share/doc/gcc-4.4.7/ChangeLog-2005.bz2 usr/share/doc/gcc-4.4.7/ChangeLog-2006.bz2 usr/share/doc/gcc-4.4.7/ChangeLog-2007.bz2 usr/share/doc/gcc-4.4.7/ChangeLog-2008.bz2 usr/share/doc/gcc-4.4.7/ChangeLog.bz2 usr/share/doc/gcc-4.4.7/ChangeLog.dataflow.bz2 usr/share/doc/gcc-4.4.7/ChangeLog.lib.bz2 usr/share/doc/gcc-4.4.7/ChangeLog.ptr.bz2 usr/share/doc/gcc-4.4.7/ChangeLog.tree-ssa.bz2 usr/share/doc/gcc-4.4.7/ChangeLog.tuples.bz2 usr/share/doc/gcc-4.4.7/ChangeLog.vta.bz2 usr/share/doc/gcc-4.4.7/README.Portability usr/share/doc/gcc-c++-4.4.7/ChangeLog-1993.bz2 usr/share/doc/gcc-c++-4.4.7/ChangeLog-1994.bz2 usr/share/doc/gcc-c++-4.4.7/ChangeLog-1995.bz2 usr/share/doc/gcc-c++-4.4.7/ChangeLog-1996.bz2 usr/share/doc/gcc-c++-4.4.7/ChangeLog-1997.bz2 usr/share/doc/gcc-c++-4.4.7/ChangeLog-1998.bz2 usr/share/doc/gcc-c++-4.4.7/ChangeLog-1999.bz2 usr/share/doc/gcc-c++-4.4.7/ChangeLog-2000.bz2 usr/share/doc/gcc-c++-4.4.7/ChangeLog-2001.bz2 usr/share/doc/gcc-c++-4.4.7/ChangeLog-2002.bz2 usr/share/doc/gcc-c++-4.4.7/ChangeLog-2003.bz2 usr/share/doc/gcc-c++-4.4.7/ChangeLog-2004.bz2 usr/share/doc/gcc-c++-4.4.7/ChangeLog-2005.bz2 usr/share/doc/gcc-c++-4.4.7/ChangeLog-2006.bz2 usr/share/doc/gcc-c++-4.4.7/ChangeLog-2007.bz2 usr/share/doc/gcc-c++-4.4.7/ChangeLog-2008.bz2 usr/share/doc/gcc-c++-4.4.7/ChangeLog.bz2 usr/share/doc/gcc-c++-4.4.7/ChangeLog.ptr.bz2 usr/share/doc/gcc-c++-4.4.7/ChangeLog.tree-ssa.bz2 usr/share/doc/gcc-gfortran-4.4.7/ChangeLog-2002.bz2 usr/share/doc/gcc-gfortran-4.4.7/ChangeLog-2002.libgfortran.bz2 usr/share/doc/gcc-gfortran-4.4.7/ChangeLog-2003.bz2 usr/share/doc/gcc-gfortran-4.4.7/ChangeLog-2003.libgfortran.bz2 usr/share/doc/gcc-gfortran-4.4.7/ChangeLog-2004.bz2 usr/share/doc/gcc-gfortran-4.4.7/ChangeLog-2004.libgfortran.bz2 usr/share/doc/gcc-gfortran-4.4.7/ChangeLog-2005.bz2 usr/share/doc/gcc-gfortran-4.4.7/ChangeLog-2005.libgfortran.bz2 usr/share/doc/gcc-gfortran-4.4.7/ChangeLog-2006.bz2 usr/share/doc/gcc-gfortran-4.4.7/ChangeLog-2006.libgfortran.bz2 usr/share/doc/gcc-gfortran-4.4.7/ChangeLog-2007.bz2 usr/share/doc/gcc-gfortran-4.4.7/ChangeLog-2007.libgfortran.bz2 usr/share/doc/gcc-gfortran-4.4.7/ChangeLog-2008.bz2 usr/share/doc/gcc-gfortran-4.4.7/ChangeLog.bz2 usr/share/doc/gcc-gfortran-4.4.7/ChangeLog.libgfortran.bz2 usr/share/doc/gcc-gfortran-4.4.7/ChangeLog.ptr.bz2 usr/share/doc/libgomp-4.4.7/ChangeLog.bz2 usr/share/doc/libstdc++-devel-4.4.7/ChangeLog-1998.bz2 usr/share/doc/libstdc++-devel-4.4.7/ChangeLog-1999.bz2 usr/share/doc/libstdc++-devel-4.4.7/ChangeLog-2000.bz2 usr/share/doc/libstdc++-devel-4.4.7/ChangeLog-2001.bz2 usr/share/doc/libstdc++-devel-4.4.7/ChangeLog-2002.bz2 usr/share/doc/libstdc++-devel-4.4.7/ChangeLog-2003.bz2 usr/share/doc/libstdc++-devel-4.4.7/ChangeLog-2004.bz2 usr/share/doc/libstdc++-devel-4.4.7/ChangeLog-2005.bz2 usr/share/doc/libstdc++-devel-4.4.7/ChangeLog-2006.bz2 usr/share/doc/libstdc++-devel-4.4.7/ChangeLog-2007.bz2 usr/share/doc/libstdc++-devel-4.4.7/ChangeLog.bz2 usr/share/doc/libstdc++-devel-4.4.7/ChangeLog~.bz2 usr/share/doc/libstdc++-devel-4.4.7/README usr/share/doc/mpfr-2.4.1/COPYING usr/share/doc/mpfr-2.4.1/COPYING.LIB usr/share/doc/mpfr-2.4.1/NEWS usr/share/doc/mpfr-2.4.1/README usr/share/info/as.info.gz usr/share/info/bfd.info.gz usr/share/info/binutils.info.gz usr/share/info/configure.info.gz usr/share/info/cpp.info.gz usr/share/info/cppinternals.info.gz usr/share/info/gcc.info.gz usr/share/info/gccinstall.info.gz usr/share/info/gccint.info.gz usr/share/info/gfortran.info.gz usr/share/info/gprof.info.gz usr/share/info/ld.info.gz usr/share/info/libc.info-1.gz usr/share/info/libc.info-10.gz usr/share/info/libc.info-11.gz usr/share/info/libc.info-2.gz usr/share/info/libc.info-3.gz usr/share/info/libc.info-4.gz usr/share/info/libc.info-5.gz usr/share/info/libc.info-6.gz usr/share/info/libc.info-7.gz usr/share/info/libc.info-8.gz usr/share/info/libc.info-9.gz usr/share/info/libc.info.gz usr/share/info/libgomp.info.gz usr/share/info/standards.info.gz usr/share/locale/be/LC_MESSAGES/cpplib.mo usr/share/locale/be/LC_MESSAGES/gcc.mo usr/share/locale/ca/LC_MESSAGES/cpplib.mo usr/share/locale/da/LC_MESSAGES/bfd.mo usr/share/locale/da/LC_MESSAGES/binutils.mo usr/share/locale/da/LC_MESSAGES/cpplib.mo usr/share/locale/da/LC_MESSAGES/gcc.mo usr/share/locale/da/LC_MESSAGES/gprof.mo usr/share/locale/da/LC_MESSAGES/ld.mo usr/share/locale/da/LC_MESSAGES/opcodes.mo usr/share/locale/de/LC_MESSAGES/cpplib.mo usr/share/locale/de/LC_MESSAGES/gcc.mo usr/share/locale/de/LC_MESSAGES/gprof.mo usr/share/locale/de/LC_MESSAGES/opcodes.mo usr/share/locale/el/LC_MESSAGES/cpplib.mo usr/share/locale/el/LC_MESSAGES/gcc.mo usr/share/locale/es/LC_MESSAGES/bfd.mo usr/share/locale/es/LC_MESSAGES/binutils.mo usr/share/locale/es/LC_MESSAGES/cpplib.mo usr/share/locale/es/LC_MESSAGES/gas.mo usr/share/locale/es/LC_MESSAGES/gcc.mo usr/share/locale/es/LC_MESSAGES/gprof.mo usr/share/locale/es/LC_MESSAGES/ld.mo usr/share/locale/es/LC_MESSAGES/opcodes.mo usr/share/locale/fi/LC_MESSAGES/bfd.mo usr/share/locale/fi/LC_MESSAGES/binutils.mo usr/share/locale/fi/LC_MESSAGES/gcc.mo usr/share/locale/fi/LC_MESSAGES/gprof.mo usr/share/locale/fi/LC_MESSAGES/ld.mo usr/share/locale/fi/LC_MESSAGES/opcodes.mo usr/share/locale/fr/LC_MESSAGES/bfd.mo usr/share/locale/fr/LC_MESSAGES/binutils.mo usr/share/locale/fr/LC_MESSAGES/cpplib.mo usr/share/locale/fr/LC_MESSAGES/gas.mo usr/share/locale/fr/LC_MESSAGES/gcc.mo usr/share/locale/fr/LC_MESSAGES/gprof.mo usr/share/locale/fr/LC_MESSAGES/ld.mo usr/share/locale/fr/LC_MESSAGES/opcodes.mo usr/share/locale/ga/LC_MESSAGES/gprof.mo usr/share/locale/ga/LC_MESSAGES/ld.mo usr/share/locale/ga/LC_MESSAGES/opcodes.mo usr/share/locale/id/LC_MESSAGES/bfd.mo usr/share/locale/id/LC_MESSAGES/binutils.mo usr/share/locale/id/LC_MESSAGES/cpplib.mo usr/share/locale/id/LC_MESSAGES/gas.mo usr/share/locale/id/LC_MESSAGES/gcc.mo usr/share/locale/id/LC_MESSAGES/gprof.mo usr/share/locale/id/LC_MESSAGES/ld.mo usr/share/locale/id/LC_MESSAGES/opcodes.mo usr/share/locale/ja/LC_MESSAGES/bfd.mo usr/share/locale/ja/LC_MESSAGES/binutils.mo usr/share/locale/ja/LC_MESSAGES/cpplib.mo usr/share/locale/ja/LC_MESSAGES/gcc.mo usr/share/locale/ms/LC_MESSAGES/gprof.mo usr/share/locale/nl/LC_MESSAGES/cpplib.mo usr/share/locale/nl/LC_MESSAGES/gcc.mo usr/share/locale/nl/LC_MESSAGES/gprof.mo usr/share/locale/nl/LC_MESSAGES/opcodes.mo usr/share/locale/pt_BR/LC_MESSAGES/gprof.mo usr/share/locale/pt_BR/LC_MESSAGES/opcodes.mo usr/share/locale/ro/LC_MESSAGES/bfd.mo usr/share/locale/ro/LC_MESSAGES/binutils.mo usr/share/locale/ro/LC_MESSAGES/gprof.mo usr/share/locale/ro/LC_MESSAGES/opcodes.mo usr/share/locale/ru/LC_MESSAGES/bfd.mo usr/share/locale/ru/LC_MESSAGES/binutils.mo usr/share/locale/ru/LC_MESSAGES/gcc.mo usr/share/locale/rw/LC_MESSAGES/bfd.mo usr/share/locale/rw/LC_MESSAGES/binutils.mo usr/share/locale/rw/LC_MESSAGES/gas.mo usr/share/locale/rw/LC_MESSAGES/gprof.mo usr/share/locale/sk/LC_MESSAGES/binutils.mo usr/share/locale/sr/LC_MESSAGES/gcc.mo usr/share/locale/sv/LC_MESSAGES/bfd.mo usr/share/locale/sv/LC_MESSAGES/binutils.mo usr/share/locale/sv/LC_MESSAGES/cpplib.mo usr/share/locale/sv/LC_MESSAGES/gcc.mo usr/share/locale/sv/LC_MESSAGES/gprof.mo usr/share/locale/sv/LC_MESSAGES/ld.mo usr/share/locale/sv/LC_MESSAGES/opcodes.mo usr/share/locale/tr/LC_MESSAGES/bfd.mo usr/share/locale/tr/LC_MESSAGES/binutils.mo usr/share/locale/tr/LC_MESSAGES/cpplib.mo usr/share/locale/tr/LC_MESSAGES/gas.mo usr/share/locale/tr/LC_MESSAGES/gcc.mo usr/share/locale/tr/LC_MESSAGES/gprof.mo usr/share/locale/tr/LC_MESSAGES/ld.mo usr/share/locale/tr/LC_MESSAGES/opcodes.mo usr/share/locale/uk/LC_MESSAGES/binutils.mo usr/share/locale/uk/LC_MESSAGES/cpplib.mo usr/share/locale/vi/LC_MESSAGES/bfd.mo usr/share/locale/vi/LC_MESSAGES/binutils.mo usr/share/locale/vi/LC_MESSAGES/cpplib.mo usr/share/locale/vi/LC_MESSAGES/gprof.mo usr/share/locale/vi/LC_MESSAGES/ld.mo usr/share/locale/vi/LC_MESSAGES/opcodes.mo usr/share/locale/zh_CN/LC_MESSAGES/bfd.mo usr/share/locale/zh_CN/LC_MESSAGES/binutils.mo usr/share/locale/zh_CN/LC_MESSAGES/cpplib.mo usr/share/locale/zh_CN/LC_MESSAGES/gcc.mo usr/share/locale/zh_CN/LC_MESSAGES/ld.mo usr/share/locale/zh_CN/LC_MESSAGES/opcodes.mo usr/share/locale/zh_TW/LC_MESSAGES/binutils.mo usr/share/locale/zh_TW/LC_MESSAGES/cpplib.mo usr/share/locale/zh_TW/LC_MESSAGES/gcc.mo usr/share/locale/zh_TW/LC_MESSAGES/ld.mo usr/share/man/man1/addr2line.1.gz usr/share/man/man1/ar.1.gz usr/share/man/man1/as.1.gz usr/share/man/man1/c++filt.1.gz usr/share/man/man1/cpp.1.gz usr/share/man/man1/g++.1.gz usr/share/man/man1/gcc.1.gz usr/share/man/man1/gcov.1.gz usr/share/man/man1/gfortran.1.gz usr/share/man/man1/gprof.1.gz usr/share/man/man1/ld.1.gz usr/share/man/man1/nm.1.gz usr/share/man/man1/objcopy.1.gz usr/share/man/man1/objdump.1.gz usr/share/man/man1/protoize.1.gz usr/share/man/man1/ranlib.1.gz usr/share/man/man1/readelf.1.gz usr/share/man/man1/size.1.gz usr/share/man/man1/strings.1.gz usr/share/man/man1/strip.1.gz usr/share/man/man1/unprotoize.1.gz Index: head/devel/linux-c6-libgfortran/distinfo.x86_64 =================================================================== --- head/devel/linux-c6-libgfortran/distinfo.x86_64 (revision 413167) +++ head/devel/linux-c6-libgfortran/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/libgfortran-4.4.7-16.el6.x86_64.rpm) = abaa47e05a2c7e58f273887ea4d857c2534f4ba0413caa9fdd8d65c1bf2b9297 SIZE (rpm/x86_64/centos/6.7/libgfortran-4.4.7-16.el6.x86_64.rpm) = 273800 +SHA256 (rpm/x86_64/centos/6.7/libgfortran-4.4.7-16.el6.i686.rpm) = 74c21298f8a71e41b2817ec14bd1041cb535ea4a6aff9847ad8f23a5d9fe2d7c +SIZE (rpm/x86_64/centos/6.7/libgfortran-4.4.7-16.el6.i686.rpm) = 251168 SHA256 (rpm/x86_64/centos/6.7/gcc-4.4.7-16.el6.src.rpm) = eea99c50677354efffd12a70887d6be686ddcfe1f8d59328728683517e511221 SIZE (rpm/x86_64/centos/6.7/gcc-4.4.7-16.el6.src.rpm) = 52391361 Index: head/devel/linux-c6-libgfortran/pkg-plist.x86_64 =================================================================== --- head/devel/linux-c6-libgfortran/pkg-plist.x86_64 (revision 413167) +++ head/devel/linux-c6-libgfortran/pkg-plist.x86_64 (revision 413168) @@ -1,2 +1,4 @@ +usr/lib/libgfortran.so.3.0.0 +usr/lib/libgfortran.so.3 usr/lib64/libgfortran.so.3.0.0 usr/lib64/libgfortran.so.3 Property changes on: head/devel/linux-c6-libgfortran/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/devel/linux-c6-libglade2/distinfo.x86_64 =================================================================== --- head/devel/linux-c6-libglade2/distinfo.x86_64 (revision 413167) +++ head/devel/linux-c6-libglade2/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/libglade2-2.6.4-3.1.el6.x86_64.rpm) = 29fc2725c6a810cb3b49047afac2526a2799afcff61d47f47f95a9cb6eb20e3b SIZE (rpm/x86_64/centos/6.7/libglade2-2.6.4-3.1.el6.x86_64.rpm) = 60936 +SHA256 (rpm/x86_64/centos/6.7/libglade2-2.6.4-3.1.el6.i686.rpm) = 0d4afe4280e4cbbf7ead05f8ceddb49c40898b1de9e8dac4a69fc07313814a78 +SIZE (rpm/x86_64/centos/6.7/libglade2-2.6.4-3.1.el6.i686.rpm) = 60960 SHA256 (rpm/x86_64/centos/6.7/libglade2-2.6.4-3.1.el6.src.rpm) = 1a68ad52cb5dd9a7bdf5b511d5ac1d9d12ec4f19d93373d9bdb04b4afd753bbb SIZE (rpm/x86_64/centos/6.7/libglade2-2.6.4-3.1.el6.src.rpm) = 371348 Index: head/devel/linux-c6-libglade2/pkg-plist.x86_64 =================================================================== --- head/devel/linux-c6-libglade2/pkg-plist.x86_64 (revision 413167) +++ head/devel/linux-c6-libglade2/pkg-plist.x86_64 (revision 413168) @@ -1,7 +1,10 @@ +usr/lib/libglade-2.0.so.0 +usr/lib/libglade-2.0.so.0.0.7 usr/lib64/libglade-2.0.so.0 usr/lib64/libglade-2.0.so.0.0.7 usr/share/xml/libglade/glade-2.0.dtd @dir usr/share/xml/libglade @dir usr/share/xml +@dir usr/lib/libglade/2.0 @dir usr/lib64/libglade/2.0 @dir usr/lib64/libglade Property changes on: head/devel/linux-c6-libglade2/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/devel/linux-c6-libpciaccess/distinfo.x86_64 =================================================================== --- head/devel/linux-c6-libpciaccess/distinfo.x86_64 (revision 413167) +++ head/devel/linux-c6-libpciaccess/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/libpciaccess-0.13.3-0.1.el6.x86_64.rpm) = bb6ba94465f0a366bbbdcab5e804753571c868bddcb15f2941604c7cc87b6ae1 SIZE (rpm/x86_64/centos/6.7/libpciaccess-0.13.3-0.1.el6.x86_64.rpm) = 24840 +SHA256 (rpm/x86_64/centos/6.7/libpciaccess-0.13.3-0.1.el6.i686.rpm) = 0baa68c3f0078ff741093c44f7a1a34c590e850accc34dd70b730f76f9a8bd0d +SIZE (rpm/x86_64/centos/6.7/libpciaccess-0.13.3-0.1.el6.i686.rpm) = 26320 SHA256 (rpm/x86_64/centos/6.7/libpciaccess-0.13.3-0.1.el6.src.rpm) = 166c510984cfad7b9652a89c1ab5eeb605977f2637393c4703faaeba804e8016 SIZE (rpm/x86_64/centos/6.7/libpciaccess-0.13.3-0.1.el6.src.rpm) = 73004 Index: head/devel/linux-c6-libpciaccess/pkg-plist.x86_64 =================================================================== --- head/devel/linux-c6-libpciaccess/pkg-plist.x86_64 (revision 413167) +++ head/devel/linux-c6-libpciaccess/pkg-plist.x86_64 (revision 413168) @@ -1,4 +1,6 @@ +usr/lib/libpciaccess.so.0 +usr/lib/libpciaccess.so.0.11.1 usr/lib64/libpciaccess.so.0 usr/lib64/libpciaccess.so.0.11.1 usr/share/doc/libpciaccess-0.13.3/AUTHORS usr/share/doc/libpciaccess-0.13.3/COPYING Property changes on: head/devel/linux-c6-libpciaccess/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/devel/linux-c6-libsigc++20/distinfo.x86_64 =================================================================== --- head/devel/linux-c6-libsigc++20/distinfo.x86_64 (revision 413167) +++ head/devel/linux-c6-libsigc++20/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/libsigc++20-2.2.4.2-1.el6.x86_64.rpm) = 1893a6fbcf6c504d2165e069fec27080251d086c7977cc9e2bb064a01e31c839 SIZE (rpm/x86_64/centos/6.7/libsigc++20-2.2.4.2-1.el6.x86_64.rpm) = 54236 +SHA256 (rpm/x86_64/centos/6.7/libsigc++20-2.2.4.2-1.el6.i686.rpm) = e3f3df0720d297c35f87e008de6d40de4329fb17aac2cd047c52783ec3bac05e +SIZE (rpm/x86_64/centos/6.7/libsigc++20-2.2.4.2-1.el6.i686.rpm) = 54644 SHA256 (rpm/x86_64/centos/6.7/libsigc++20-2.2.4.2-1.el6.src.rpm) = 1dd742ac7a01cadcc87ae64bd5b1fd5ba1f7c2ac8fee629ffe6c66583884342a SIZE (rpm/x86_64/centos/6.7/libsigc++20-2.2.4.2-1.el6.src.rpm) = 3604821 Index: head/devel/linux-c6-libsigc++20/pkg-plist.x86_64 =================================================================== --- head/devel/linux-c6-libsigc++20/pkg-plist.x86_64 (revision 413167) +++ head/devel/linux-c6-libsigc++20/pkg-plist.x86_64 (revision 413168) @@ -1,3 +1,5 @@ +usr/lib/libsigc-2.0.so.0.0.0 +usr/lib/libsigc-2.0.so.0 usr/lib64/libsigc-2.0.so.0.0.0 usr/lib64/libsigc-2.0.so.0 Property changes on: head/devel/linux-c6-libsigc++20/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/devel/linux-c6-ncurses-base/Makefile =================================================================== --- head/devel/linux-c6-ncurses-base/Makefile (revision 413167) +++ head/devel/linux-c6-ncurses-base/Makefile (revision 413168) @@ -1,20 +1,20 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= ${LINUX_NAME}-base PORTVERSION= 5.7 PORTREVISION= 2 CATEGORIES= devel linux MAINTAINER= bacon4000@gmail.com COMMENT= Terminfo database required by Linux ncurses programs USE_LINUX= c6 -USE_LINUX_RPM= yes +USE_LINUX_RPM= nolib LINUX_NAME= ncurses RPMVERSION= 4.20090207.el6 SRC_DISTFILES= ${LINUX_NAME}-${PORTVERSION}-${RPMVERSION}${SRC_SUFX}:SOURCE DESCR= ${.CURDIR}/../${LINUX_NAME}/pkg-descr .include Index: head/devel/linux-c6-nspr/distinfo.x86_64 =================================================================== --- head/devel/linux-c6-nspr/distinfo.x86_64 (revision 413167) +++ head/devel/linux-c6-nspr/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/nspr-4.10.8-2.el6_7.x86_64.rpm) = bfdb7611d0a5f624f7193a504c12dbf44c863caf3077c5572bc485fb29ae6704 SIZE (rpm/x86_64/centos/6.7/nspr-4.10.8-2.el6_7.x86_64.rpm) = 116196 +SHA256 (rpm/x86_64/centos/6.7/nspr-4.10.8-2.el6_7.i686.rpm) = 4918a807ce01bae46183b6a1340c9df45625542a2ef912f305666dba8c60329b +SIZE (rpm/x86_64/centos/6.7/nspr-4.10.8-2.el6_7.i686.rpm) = 118892 SHA256 (rpm/x86_64/centos/6.7/nspr-4.10.8-2.el6_7.src.rpm) = 999b3e49fd18fc6982167b3e4059fb770ca228060b832804b2857018417ec3e9 SIZE (rpm/x86_64/centos/6.7/nspr-4.10.8-2.el6_7.src.rpm) = 888909 Index: head/devel/linux-c6-nspr/pkg-plist.x86_64 =================================================================== --- head/devel/linux-c6-nspr/pkg-plist.x86_64 (revision 413167) +++ head/devel/linux-c6-nspr/pkg-plist.x86_64 (revision 413168) @@ -1,3 +1,6 @@ +lib/libnspr4.so +lib/libplc4.so +lib/libplds4.so lib64/libnspr4.so lib64/libplc4.so lib64/libplds4.so Property changes on: head/devel/linux-c6-nspr/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/devel/linux-c6-qt47/Makefile =================================================================== --- head/devel/linux-c6-qt47/Makefile (revision 413167) +++ head/devel/linux-c6-qt47/Makefile (revision 413168) @@ -1,25 +1,26 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= qt47 PORTVERSION= 4.7.2 PORTREVISION= 1 CATEGORIES= devel linux -MASTER_SITES= https://www.mirrorservice.org/sites/dl.atrpms.net/el6-${LINUX_REPO_ARCH}/atrpms/testing/ \ +MASTER_SITES= https://www.mirrorservice.org/sites/dl.atrpms.net/el6-i386/atrpms/testing/ \ + https://www.mirrorservice.org/sites/dl.atrpms.net/el6-x86_64/atrpms/testing/ \ LOCAL/xmj DIST_SUBDIR= rpm/${LINUX_RPM_ARCH}/atrpms/6 MAINTAINER= emulation@FreeBSD.org COMMENT= RPM of QT4 (Linux CentOS 6) ONLY_FOR_ARCHS= i386 amd64 USE_LINUX= c6 -USE_LINUX_APPS= fontconfig png dbuslibs sqlite3 hicontheme +USE_LINUX_APPS= fontconfig png dbuslibs sqlite3 hicontheme openssl USE_LINUX_RPM= yes RPMVERSION= 1_18.el6 USE_LDCONFIG= yes DESCR= ${.CURDIR}/../../devel/qt4/pkg-descr SRC_DISTFILES:= # no file available .include Index: head/devel/linux-c6-qt47/distinfo.x86_64 =================================================================== --- head/devel/linux-c6-qt47/distinfo.x86_64 (revision 413167) +++ head/devel/linux-c6-qt47/distinfo.x86_64 (revision 413168) @@ -1,2 +1,4 @@ SHA256 (rpm/x86_64/atrpms/6/qt47-4.7.2-1_18.el6.x86_64.rpm) = d29376513aec488382e66f15d5cf5f8663a03af2622998c787d400c1a03f314d SIZE (rpm/x86_64/atrpms/6/qt47-4.7.2-1_18.el6.x86_64.rpm) = 4376468 +SHA256 (rpm/x86_64/atrpms/6/qt47-4.7.2-1_18.el6.i686.rpm) = 670d7b46491d81074338575693677000a4c92736dd8472071d15deb2c9a5869c +SIZE (rpm/x86_64/atrpms/6/qt47-4.7.2-1_18.el6.i686.rpm) = 4457248 Property changes on: head/devel/linux-c6-qt47/distinfo.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/devel/linux-c6-qt47/pkg-plist.x86_64 =================================================================== --- head/devel/linux-c6-qt47/pkg-plist.x86_64 (revision 413167) +++ head/devel/linux-c6-qt47/pkg-plist.x86_64 (revision 413168) @@ -1,67 +1,109 @@ etc/ld.so.conf.d/0_qt47-x86_64.conf +etc/ld.so.conf.d/0_qt47-i386.conf usr/bin/qdbus-qt47 +usr/lib/qt47/bin/qdbus +usr/lib/qt47/etc/Trolltech.conf +usr/lib/qt47/libQtCore.so.4 +usr/lib/qt47/libQtCore.so.4.7 +usr/lib/qt47/libQtCore.so.4.7.2 +usr/lib/qt47/libQtDBus.so.4 +usr/lib/qt47/libQtDBus.so.4.7 +usr/lib/qt47/libQtDBus.so.4.7.2 +usr/lib/qt47/libQtNetwork.so.4 +usr/lib/qt47/libQtNetwork.so.4.7 +usr/lib/qt47/libQtNetwork.so.4.7.2 +usr/lib/qt47/libQtScript.so.4 +usr/lib/qt47/libQtScript.so.4.7 +usr/lib/qt47/libQtScript.so.4.7.2 +usr/lib/qt47/libQtSql.so.4 +usr/lib/qt47/libQtSql.so.4.7 +usr/lib/qt47/libQtSql.so.4.7.2 +usr/lib/qt47/libQtTest.so.4 +usr/lib/qt47/libQtTest.so.4.7 +usr/lib/qt47/libQtTest.so.4.7.2 +usr/lib/qt47/libQtXml.so.4 +usr/lib/qt47/libQtXml.so.4.7 +usr/lib/qt47/libQtXml.so.4.7.2 +usr/lib/qt47/libQtXmlPatterns.so.4 +usr/lib/qt47/libQtXmlPatterns.so.4.7 +usr/lib/qt47/libQtXmlPatterns.so.4.7.2 +usr/lib/qt47/phrasebooks/danish.qph +usr/lib/qt47/phrasebooks/dutch.qph +usr/lib/qt47/phrasebooks/finnish.qph +usr/lib/qt47/phrasebooks/french.qph +usr/lib/qt47/phrasebooks/german.qph +usr/lib/qt47/phrasebooks/hungarian.qph +usr/lib/qt47/phrasebooks/italian.qph +usr/lib/qt47/phrasebooks/japanese.qph +usr/lib/qt47/phrasebooks/norwegian.qph +usr/lib/qt47/phrasebooks/polish.qph +usr/lib/qt47/phrasebooks/russian.qph +usr/lib/qt47/phrasebooks/spanish.qph +usr/lib/qt47/phrasebooks/swedish.qph +usr/lib/qt47/plugins/sqldrivers/libqsqlite.so usr/lib64/qt47/bin/qdbus usr/lib64/qt47/etc/Trolltech.conf usr/lib64/qt47/libQtCore.so.4 usr/lib64/qt47/libQtCore.so.4.7 usr/lib64/qt47/libQtCore.so.4.7.2 usr/lib64/qt47/libQtDBus.so.4 usr/lib64/qt47/libQtDBus.so.4.7 usr/lib64/qt47/libQtDBus.so.4.7.2 usr/lib64/qt47/libQtNetwork.so.4 usr/lib64/qt47/libQtNetwork.so.4.7 usr/lib64/qt47/libQtNetwork.so.4.7.2 usr/lib64/qt47/libQtScript.so.4 usr/lib64/qt47/libQtScript.so.4.7 usr/lib64/qt47/libQtScript.so.4.7.2 usr/lib64/qt47/libQtSql.so.4 usr/lib64/qt47/libQtSql.so.4.7 usr/lib64/qt47/libQtSql.so.4.7.2 usr/lib64/qt47/libQtTest.so.4 usr/lib64/qt47/libQtTest.so.4.7 usr/lib64/qt47/libQtTest.so.4.7.2 usr/lib64/qt47/libQtXml.so.4 usr/lib64/qt47/libQtXml.so.4.7 usr/lib64/qt47/libQtXml.so.4.7.2 usr/lib64/qt47/libQtXmlPatterns.so.4 usr/lib64/qt47/libQtXmlPatterns.so.4.7 usr/lib64/qt47/libQtXmlPatterns.so.4.7.2 usr/lib64/qt47/phrasebooks/danish.qph usr/lib64/qt47/phrasebooks/dutch.qph usr/lib64/qt47/phrasebooks/finnish.qph usr/lib64/qt47/phrasebooks/french.qph usr/lib64/qt47/phrasebooks/german.qph usr/lib64/qt47/phrasebooks/hungarian.qph usr/lib64/qt47/phrasebooks/italian.qph usr/lib64/qt47/phrasebooks/japanese.qph usr/lib64/qt47/phrasebooks/norwegian.qph usr/lib64/qt47/phrasebooks/polish.qph usr/lib64/qt47/phrasebooks/russian.qph usr/lib64/qt47/phrasebooks/spanish.qph usr/lib64/qt47/phrasebooks/swedish.qph usr/lib64/qt47/plugins/sqldrivers/libqsqlite.so usr/share/doc/qt47-4.7.2/LGPL_EXCEPTION.txt usr/share/doc/qt47-4.7.2/LICENSE.GPL3 usr/share/doc/qt47-4.7.2/LICENSE.LGPL usr/share/doc/qt47-4.7.2/README usr/share/qt47/translations/qt_ar.qm usr/share/qt47/translations/qt_cs.qm usr/share/qt47/translations/qt_da.qm usr/share/qt47/translations/qt_de.qm usr/share/qt47/translations/qt_es.qm usr/share/qt47/translations/qt_fr.qm usr/share/qt47/translations/qt_gl.qm usr/share/qt47/translations/qt_he.qm usr/share/qt47/translations/qt_hu.qm usr/share/qt47/translations/qt_ja.qm usr/share/qt47/translations/qt_pl.qm usr/share/qt47/translations/qt_pt.qm usr/share/qt47/translations/qt_ru.qm usr/share/qt47/translations/qt_sk.qm usr/share/qt47/translations/qt_sl.qm usr/share/qt47/translations/qt_sv.qm usr/share/qt47/translations/qt_uk.qm usr/share/qt47/translations/qt_zh_CN.qm usr/share/qt47/translations/qt_zh_TW.qm @dir usr/lib64/qt47/plugins/crypto +@dir usr/lib/qt47/plugins/crypto %%PORTDOCS%%@dir usr/%%DOCSDIR%%/qch Property changes on: head/devel/linux-c6-qt47/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/devel/linux-c6-sdl12/distinfo.x86_64 =================================================================== --- head/devel/linux-c6-sdl12/distinfo.x86_64 (revision 413167) +++ head/devel/linux-c6-sdl12/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/SDL-1.2.14-7.el6_7.1.x86_64.rpm) = e301e7796fcaedb645c05f9b0001604ad6c86e7f7f0214b5d21532600b993903 SIZE (rpm/x86_64/centos/6.7/SDL-1.2.14-7.el6_7.1.x86_64.rpm) = 197912 +SHA256 (rpm/x86_64/centos/6.7/SDL-1.2.14-7.el6_7.1.i686.rpm) = 67514b67fd85c7c4deb3057ff008ec27030423dde646d5637eec05665eb43020 +SIZE (rpm/x86_64/centos/6.7/SDL-1.2.14-7.el6_7.1.i686.rpm) = 204896 SHA256 (rpm/x86_64/centos/6.7/SDL-1.2.14-7.el6_7.1.src.rpm) = 05657c78fce9583a1fd5f43389094e3ef6263627df9a6930d8333978cb6ae775 SIZE (rpm/x86_64/centos/6.7/SDL-1.2.14-7.el6_7.1.src.rpm) = 3661408 Index: head/devel/linux-c6-sdl12/pkg-plist.x86_64 =================================================================== --- head/devel/linux-c6-sdl12/pkg-plist.x86_64 (revision 413167) +++ head/devel/linux-c6-sdl12/pkg-plist.x86_64 (revision 413168) @@ -1,2 +1,4 @@ +usr/lib/libSDL-1.2.so.0 +usr/lib/libSDL-1.2.so.0.11.3 usr/lib64/libSDL-1.2.so.0 usr/lib64/libSDL-1.2.so.0.11.3 Property changes on: head/devel/linux-c6-sdl12/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/dns/linux-c6-libasyncns/distinfo.x86_64 =================================================================== --- head/dns/linux-c6-libasyncns/distinfo.x86_64 (revision 413167) +++ head/dns/linux-c6-libasyncns/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/libasyncns-0.8-1.1.el6.x86_64.rpm) = 40302e7bc4628ce8cba6df68b1aaabe4c227906a44d3ec7618d962a498e778e4 SIZE (rpm/x86_64/centos/6.7/libasyncns-0.8-1.1.el6.x86_64.rpm) = 24936 +SHA256 (rpm/x86_64/centos/6.7/libasyncns-0.8-1.1.el6.i686.rpm) = 29b5986a6ed47b9c54857df3238f8a6348792cfeb9c8923f75208d9738c49748 +SIZE (rpm/x86_64/centos/6.7/libasyncns-0.8-1.1.el6.i686.rpm) = 24888 SHA256 (rpm/x86_64/centos/6.7/libasyncns-0.8-1.1.el6.src.rpm) = 6d0b1cd3002d4d79c43bc121e28f5c9bd65b69a80f9cd117cef234caecc47537 SIZE (rpm/x86_64/centos/6.7/libasyncns-0.8-1.1.el6.src.rpm) = 346427 Index: head/dns/linux-c6-libasyncns/pkg-plist.x86_64 =================================================================== --- head/dns/linux-c6-libasyncns/pkg-plist.x86_64 (revision 413167) +++ head/dns/linux-c6-libasyncns/pkg-plist.x86_64 (revision 413168) @@ -1,5 +1,7 @@ +usr/lib/libasyncns.so.0 +usr/lib/libasyncns.so.0.3.1 usr/lib64/libasyncns.so.0 usr/lib64/libasyncns.so.0.3.1 usr/share/doc/libasyncns-0.8/LICENSE usr/share/doc/libasyncns-0.8/README Property changes on: head/dns/linux-c6-libasyncns/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/emulators/linux_base-c6/Makefile =================================================================== --- head/emulators/linux_base-c6/Makefile (revision 413167) +++ head/emulators/linux_base-c6/Makefile (revision 413168) @@ -1,261 +1,277 @@ # Created by: Svyatoslav Lempert # $FreeBSD$ PORTNAME= c6 PORTVERSION= 6.7 PORTREVISION= 1 CATEGORIES= emulators linux MASTER_SITES= CENTOS_LINUX CENTOS_LINUX_UPDATES -MASTER_SITE_SUBDIR= ${LINUX_DIST_VER}/os/${LINUX_REPO_ARCH}/Packages/\ - ${LINUX_DIST_VER}/updates/${LINUX_REPO_ARCH}/Packages/ +MASTER_SITE_SUBDIR= centos/${LINUX_DIST_VER}/os/${LINUX_REPO_ARCH}/Packages/\ + centos/${LINUX_DIST_VER}/updates/${LINUX_REPO_ARCH}/Packages/ PKGNAMEPREFIX= linux_base- DISTFILES= ${PRE_BIN_DISTFILES} ${BIN_DISTFILES} ${SRC_DISTFILES} EXTRACT_ONLY= ${BIN_DISTFILES} MAINTAINER= emulation@FreeBSD.org COMMENT= Base set of packages needed in Linux mode for i386/amd64 (Linux CentOS 6) LINUX_DIST= centos LINUX_DIST_VER= ${PORTVERSION} DIST_SUBDIR= rpm/${LINUX_RPM_ARCH}/${LINUX_DIST}/${LINUX_DIST_VER} # these get extracted from pre-extract, then some directory permissions # get fixed up PRE_BIN_DISTFILES= filesystem-2.4.30-3.el6.${LINUX_RPM_ARCH}.rpm \ setup-2.8.14-20.el6_4.1.noarch.rpm BIN_DISTFILES= basesystem-10.0-4.el6.noarch.rpm \ bash-4.1.2-33.el6_7.1.${LINUX_RPM_ARCH}.rpm \ bzip2-1.0.5-7.el6_0.${LINUX_RPM_ARCH}.rpm \ - bzip2-libs-1.0.5-7.el6_0.${LINUX_RPM_ARCH}.rpm \ centos-release-6-7.el6.centos.12.3.${LINUX_RPM_ARCH}.rpm \ - compat-db43-4.3.29-15.el6.${LINUX_RPM_ARCH}.rpm \ - compat-libstdc++-33-3.2.3-69.el6.${LINUX_RPM_ARCH}.rpm \ - compat-libstdc++-296-2.96-144.el6.i686.rpm \ coreutils-8.4-37.el6_7.3.${LINUX_RPM_ARCH}.rpm \ - db4-4.7.25-20.el6_7.${LINUX_RPM_ARCH}.rpm \ e2fsprogs-1.41.12-22.el6.${LINUX_RPM_ARCH}.rpm \ - e2fsprogs-libs-1.41.12-22.el6.${LINUX_RPM_ARCH}.rpm \ elfutils-0.161-3.el6.${LINUX_RPM_ARCH}.rpm \ findutils-4.4.2-6.el6.${LINUX_RPM_ARCH}.rpm \ + glibc-common-2.12-1.166.el6_7.7.${LINUX_RPM_ARCH}.rpm \ + grep-2.20-3.el6_7.1.${LINUX_RPM_ARCH}.rpm \ + info-4.13a-8.el6.${LINUX_RPM_ARCH}.rpm \ + keyutils-1.4-5.el6.${LINUX_RPM_ARCH}.rpm \ + less-436-13.el6.${LINUX_RPM_ARCH}.rpm \ + ncurses-5.7-4.20090207.el6.${LINUX_RPM_ARCH}.rpm \ + sed-4.2.1-10.el6.${LINUX_RPM_ARCH}.rpm \ + setserial-2.17-25.el6.${LINUX_RPM_ARCH}.rpm \ + which-2.19-6.el6.${LINUX_RPM_ARCH}.rpm \ + compat-libstdc++-296-2.96-144.el6.i686.rpm +LIB_DISTFILES= bzip2-libs-1.0.5-7.el6_0.${LINUX_RPM_ARCH}.rpm \ + compat-db43-4.3.29-15.el6.${LINUX_RPM_ARCH}.rpm \ + compat-libstdc++-33-3.2.3-69.el6.${LINUX_RPM_ARCH}.rpm \ + db4-4.7.25-20.el6_7.${LINUX_RPM_ARCH}.rpm \ + e2fsprogs-libs-1.41.12-22.el6.${LINUX_RPM_ARCH}.rpm \ freetype-2.3.11-15.el6_6.1.${LINUX_RPM_ARCH}.rpm \ gamin-0.1.10-9.el6.${LINUX_RPM_ARCH}.rpm \ gdbm-1.8.0-38.el6.${LINUX_RPM_ARCH}.rpm \ glib2-2.28.8-4.el6.${LINUX_RPM_ARCH}.rpm \ glibc-2.12-1.166.el6_7.7.${LINUX_RPM_ARCH}.rpm \ - glibc-common-2.12-1.166.el6_7.7.${LINUX_RPM_ARCH}.rpm \ gmp-4.3.1-7.el6_2.2.${LINUX_RPM_ARCH}.rpm \ - grep-2.20-3.el6_7.1.${LINUX_RPM_ARCH}.rpm \ - info-4.13a-8.el6.${LINUX_RPM_ARCH}.rpm \ - keyutils-1.4-5.el6.${LINUX_RPM_ARCH}.rpm \ keyutils-libs-1.4-5.el6.${LINUX_RPM_ARCH}.rpm \ krb5-libs-1.10.3-42.el6.${LINUX_RPM_ARCH}.rpm \ - less-436-13.el6.${LINUX_RPM_ARCH}.rpm \ libacl-2.2.49-6.el6.${LINUX_RPM_ARCH}.rpm \ libattr-2.4.44-7.el6.${LINUX_RPM_ARCH}.rpm \ libblkid-2.17.2-12.18.el6.${LINUX_RPM_ARCH}.rpm \ libcap-2.16-5.5.el6.${LINUX_RPM_ARCH}.rpm \ libcom_err-1.41.12-22.el6.${LINUX_RPM_ARCH}.rpm \ libgcc-4.4.7-16.el6.${LINUX_RPM_ARCH}.rpm \ libidn-1.18-2.el6.${LINUX_RPM_ARCH}.rpm \ libselinux-2.0.94-5.8.el6.${LINUX_RPM_ARCH}.rpm \ libsepol-2.0.41-4.el6.${LINUX_RPM_ARCH}.rpm \ libstdc++-4.4.7-16.el6.${LINUX_RPM_ARCH}.rpm \ libuuid-2.17.2-12.18.el6.${LINUX_RPM_ARCH}.rpm \ - ncurses-5.7-4.20090207.el6.${LINUX_RPM_ARCH}.rpm \ ncurses-libs-5.7-4.20090207.el6.${LINUX_RPM_ARCH}.rpm \ pcre-7.8-7.el6.${LINUX_RPM_ARCH}.rpm \ popt-1.13-7.el6.${LINUX_RPM_ARCH}.rpm \ readline-6.0-4.el6.${LINUX_RPM_ARCH}.rpm \ redhat-lsb-core-4.0-7.el6.centos.${LINUX_RPM_ARCH}.rpm \ - sed-4.2.1-10.el6.${LINUX_RPM_ARCH}.rpm \ - setserial-2.17-25.el6.${LINUX_RPM_ARCH}.rpm \ slang-2.2.1-1.el6.${LINUX_RPM_ARCH}.rpm \ util-linux-ng-2.17.2-12.18.el6.${LINUX_RPM_ARCH}.rpm \ - which-2.19-6.el6.${LINUX_RPM_ARCH}.rpm \ zlib-1.2.3-29.el6.${LINUX_RPM_ARCH}.rpm +BIN_DISTFILES+= ${LIB_DISTFILES} + + .if defined(PACKAGE_BUILDING) SRC_DISTFILES= basesystem-10.0-4.el6.src.rpm:SOURCE \ bash-4.1.2-33.el6_7.1.src.rpm:SOURCE \ bzip2-1.0.5-7.el6_0.src.rpm:SOURCE \ coreutils-8.4-37.el6_7.3.src.rpm:SOURCE \ compat-db-4.6.21-15.el6.src.rpm:SOURCE \ compat-gcc-296-2.96-144.el6.src.rpm:SOURCE \ compat-gcc-32-3.2.3-69.el6.src.rpm:SOURCE \ db4-4.7.25-20.el6_7.src.rpm:SOURCE \ e2fsprogs-1.41.12-22.el6.src.rpm:SOURCE \ elfutils-0.161-3.el6.src.rpm:SOURCE \ centos-release-6-7.el6.centos.12.3.src.rpm:SOURCE \ filesystem-2.4.30-3.el6.src.rpm:SOURCE \ findutils-4.4.2-6.el6.src.rpm:SOURCE \ freetype-2.3.11-15.el6_6.1.src.rpm:SOURCE \ gamin-0.1.10-9.el6.src.rpm:SOURCE \ gdbm-1.8.0-38.el6.src.rpm:SOURCE \ glib2-2.28.8-4.el6.src.rpm:SOURCE \ glibc-2.12-1.166.el6_7.7.src.rpm:SOURCE \ gmp-4.3.1-7.el6_2.2.src.rpm:SOURCE \ grep-2.20-3.el6_7.1.src.rpm:SOURCE \ texinfo-4.13a-8.el6.src.rpm:SOURCE \ keyutils-1.4-5.el6.src.rpm:SOURCE \ krb5-1.10.3-42.el6.src.rpm:SOURCE \ less-436-13.el6.src.rpm:SOURCE \ acl-2.2.49-6.el6.src.rpm:SOURCE \ attr-2.4.44-7.el6.src.rpm:SOURCE \ libcap-2.16-5.5.el6.src.rpm:SOURCE \ gcc-4.4.7-16.el6.src.rpm:SOURCE \ libidn-1.18-2.el6.src.rpm:SOURCE \ libselinux-2.0.94-5.8.el6.src.rpm:SOURCE \ libsepol-2.0.41-4.el6.src.rpm:SOURCE \ ncurses-5.7-4.20090207.el6.src.rpm:SOURCE \ pcre-7.8-7.el6.src.rpm:SOURCE \ popt-1.13-7.el6.src.rpm:SOURCE \ readline-6.0-4.el6.src.rpm:SOURCE \ redhat-lsb-4.0-7.el6.centos.src.rpm:SOURCE \ sed-4.2.1-10.el6.src.rpm:SOURCE \ setserial-2.17-25.el6.src.rpm:SOURCE \ setup-2.8.14-20.el6_4.1.src.rpm:SOURCE \ slang-2.2.1-1.el6.src.rpm:SOURCE \ util-linux-ng-2.17.2-12.18.el6.src.rpm:SOURCE \ which-2.19-6.el6.src.rpm:SOURCE \ zlib-1.2.3-29.el6.src.rpm:SOURCE ALWAYS_KEEP_DISTFILES= yes .endif CONFLICTS= linux_base-gentoo* linux_base-f10-[0-9]* linux-glib2-* ONLY_FOR_ARCHS= i386 amd64 . if defined(OVERRIDE_LINUX_BASE_PORT) && ${OVERRIDE_LINUX_BASE_PORT} == "c6_64" PKGNAMESUFFIX= _64 LINUX_RPM_ARCH= x86_64 LINUX_REPO_ARCH= x86_64 + +# hack to add i686 distfiles + +_32BIT_LINUX_RPM_ARCH= i686 +_32BIT_DISTFILES= ${LIB_DISTFILES:S/${LINUX_RPM_ARCH}/${_32BIT_LINUX_RPM_ARCH}/g} +. if ${_32BIT_DISTFILES} != ${LIB_DISTFILES} +# they could be the same if above regexp doesn't match +BIN_DISTFILES+= ${_32BIT_DISTFILES} +. endif + + . else LINUX_RPM_ARCH= i686 LINUX_REPO_ARCH= i386 . endif + + USE_LINUX_PREFIX= yes NO_WRKSUBDIR= yes DISTINFO_FILE?= ${MASTERDIR}/distinfo.${LINUX_RPM_ARCH} PLIST= ${MASTERDIR}/pkg-plist.${LINUX_RPM_ARCH} PLIST_SUB= GLIBCVER="2.12" LINUXBASE=${LINUXBASE} USES= shebangfix SHEBANG_FILES= bin/redhat_lsb_init sbin/mount.tmpfs # bash scripts need to work in chroot /compat/linux, so use env instead. bash_CMD= /usr/bin/env bash .include .if !defined(PACKAGE_BUILDING) || (defined(PACKAGE_BUILDING) && !defined(LINUX_OSRELEASE) ) LINUX_OSRELEASE!= ${ECHO_CMD} `${SYSCTL} -n compat.linux.osrelease 2>/dev/null` .endif .if ${LINUX_OSRELEASE}x == "x" IGNORE= linuxulator is not (kld)loaded .elif ${LINUX_OSRELEASE} == "2.6.16" IGNORE= compat.linux.osrelease: ${LINUX_OSRELEASE} is not supported, please use 2.6.18, BEWARE this is highly experimental .endif REMOVE_DIRS= boot dev etc/fonts home initrd media root tmp var/log var/run var/tmp \ usr/local usr/tmp REMOVE_FILES= bin/df bin/su etc/exports etc/group etc/localtime \ etc/motd etc/passwd etc/printcap etc/services \ etc/protocols ADD_DIRS= usr/X11R6/share usr/X11R6/man usr/X11R6/lib/tls \ usr/X11R6/include usr/X11R6/bin ADD_FILES= #empty .if (${MACHINE_ARCH} == "amd64") FALLBACK_ELF_MIB= kern.elf32.fallback_brand .else FALLBACK_ELF_MIB= kern.fallback_elf_brand .endif .if (${ARCH} == "amd64") . if defined(OVERRIDE_LINUX_BASE_PORT) && ${OVERRIDE_LINUX_BASE_PORT} != "c6_64" ARCH= i386 . endif .endif pre-extract: @for file in ${PRE_BIN_DISTFILES}; do \ if ! (cd ${WRKSRC} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/$$file ${EXTRACT_AFTER_ARGS});\ then \ exit 1; \ fi; \ done # now fix up broken permissions . if defined(OVERRIDE_LINUX_BASE_PORT) && ${OVERRIDE_LINUX_BASE_PORT} == "c6_64" @${CHMOD} -R u+rwX ${WRKSRC}/lib64 ${WRKSRC}/usr/lib64 . endif @${CHMOD} -R u+rwX ${WRKSRC}/bin ${WRKSRC}/lib ${WRKSRC}/sbin ${WRKSRC}/usr/bin ${WRKSRC}/usr/lib ${WRKSRC}/usr/sbin @${CHMOD} 400 ${WRKSRC}/etc/*shadow do-build: @for D in ${REMOVE_DIRS}; do \ ${RM} -rf ${WRKSRC}/$$D; \ done @for F in ${REMOVE_FILES}; do \ ${RM} -f ${WRKSRC}/$$F; \ done @for F in ${ADD_DIRS}; do \ ${MKDIR} ${WRKSRC}/$$F; \ done @for F in ${ADD_FILES}; do \ ${TOUCH} ${WRKSRC}/$$F; \ done # # Create a good ld.so.conf and touch ld.so.cache # @${ECHO_CMD} -e '/lib\n/usr/lib\n/usr/lib64\n${X11BASE}/lib' >> \ ${WRKSRC}/etc/ld.so.conf @${TOUCH} ${WRKSRC}/etc/ld.so.cache # # Create yp.conf as a hint to NIS users and make sure there's a # mtab in etc, albeit an empty one. This is needed in a couple of # cases. Most notably staroffice6. If yp.conf exists install only # yp.conf.sample # @${INSTALL} ${COPY} -m 644 ${FILESDIR}/yp.conf.sample ${WRKSRC}/etc @${TOUCH} ${WRKSRC}/etc/mtab # # If ${PREFIX}/etc/krb5.conf exists, don't touch it # @${MV} ${WRKSRC}/etc/krb5.conf ${WRKSRC}/etc/krb5.conf.sample @${FIND} ${WRKSRC}/bin ${WRKSRC}/sbin/ ${WRKSRC}/usr/bin \ ${WRKSRC}/usr/sbin -type f -print0 | ${XARGS} -0 ${FILE} \ | ${GREP} ELF | ${CUT} -d : -f 1 \ | ${XARGS} ${BRANDELF} -t Linux . if defined(OVERRIDE_LINUX_BASE_PORT) && ${OVERRIDE_LINUX_BASE_PORT} == "c6_64" @${BRANDELF} -t Linux ${WRKSRC}/lib64/ld-2.12.so . else @${BRANDELF} -t Linux ${WRKSRC}/lib/ld-2.12.so . endif # Install locales @${MV} ${WRKSRC}/usr/lib/locale/locale-archive.tmpl \ ${WRKSRC}/usr/lib/locale/locale-archive do-install: # # Do install without using linux rpm system # @cd ${WRKSRC} && ${FIND} * -type d -exec ${MKDIR} "${STAGEDIR}${PREFIX}/{}" \; @cd ${WRKSRC} && ${FIND} * ! -type d \ | ${CPIO} -pm -R root:wheel ${STAGEDIR}${PREFIX} @${LN} -sf /var/tmp ${STAGEDIR}${PREFIX}/usr/tmp @${LN} -sf ../usr/bin/[ ${STAGEDIR}${PREFIX}/bin/[ @${LN} -sf ../usr/bin/expr ${STAGEDIR}${PREFIX}/bin/expr @${LN} -sf ../usr/bin/test ${STAGEDIR}${PREFIX}/bin/test @${LN} -sf ../usr/bin/uuidgen ${STAGEDIR}${PREFIX}/bin/uuidgen @${LN} -sf ../../lib/librt.so.1 ${STAGEDIR}${PREFIX}/usr/lib/librt.so.1 @${CHMOD} 755 ${STAGEDIR}${PREFIX}/var/lock ${STAGEDIR}${PREFIX}/var/spool/mail # # Let some linux applications (e.g. print/acroread8) print with default settings # @${INSTALL_SCRIPT} ${FILESDIR}/lp ${STAGEDIR}${PREFIX}/usr/bin .include Index: head/emulators/linux_base-c6/distinfo.i686 =================================================================== --- head/emulators/linux_base-c6/distinfo.i686 (revision 413167) +++ head/emulators/linux_base-c6/distinfo.i686 (revision 413168) @@ -1,190 +1,190 @@ SHA256 (rpm/i686/centos/6.7/filesystem-2.4.30-3.el6.i686.rpm) = 28fd3898f5882048a6105a4637fffa17bc0a634c8ff4268a35b870d084212dea SIZE (rpm/i686/centos/6.7/filesystem-2.4.30-3.el6.i686.rpm) = 1056668 SHA256 (rpm/i686/centos/6.7/setup-2.8.14-20.el6_4.1.noarch.rpm) = f3baabe199eabf0c11866c1c076f0c6bc01abe0c1cab20aa3348cd8e1c967031 SIZE (rpm/i686/centos/6.7/setup-2.8.14-20.el6_4.1.noarch.rpm) = 154440 SHA256 (rpm/i686/centos/6.7/basesystem-10.0-4.el6.noarch.rpm) = 18860007697438e375733bb4a36a599daac2e2ae95d98a74c436a10d0974710e SIZE (rpm/i686/centos/6.7/basesystem-10.0-4.el6.noarch.rpm) = 4784 SHA256 (rpm/i686/centos/6.7/bash-4.1.2-33.el6_7.1.i686.rpm) = a732121d43926323882fa3d3915353221e61f27d5d42ae8c83082d0105728392 SIZE (rpm/i686/centos/6.7/bash-4.1.2-33.el6_7.1.i686.rpm) = 910760 SHA256 (rpm/i686/centos/6.7/bzip2-1.0.5-7.el6_0.i686.rpm) = 37883219612b1ffa199f5a7227fcd165687a24e5c7c291c579647d1563777e47 SIZE (rpm/i686/centos/6.7/bzip2-1.0.5-7.el6_0.i686.rpm) = 49428 -SHA256 (rpm/i686/centos/6.7/bzip2-libs-1.0.5-7.el6_0.i686.rpm) = d3424f4610860e7f8f444cc3cddf51cd75f5e58ca0ecffc8bdbbcb5f8fe1b0d1 -SIZE (rpm/i686/centos/6.7/bzip2-libs-1.0.5-7.el6_0.i686.rpm) = 37204 SHA256 (rpm/i686/centos/6.7/centos-release-6-7.el6.centos.12.3.i686.rpm) = 2a1f61f9462d7f9bd0717319ca432455dd7acfb6cfd0b1c9d8b3fbb6feb2a0b8 SIZE (rpm/i686/centos/6.7/centos-release-6-7.el6.centos.12.3.i686.rpm) = 21932 -SHA256 (rpm/i686/centos/6.7/compat-db43-4.3.29-15.el6.i686.rpm) = 202767fa03ff58947d6a2ec2437e52fc9179f3995fa77264753fde03f2737d0a -SIZE (rpm/i686/centos/6.7/compat-db43-4.3.29-15.el6.i686.rpm) = 914280 -SHA256 (rpm/i686/centos/6.7/compat-libstdc++-33-3.2.3-69.el6.i686.rpm) = 894abcc5f0b28e39c71d4b0ca27d19540e7eb9d3c32664d5621324c9efbfe11e -SIZE (rpm/i686/centos/6.7/compat-libstdc++-33-3.2.3-69.el6.i686.rpm) = 193328 -SHA256 (rpm/i686/centos/6.7/compat-libstdc++-296-2.96-144.el6.i686.rpm) = a0d7cba8cf0fcb625ce3181d64fa59ca018b562350c30b3a13fd8b858f21f134 -SIZE (rpm/i686/centos/6.7/compat-libstdc++-296-2.96-144.el6.i686.rpm) = 78832 SHA256 (rpm/i686/centos/6.7/coreutils-8.4-37.el6_7.3.i686.rpm) = b95b1e17710cbc00ffa843ab14131b27b3014b124170b04c913282d888cc4ea0 SIZE (rpm/i686/centos/6.7/coreutils-8.4-37.el6_7.3.i686.rpm) = 3148620 -SHA256 (rpm/i686/centos/6.7/db4-4.7.25-20.el6_7.i686.rpm) = 1bbe6a2090411a8ecec459f1bc94ebfa586f40a3a4f0c4e440e0e3bb06eb7ba5 -SIZE (rpm/i686/centos/6.7/db4-4.7.25-20.el6_7.i686.rpm) = 594068 SHA256 (rpm/i686/centos/6.7/e2fsprogs-1.41.12-22.el6.i686.rpm) = 3690f61f020923fe0b7e41bef986b395f6077325861154cedc0b347c593b5715 SIZE (rpm/i686/centos/6.7/e2fsprogs-1.41.12-22.el6.i686.rpm) = 567828 -SHA256 (rpm/i686/centos/6.7/e2fsprogs-libs-1.41.12-22.el6.i686.rpm) = 4bc8b22538b56dda34db646ec87218b333499d00e90a9bc5852cbef178b357f1 -SIZE (rpm/i686/centos/6.7/e2fsprogs-libs-1.41.12-22.el6.i686.rpm) = 130892 SHA256 (rpm/i686/centos/6.7/elfutils-0.161-3.el6.i686.rpm) = 90e68d92fc62facfc5f8974598edd5f1b8dea2294634f1418d752abaf9eb86d6 SIZE (rpm/i686/centos/6.7/elfutils-0.161-3.el6.i686.rpm) = 257936 SHA256 (rpm/i686/centos/6.7/findutils-4.4.2-6.el6.i686.rpm) = d4509950ef57b835b584fc7debdb8f0cf4550704df48cc829ba716ebfb7efcdc SIZE (rpm/i686/centos/6.7/findutils-4.4.2-6.el6.i686.rpm) = 421872 +SHA256 (rpm/i686/centos/6.7/glibc-common-2.12-1.166.el6_7.7.i686.rpm) = 05d0ad7fafb040ac70f955b46c82c2bcb35a11a867f4b024e6cdfc393cefa7e4 +SIZE (rpm/i686/centos/6.7/glibc-common-2.12-1.166.el6_7.7.i686.rpm) = 14875116 +SHA256 (rpm/i686/centos/6.7/grep-2.20-3.el6_7.1.i686.rpm) = 30ee73ceb1cfd42756d10c3965b273e7b54c700591334ce46d456cba3bc9f54a +SIZE (rpm/i686/centos/6.7/grep-2.20-3.el6_7.1.i686.rpm) = 350704 +SHA256 (rpm/i686/centos/6.7/info-4.13a-8.el6.i686.rpm) = 544b65b829fd4f8195dc131e773296f922bc218c756ec6d8e143ae0715f830b1 +SIZE (rpm/i686/centos/6.7/info-4.13a-8.el6.i686.rpm) = 176524 +SHA256 (rpm/i686/centos/6.7/keyutils-1.4-5.el6.i686.rpm) = 49fd3f0f5dbdf9ada34151f129e36e3e9ef7cd048711b85a918dce6e217b31a0 +SIZE (rpm/i686/centos/6.7/keyutils-1.4-5.el6.i686.rpm) = 39356 +SHA256 (rpm/i686/centos/6.7/less-436-13.el6.i686.rpm) = ac7bc80bcad24e573be8441a3854b71caa93efcdcc5ba20e42348a636db9af57 +SIZE (rpm/i686/centos/6.7/less-436-13.el6.i686.rpm) = 110324 +SHA256 (rpm/i686/centos/6.7/ncurses-5.7-4.20090207.el6.i686.rpm) = 5d7449100c2c23593fbaf7bf5048b8e8d19295e4adb4ebc0c366b8e572cd1142 +SIZE (rpm/i686/centos/6.7/ncurses-5.7-4.20090207.el6.i686.rpm) = 274852 +SHA256 (rpm/i686/centos/6.7/sed-4.2.1-10.el6.i686.rpm) = 34b309a83fc5e61d299e42e5c076f736302be6c94acc3dd0554f05ee69494241 +SIZE (rpm/i686/centos/6.7/sed-4.2.1-10.el6.i686.rpm) = 219480 +SHA256 (rpm/i686/centos/6.7/setserial-2.17-25.el6.i686.rpm) = c3537e6d2122f43674413742fcba524beb4dc9778efc7d25515f120dde79ba70 +SIZE (rpm/i686/centos/6.7/setserial-2.17-25.el6.i686.rpm) = 23568 +SHA256 (rpm/i686/centos/6.7/which-2.19-6.el6.i686.rpm) = 3b7b2af92a3868f69b0d7e24db09ecbcf20d48b64d96778fedf3e0462982ad81 +SIZE (rpm/i686/centos/6.7/which-2.19-6.el6.i686.rpm) = 38852 +SHA256 (rpm/i686/centos/6.7/compat-libstdc++-296-2.96-144.el6.i686.rpm) = a0d7cba8cf0fcb625ce3181d64fa59ca018b562350c30b3a13fd8b858f21f134 +SIZE (rpm/i686/centos/6.7/compat-libstdc++-296-2.96-144.el6.i686.rpm) = 78832 +SHA256 (rpm/i686/centos/6.7/bzip2-libs-1.0.5-7.el6_0.i686.rpm) = d3424f4610860e7f8f444cc3cddf51cd75f5e58ca0ecffc8bdbbcb5f8fe1b0d1 +SIZE (rpm/i686/centos/6.7/bzip2-libs-1.0.5-7.el6_0.i686.rpm) = 37204 +SHA256 (rpm/i686/centos/6.7/compat-db43-4.3.29-15.el6.i686.rpm) = 202767fa03ff58947d6a2ec2437e52fc9179f3995fa77264753fde03f2737d0a +SIZE (rpm/i686/centos/6.7/compat-db43-4.3.29-15.el6.i686.rpm) = 914280 +SHA256 (rpm/i686/centos/6.7/compat-libstdc++-33-3.2.3-69.el6.i686.rpm) = 894abcc5f0b28e39c71d4b0ca27d19540e7eb9d3c32664d5621324c9efbfe11e +SIZE (rpm/i686/centos/6.7/compat-libstdc++-33-3.2.3-69.el6.i686.rpm) = 193328 +SHA256 (rpm/i686/centos/6.7/db4-4.7.25-20.el6_7.i686.rpm) = 1bbe6a2090411a8ecec459f1bc94ebfa586f40a3a4f0c4e440e0e3bb06eb7ba5 +SIZE (rpm/i686/centos/6.7/db4-4.7.25-20.el6_7.i686.rpm) = 594068 +SHA256 (rpm/i686/centos/6.7/e2fsprogs-libs-1.41.12-22.el6.i686.rpm) = 4bc8b22538b56dda34db646ec87218b333499d00e90a9bc5852cbef178b357f1 +SIZE (rpm/i686/centos/6.7/e2fsprogs-libs-1.41.12-22.el6.i686.rpm) = 130892 SHA256 (rpm/i686/centos/6.7/freetype-2.3.11-15.el6_6.1.i686.rpm) = 45a77d6322ca6eba1839d5ae1a2d3600053b53442178c66b4a2922db7bf675e6 SIZE (rpm/i686/centos/6.7/freetype-2.3.11-15.el6_6.1.i686.rpm) = 373620 SHA256 (rpm/i686/centos/6.7/gamin-0.1.10-9.el6.i686.rpm) = 154c598675497b411f77e51b2e2a6b6b4282ecf8d368dc17585757dad113338a SIZE (rpm/i686/centos/6.7/gamin-0.1.10-9.el6.i686.rpm) = 122940 SHA256 (rpm/i686/centos/6.7/gdbm-1.8.0-38.el6.i686.rpm) = ff6addf9697a57eca18c2424bc6791648caa99c105f2b8c1c9d6c136b6afd7d3 SIZE (rpm/i686/centos/6.7/gdbm-1.8.0-38.el6.i686.rpm) = 29672 SHA256 (rpm/i686/centos/6.7/glib2-2.28.8-4.el6.i686.rpm) = 778bcfc904fa6c697b0a11399e5310e1684f58c81ae46f6962efcd8d663bc154 SIZE (rpm/i686/centos/6.7/glib2-2.28.8-4.el6.i686.rpm) = 1735384 SHA256 (rpm/i686/centos/6.7/glibc-2.12-1.166.el6_7.7.i686.rpm) = b864b56998c7f54ad2ff8a88e6d2e2e9bbb7fed5b5cd1a5a37335df3db1009f5 SIZE (rpm/i686/centos/6.7/glibc-2.12-1.166.el6_7.7.i686.rpm) = 4558520 -SHA256 (rpm/i686/centos/6.7/glibc-common-2.12-1.166.el6_7.7.i686.rpm) = 05d0ad7fafb040ac70f955b46c82c2bcb35a11a867f4b024e6cdfc393cefa7e4 -SIZE (rpm/i686/centos/6.7/glibc-common-2.12-1.166.el6_7.7.i686.rpm) = 14875116 SHA256 (rpm/i686/centos/6.7/gmp-4.3.1-7.el6_2.2.i686.rpm) = f1855126a943ed4aac412006af98490248b739b4f9f78487f17c3275557948e2 SIZE (rpm/i686/centos/6.7/gmp-4.3.1-7.el6_2.2.i686.rpm) = 331548 -SHA256 (rpm/i686/centos/6.7/grep-2.20-3.el6_7.1.i686.rpm) = 30ee73ceb1cfd42756d10c3965b273e7b54c700591334ce46d456cba3bc9f54a -SIZE (rpm/i686/centos/6.7/grep-2.20-3.el6_7.1.i686.rpm) = 350704 -SHA256 (rpm/i686/centos/6.7/info-4.13a-8.el6.i686.rpm) = 544b65b829fd4f8195dc131e773296f922bc218c756ec6d8e143ae0715f830b1 -SIZE (rpm/i686/centos/6.7/info-4.13a-8.el6.i686.rpm) = 176524 -SHA256 (rpm/i686/centos/6.7/keyutils-1.4-5.el6.i686.rpm) = 49fd3f0f5dbdf9ada34151f129e36e3e9ef7cd048711b85a918dce6e217b31a0 -SIZE (rpm/i686/centos/6.7/keyutils-1.4-5.el6.i686.rpm) = 39356 SHA256 (rpm/i686/centos/6.7/keyutils-libs-1.4-5.el6.i686.rpm) = 59ca71f1c6b4cd19b58a35afd065f745ccfda46f55b4bdad9dda93f5ca872e60 SIZE (rpm/i686/centos/6.7/keyutils-libs-1.4-5.el6.i686.rpm) = 20780 SHA256 (rpm/i686/centos/6.7/krb5-libs-1.10.3-42.el6.i686.rpm) = 9aa44ac813cdff74b263f2cef21f1a79c7d5b52eebe9649ea3e89811bf39a106 SIZE (rpm/i686/centos/6.7/krb5-libs-1.10.3-42.el6.i686.rpm) = 795280 -SHA256 (rpm/i686/centos/6.7/less-436-13.el6.i686.rpm) = ac7bc80bcad24e573be8441a3854b71caa93efcdcc5ba20e42348a636db9af57 -SIZE (rpm/i686/centos/6.7/less-436-13.el6.i686.rpm) = 110324 SHA256 (rpm/i686/centos/6.7/libacl-2.2.49-6.el6.i686.rpm) = 64c400f31986db7f085e85454a305344da141872b6f3ac7922caa2fa656d3c12 SIZE (rpm/i686/centos/6.7/libacl-2.2.49-6.el6.i686.rpm) = 24480 SHA256 (rpm/i686/centos/6.7/libattr-2.4.44-7.el6.i686.rpm) = 16f9cba06fcbdf5163c1ae48e3d8df5b2a26eec1c8bfa3f7907718931ff8b93b SIZE (rpm/i686/centos/6.7/libattr-2.4.44-7.el6.i686.rpm) = 15640 SHA256 (rpm/i686/centos/6.7/libblkid-2.17.2-12.18.el6.i686.rpm) = 93e668e95e20e1adf85bdcf68163108350b6ab58701dd08494bf372edb996282 SIZE (rpm/i686/centos/6.7/libblkid-2.17.2-12.18.el6.i686.rpm) = 123288 SHA256 (rpm/i686/centos/6.7/libcap-2.16-5.5.el6.i686.rpm) = 8d972a4332b8f942258e489574929de3ee660315dc6ca945939d54a99ec4398c SIZE (rpm/i686/centos/6.7/libcap-2.16-5.5.el6.i686.rpm) = 31516 SHA256 (rpm/i686/centos/6.7/libcom_err-1.41.12-22.el6.i686.rpm) = a17fab636dcd0725ff95176ac060517430a719846695afdb487dea213d1e920d SIZE (rpm/i686/centos/6.7/libcom_err-1.41.12-22.el6.i686.rpm) = 38212 SHA256 (rpm/i686/centos/6.7/libgcc-4.4.7-16.el6.i686.rpm) = 23bace51bc52442273828b872f7c8d2b07f49ee4f8da928dcc35c6962c37debc SIZE (rpm/i686/centos/6.7/libgcc-4.4.7-16.el6.i686.rpm) = 116816 SHA256 (rpm/i686/centos/6.7/libidn-1.18-2.el6.i686.rpm) = a72cdffdb6aeeb5f94eeaeb6db3b4ac88eb0688760b2b75d2c5086d987d78e27 SIZE (rpm/i686/centos/6.7/libidn-1.18-2.el6.i686.rpm) = 210260 SHA256 (rpm/i686/centos/6.7/libselinux-2.0.94-5.8.el6.i686.rpm) = 24129f23d6438e04a1274f6070a67266dae162f40f9a5ba7232cd8b056907228 SIZE (rpm/i686/centos/6.7/libselinux-2.0.94-5.8.el6.i686.rpm) = 111268 SHA256 (rpm/i686/centos/6.7/libsepol-2.0.41-4.el6.i686.rpm) = 0f7b3c09a89b4f943faefc73bc5664f075146f6b96c8d1d38da06ed02cc2f21b SIZE (rpm/i686/centos/6.7/libsepol-2.0.41-4.el6.i686.rpm) = 128032 SHA256 (rpm/i686/centos/6.7/libstdc++-4.4.7-16.el6.i686.rpm) = 5901e37db999276c3f517879e88c05bf5349736fd0599b207c2750ff222286e2 SIZE (rpm/i686/centos/6.7/libstdc++-4.4.7-16.el6.i686.rpm) = 309312 SHA256 (rpm/i686/centos/6.7/libuuid-2.17.2-12.18.el6.i686.rpm) = adff95ffc188f93e59c3517939a75de56eccf886b867948f696753e787f3d22d SIZE (rpm/i686/centos/6.7/libuuid-2.17.2-12.18.el6.i686.rpm) = 71040 -SHA256 (rpm/i686/centos/6.7/ncurses-5.7-4.20090207.el6.i686.rpm) = 5d7449100c2c23593fbaf7bf5048b8e8d19295e4adb4ebc0c366b8e572cd1142 -SIZE (rpm/i686/centos/6.7/ncurses-5.7-4.20090207.el6.i686.rpm) = 274852 SHA256 (rpm/i686/centos/6.7/ncurses-libs-5.7-4.20090207.el6.i686.rpm) = fe1778ee05c4840cb27a6804e6af6d61ca6f48666560654e3cfd765fa20ff2bb SIZE (rpm/i686/centos/6.7/ncurses-libs-5.7-4.20090207.el6.i686.rpm) = 255352 SHA256 (rpm/i686/centos/6.7/pcre-7.8-7.el6.i686.rpm) = 62aff1a2975adc4a02293297d12b0202b5710155c00753bd4657d6896c3e7b8e SIZE (rpm/i686/centos/6.7/pcre-7.8-7.el6.i686.rpm) = 201096 SHA256 (rpm/i686/centos/6.7/popt-1.13-7.el6.i686.rpm) = 617f8ee4d7776bb46a3a489ea10ac45831fd44947a30ef8d2126490ca2aa7a90 SIZE (rpm/i686/centos/6.7/popt-1.13-7.el6.i686.rpm) = 39636 SHA256 (rpm/i686/centos/6.7/readline-6.0-4.el6.i686.rpm) = 29fae06e31b73f4e5e0cd5f4431a3927c0e80b204e3fbcf0a6ccfc30720e8452 SIZE (rpm/i686/centos/6.7/readline-6.0-4.el6.i686.rpm) = 180296 SHA256 (rpm/i686/centos/6.7/redhat-lsb-core-4.0-7.el6.centos.i686.rpm) = c8a54450a1716a676b06db0a734c53c7057925359cb4e4bc36fa66f32cff5a0f SIZE (rpm/i686/centos/6.7/redhat-lsb-core-4.0-7.el6.centos.i686.rpm) = 26108 -SHA256 (rpm/i686/centos/6.7/sed-4.2.1-10.el6.i686.rpm) = 34b309a83fc5e61d299e42e5c076f736302be6c94acc3dd0554f05ee69494241 -SIZE (rpm/i686/centos/6.7/sed-4.2.1-10.el6.i686.rpm) = 219480 -SHA256 (rpm/i686/centos/6.7/setserial-2.17-25.el6.i686.rpm) = c3537e6d2122f43674413742fcba524beb4dc9778efc7d25515f120dde79ba70 -SIZE (rpm/i686/centos/6.7/setserial-2.17-25.el6.i686.rpm) = 23568 SHA256 (rpm/i686/centos/6.7/slang-2.2.1-1.el6.i686.rpm) = c6886d071eb63651df939c19f12363a1a68d112cedaa02019c94f53d39dd2f1f SIZE (rpm/i686/centos/6.7/slang-2.2.1-1.el6.i686.rpm) = 483404 SHA256 (rpm/i686/centos/6.7/util-linux-ng-2.17.2-12.18.el6.i686.rpm) = 42738e2ff5a1c936f972d1175def794d470511e1a72753005c6a6b80e50a2fd9 SIZE (rpm/i686/centos/6.7/util-linux-ng-2.17.2-12.18.el6.i686.rpm) = 1644620 -SHA256 (rpm/i686/centos/6.7/which-2.19-6.el6.i686.rpm) = 3b7b2af92a3868f69b0d7e24db09ecbcf20d48b64d96778fedf3e0462982ad81 -SIZE (rpm/i686/centos/6.7/which-2.19-6.el6.i686.rpm) = 38852 SHA256 (rpm/i686/centos/6.7/zlib-1.2.3-29.el6.i686.rpm) = 1e40dce8a497f740b22d2035a76a92a34885613652c4b33262f04e2d12a00caa SIZE (rpm/i686/centos/6.7/zlib-1.2.3-29.el6.i686.rpm) = 74284 SHA256 (rpm/i686/centos/6.7/basesystem-10.0-4.el6.src.rpm) = 18d3bd0580f40bdc208773f26b424fa1975fad70fae9f179c52337a8f80ade76 SIZE (rpm/i686/centos/6.7/basesystem-10.0-4.el6.src.rpm) = 5949 SHA256 (rpm/i686/centos/6.7/bash-4.1.2-33.el6_7.1.src.rpm) = f917ba1d5b4ded250eda214d48d6d99e1f656791613c58668205bf99107c07d9 SIZE (rpm/i686/centos/6.7/bash-4.1.2-33.el6_7.1.src.rpm) = 6681242 SHA256 (rpm/i686/centos/6.7/bzip2-1.0.5-7.el6_0.src.rpm) = 99a3d6a620f9f427aaeba974ae06234d0a771231730de7e203b97dce1dbf1931 SIZE (rpm/i686/centos/6.7/bzip2-1.0.5-7.el6_0.src.rpm) = 855419 SHA256 (rpm/i686/centos/6.7/coreutils-8.4-37.el6_7.3.src.rpm) = c3dfdf304450f83b462a7373ffd1ed27d8fa8054b86eb22ffea7429c07204fc5 SIZE (rpm/i686/centos/6.7/coreutils-8.4-37.el6_7.3.src.rpm) = 4649866 SHA256 (rpm/i686/centos/6.7/compat-db-4.6.21-15.el6.src.rpm) = d35d08e52defe404712b9d4f2cb6475e05ed170676c090d5e05325c346abcb0f SIZE (rpm/i686/centos/6.7/compat-db-4.6.21-15.el6.src.rpm) = 9862622 SHA256 (rpm/i686/centos/6.7/compat-gcc-296-2.96-144.el6.src.rpm) = a2ad7ba6160eada6a669732187affa35110ac26d0bbd709474e476e4d3892370 SIZE (rpm/i686/centos/6.7/compat-gcc-296-2.96-144.el6.src.rpm) = 13430070 SHA256 (rpm/i686/centos/6.7/compat-gcc-32-3.2.3-69.el6.src.rpm) = 7ff0c6e00ad06876e10cb79fb87cb57b251e6710c63258e6850e990d9ea49917 SIZE (rpm/i686/centos/6.7/compat-gcc-32-3.2.3-69.el6.src.rpm) = 21622433 SHA256 (rpm/i686/centos/6.7/db4-4.7.25-20.el6_7.src.rpm) = 656c2bc7a94c9cae8768588123dfd837f0e7d6f4d24a5640759ea24b198653ad SIZE (rpm/i686/centos/6.7/db4-4.7.25-20.el6_7.src.rpm) = 13414534 SHA256 (rpm/i686/centos/6.7/e2fsprogs-1.41.12-22.el6.src.rpm) = eb4509ce21bb38c8734b0b352e940617a675e84cd22841907070487a21b0f6f7 SIZE (rpm/i686/centos/6.7/e2fsprogs-1.41.12-22.el6.src.rpm) = 5553847 SHA256 (rpm/i686/centos/6.7/elfutils-0.161-3.el6.src.rpm) = b1db380a11d6b823eaaac59a14bf22775747b65c0909b20affc811751857b31c SIZE (rpm/i686/centos/6.7/elfutils-0.161-3.el6.src.rpm) = 5570314 SHA256 (rpm/i686/centos/6.7/centos-release-6-7.el6.centos.12.3.src.rpm) = 9929fb4798c2f646cf005fddcd81f20972e1f0a8df7b38b99f3b4a2af6b72bbe SIZE (rpm/i686/centos/6.7/centos-release-6-7.el6.centos.12.3.src.rpm) = 20638 SHA256 (rpm/i686/centos/6.7/filesystem-2.4.30-3.el6.src.rpm) = fa8ab9b1a2f23933d6e2f9e2308601c4ee61dd5829f5edcb094aedee194d02e1 SIZE (rpm/i686/centos/6.7/filesystem-2.4.30-3.el6.src.rpm) = 20457 SHA256 (rpm/i686/centos/6.7/findutils-4.4.2-6.el6.src.rpm) = ee0fe5c28b088d3e5e4acd3099d84cf3af2cd5cad94991c2ff1498761b4529ce SIZE (rpm/i686/centos/6.7/findutils-4.4.2-6.el6.src.rpm) = 2184788 SHA256 (rpm/i686/centos/6.7/freetype-2.3.11-15.el6_6.1.src.rpm) = 02489b5951f7e555bb49d77d2c1531240b4b301cf0a75442b7c1e1c498bbf60f SIZE (rpm/i686/centos/6.7/freetype-2.3.11-15.el6_6.1.src.rpm) = 1779966 SHA256 (rpm/i686/centos/6.7/gamin-0.1.10-9.el6.src.rpm) = 5115ba7fbb40ab7bb5b1da851bd67121b000889b3a2fd9b6749eb350b75890b3 SIZE (rpm/i686/centos/6.7/gamin-0.1.10-9.el6.src.rpm) = 471128 SHA256 (rpm/i686/centos/6.7/gdbm-1.8.0-38.el6.src.rpm) = 161cd66d7663b9f549aee37358060dc32cff2017f62ce853ed9fa096b751a0f2 SIZE (rpm/i686/centos/6.7/gdbm-1.8.0-38.el6.src.rpm) = 151595 SHA256 (rpm/i686/centos/6.7/glib2-2.28.8-4.el6.src.rpm) = 949d8a71657700619884a2c0bfdb42eac17cf6ede73d206a7e427d95ad7dcf1c SIZE (rpm/i686/centos/6.7/glib2-2.28.8-4.el6.src.rpm) = 7119331 SHA256 (rpm/i686/centos/6.7/glibc-2.12-1.166.el6_7.7.src.rpm) = cf324b8eedeeeb49f27006d4defc9711190213269c5206964fd09e7107c87ba4 SIZE (rpm/i686/centos/6.7/glibc-2.12-1.166.el6_7.7.src.rpm) = 16239886 SHA256 (rpm/i686/centos/6.7/gmp-4.3.1-7.el6_2.2.src.rpm) = bdcb4d9e864f97b74f116b9bcb22ee2a589b8b7defef76d72004b80a157d9c7c SIZE (rpm/i686/centos/6.7/gmp-4.3.1-7.el6_2.2.src.rpm) = 1908630 SHA256 (rpm/i686/centos/6.7/grep-2.20-3.el6_7.1.src.rpm) = b8407de7352dde0186d02acc2ede8da58acfff7a376bfea75a845c7a7498d638 SIZE (rpm/i686/centos/6.7/grep-2.20-3.el6_7.1.src.rpm) = 1273925 SHA256 (rpm/i686/centos/6.7/texinfo-4.13a-8.el6.src.rpm) = c7cc4a48a8b429fe93f9462233a9d18cfbd33b994593b5e9cdcbde0a8c3c85db SIZE (rpm/i686/centos/6.7/texinfo-4.13a-8.el6.src.rpm) = 1589200 SHA256 (rpm/i686/centos/6.7/keyutils-1.4-5.el6.src.rpm) = 4fa4094f280a3eb8e1253476822fe3dbd2d186b5a8d4affc1311cbef0ca54f52 SIZE (rpm/i686/centos/6.7/keyutils-1.4-5.el6.src.rpm) = 56808 SHA256 (rpm/i686/centos/6.7/krb5-1.10.3-42.el6.src.rpm) = c28b9801ce8d0675e4b42d924277e84ef5ebff32c770226a651fdb743679e2aa SIZE (rpm/i686/centos/6.7/krb5-1.10.3-42.el6.src.rpm) = 12101433 SHA256 (rpm/i686/centos/6.7/less-436-13.el6.src.rpm) = 02f5363b8f82f4df9a4d359de686314fae3bf988c57401cac9eea641bbe2e0af SIZE (rpm/i686/centos/6.7/less-436-13.el6.src.rpm) = 331504 SHA256 (rpm/i686/centos/6.7/acl-2.2.49-6.el6.src.rpm) = f1feabe034da5a12be746d4bcfe12c5d15bdfc3f53f203880311aaa18ba9ec0d SIZE (rpm/i686/centos/6.7/acl-2.2.49-6.el6.src.rpm) = 385956 SHA256 (rpm/i686/centos/6.7/attr-2.4.44-7.el6.src.rpm) = 5f5440619e0109d9f8d913de1100f259296f62a38075bbc8d8608d6988695890 SIZE (rpm/i686/centos/6.7/attr-2.4.44-7.el6.src.rpm) = 335725 SHA256 (rpm/i686/centos/6.7/libcap-2.16-5.5.el6.src.rpm) = a0eb99aa04952657fc19541dd70ab185dd00594001a90d0ee138925f2bc3ab6a SIZE (rpm/i686/centos/6.7/libcap-2.16-5.5.el6.src.rpm) = 69497 SHA256 (rpm/i686/centos/6.7/gcc-4.4.7-16.el6.src.rpm) = eea99c50677354efffd12a70887d6be686ddcfe1f8d59328728683517e511221 SIZE (rpm/i686/centos/6.7/gcc-4.4.7-16.el6.src.rpm) = 52391361 SHA256 (rpm/i686/centos/6.7/libidn-1.18-2.el6.src.rpm) = a98516bd92453044dd497cce3c05aefe9bf5ec96a04eaf924b765d3038432054 SIZE (rpm/i686/centos/6.7/libidn-1.18-2.el6.src.rpm) = 2959181 SHA256 (rpm/i686/centos/6.7/libselinux-2.0.94-5.8.el6.src.rpm) = 2c69692e202e3c369786d73a1f7b5b31c29522c0dcf1ef9251711794c1869197 SIZE (rpm/i686/centos/6.7/libselinux-2.0.94-5.8.el6.src.rpm) = 301535 SHA256 (rpm/i686/centos/6.7/libsepol-2.0.41-4.el6.src.rpm) = ac1799bd0a70a93f771942ebb489eab4eb6a67422a624f925ba4080f98f73b13 SIZE (rpm/i686/centos/6.7/libsepol-2.0.41-4.el6.src.rpm) = 248004 SHA256 (rpm/i686/centos/6.7/ncurses-5.7-4.20090207.el6.src.rpm) = f60edf25d3cc6e9cf6f9a590a869d351ceb6cae161abf3102939c678be421f55 SIZE (rpm/i686/centos/6.7/ncurses-5.7-4.20090207.el6.src.rpm) = 2647744 SHA256 (rpm/i686/centos/6.7/pcre-7.8-7.el6.src.rpm) = 7006ca55f22ae910c395d5fdbf94cc0c0ff567e8703cac519d5d1abebbbcd94f SIZE (rpm/i686/centos/6.7/pcre-7.8-7.el6.src.rpm) = 876304 SHA256 (rpm/i686/centos/6.7/popt-1.13-7.el6.src.rpm) = 3b1b1c6e47e84d387b58899dbbc3bf24e45ae09fb79cf975c011aae245091406 SIZE (rpm/i686/centos/6.7/popt-1.13-7.el6.src.rpm) = 687631 SHA256 (rpm/i686/centos/6.7/readline-6.0-4.el6.src.rpm) = 898f831df1f1d566091317598cc5caeb3cb451347aaacfc52cc87895f449f5f0 SIZE (rpm/i686/centos/6.7/readline-6.0-4.el6.src.rpm) = 2290548 SHA256 (rpm/i686/centos/6.7/redhat-lsb-4.0-7.el6.centos.src.rpm) = 5b7987dfed1b310ccf12bab6cdfcdb9b5748b96d85ed4a037fba43e49252445e SIZE (rpm/i686/centos/6.7/redhat-lsb-4.0-7.el6.centos.src.rpm) = 52706 SHA256 (rpm/i686/centos/6.7/sed-4.2.1-10.el6.src.rpm) = 2cef61b73c9377d673a6fb83a568bb86b670e84e641391782f054614bf854e91 SIZE (rpm/i686/centos/6.7/sed-4.2.1-10.el6.src.rpm) = 974817 SHA256 (rpm/i686/centos/6.7/setserial-2.17-25.el6.src.rpm) = 1c09e38c61498be4014b102d5b4c79fff4f69eb24d012f7b38926e678880dffa SIZE (rpm/i686/centos/6.7/setserial-2.17-25.el6.src.rpm) = 64567 SHA256 (rpm/i686/centos/6.7/setup-2.8.14-20.el6_4.1.src.rpm) = 6cd2835e633e6af4c072f1e444dc150aa91cb96bf92c1ca84321e2bed2b54377 SIZE (rpm/i686/centos/6.7/setup-2.8.14-20.el6_4.1.src.rpm) = 182928 SHA256 (rpm/i686/centos/6.7/slang-2.2.1-1.el6.src.rpm) = 3ab2551b5d7d75a1d28d63fea1c48b9e83a87b8f2ba4cd6bd2c5ecb5dd91eda9 SIZE (rpm/i686/centos/6.7/slang-2.2.1-1.el6.src.rpm) = 1367444 SHA256 (rpm/i686/centos/6.7/util-linux-ng-2.17.2-12.18.el6.src.rpm) = 78c265431b91f18c73821c0dc0323fc757682f6d3058df2bfa141fce05541302 SIZE (rpm/i686/centos/6.7/util-linux-ng-2.17.2-12.18.el6.src.rpm) = 4545846 SHA256 (rpm/i686/centos/6.7/which-2.19-6.el6.src.rpm) = cefa932d168a041d2257085bd2afad13fc719da4bd68d31ef9694371b67135bd SIZE (rpm/i686/centos/6.7/which-2.19-6.el6.src.rpm) = 144253 SHA256 (rpm/i686/centos/6.7/zlib-1.2.3-29.el6.src.rpm) = ccdc3260d2b1ee35c3d224154878f9f632fa2153ce7908ffaabd10b3e216d26e SIZE (rpm/i686/centos/6.7/zlib-1.2.3-29.el6.src.rpm) = 516080 Index: head/emulators/linux_base-c6/distinfo.x86_64 =================================================================== --- head/emulators/linux_base-c6/distinfo.x86_64 (revision 413167) +++ head/emulators/linux_base-c6/distinfo.x86_64 (revision 413168) @@ -1,190 +1,254 @@ SHA256 (rpm/x86_64/centos/6.7/filesystem-2.4.30-3.el6.x86_64.rpm) = 150f03ed50c82c50c80ae4b0754a5a5f3a858d97d140721d9f31bf9ef191f880 SIZE (rpm/x86_64/centos/6.7/filesystem-2.4.30-3.el6.x86_64.rpm) = 1057228 SHA256 (rpm/x86_64/centos/6.7/setup-2.8.14-20.el6_4.1.noarch.rpm) = f3baabe199eabf0c11866c1c076f0c6bc01abe0c1cab20aa3348cd8e1c967031 SIZE (rpm/x86_64/centos/6.7/setup-2.8.14-20.el6_4.1.noarch.rpm) = 154440 SHA256 (rpm/x86_64/centos/6.7/basesystem-10.0-4.el6.noarch.rpm) = 18860007697438e375733bb4a36a599daac2e2ae95d98a74c436a10d0974710e SIZE (rpm/x86_64/centos/6.7/basesystem-10.0-4.el6.noarch.rpm) = 4784 SHA256 (rpm/x86_64/centos/6.7/bash-4.1.2-33.el6_7.1.x86_64.rpm) = 826458427d489d10472843abb8785c08a5f25e223354f292c63cbc5e685cfc35 SIZE (rpm/x86_64/centos/6.7/bash-4.1.2-33.el6_7.1.x86_64.rpm) = 929340 SHA256 (rpm/x86_64/centos/6.7/bzip2-1.0.5-7.el6_0.x86_64.rpm) = e179e17b35407c2e6725a6ee230bbf51531f6ed788e1b8c4ac1e9ee859463648 SIZE (rpm/x86_64/centos/6.7/bzip2-1.0.5-7.el6_0.x86_64.rpm) = 49724 -SHA256 (rpm/x86_64/centos/6.7/bzip2-libs-1.0.5-7.el6_0.x86_64.rpm) = b2695bdc5a3119873c2580ca96b972b932c96b553ae98778461ef82204233a4a -SIZE (rpm/x86_64/centos/6.7/bzip2-libs-1.0.5-7.el6_0.x86_64.rpm) = 37368 SHA256 (rpm/x86_64/centos/6.7/centos-release-6-7.el6.centos.12.3.x86_64.rpm) = 48bf14cd636b4b255c42f21b9b8ff24457104fbf6b9d5aa7b33bae0f6d38b9f3 SIZE (rpm/x86_64/centos/6.7/centos-release-6-7.el6.centos.12.3.x86_64.rpm) = 21900 -SHA256 (rpm/x86_64/centos/6.7/compat-db43-4.3.29-15.el6.x86_64.rpm) = c852d0b0bb4769226fbb5f5295fd6bfd758bb30470c8621d6beb2624c5cffe8e -SIZE (rpm/x86_64/centos/6.7/compat-db43-4.3.29-15.el6.x86_64.rpm) = 894824 -SHA256 (rpm/x86_64/centos/6.7/compat-libstdc++-33-3.2.3-69.el6.x86_64.rpm) = 41ea0fec16c0ca62722a32b7ffd70bb716beec8b6dd32b57f076be02a5aee00c -SIZE (rpm/x86_64/centos/6.7/compat-libstdc++-33-3.2.3-69.el6.x86_64.rpm) = 187476 -SHA256 (rpm/x86_64/centos/6.7/compat-libstdc++-296-2.96-144.el6.i686.rpm) = a0d7cba8cf0fcb625ce3181d64fa59ca018b562350c30b3a13fd8b858f21f134 -SIZE (rpm/x86_64/centos/6.7/compat-libstdc++-296-2.96-144.el6.i686.rpm) = 78832 SHA256 (rpm/x86_64/centos/6.7/coreutils-8.4-37.el6_7.3.x86_64.rpm) = 93c649895566aafba458dc64e9589fbd809ea3ef705c7dd5c5f6460b583a046f SIZE (rpm/x86_64/centos/6.7/coreutils-8.4-37.el6_7.3.x86_64.rpm) = 3186928 -SHA256 (rpm/x86_64/centos/6.7/db4-4.7.25-20.el6_7.x86_64.rpm) = 7410c7cd0242c8cd55abeee10e67826a866e3be53b7d0e4f44c9437861097d19 -SIZE (rpm/x86_64/centos/6.7/db4-4.7.25-20.el6_7.x86_64.rpm) = 576640 SHA256 (rpm/x86_64/centos/6.7/e2fsprogs-1.41.12-22.el6.x86_64.rpm) = 7d0e9722e0aaa07d4771e681e5c12abab9235f99432dbfb790a057e9ae7692e5 SIZE (rpm/x86_64/centos/6.7/e2fsprogs-1.41.12-22.el6.x86_64.rpm) = 566896 -SHA256 (rpm/x86_64/centos/6.7/e2fsprogs-libs-1.41.12-22.el6.x86_64.rpm) = cddd17f8fe98eb2e501ebf0d0d72d754fe22a509953bcb8f10b1963fbe646909 -SIZE (rpm/x86_64/centos/6.7/e2fsprogs-libs-1.41.12-22.el6.x86_64.rpm) = 123932 SHA256 (rpm/x86_64/centos/6.7/elfutils-0.161-3.el6.x86_64.rpm) = ce7c3873940e10ba84334b56c2a663e1be93943d6a9b94323ee244c9472b220d SIZE (rpm/x86_64/centos/6.7/elfutils-0.161-3.el6.x86_64.rpm) = 243044 SHA256 (rpm/x86_64/centos/6.7/findutils-4.4.2-6.el6.x86_64.rpm) = 6224143ce90ba9862d2572c2b1cc6655f87e02c0156566d7d721652db99f99be SIZE (rpm/x86_64/centos/6.7/findutils-4.4.2-6.el6.x86_64.rpm) = 458112 +SHA256 (rpm/x86_64/centos/6.7/glibc-common-2.12-1.166.el6_7.7.x86_64.rpm) = 9270e196264742aa6dad454f91edc72535a8fd5e55e0aa205008d3756eae990a +SIZE (rpm/x86_64/centos/6.7/glibc-common-2.12-1.166.el6_7.7.x86_64.rpm) = 14887196 +SHA256 (rpm/x86_64/centos/6.7/grep-2.20-3.el6_7.1.x86_64.rpm) = 5d5dd440313f0b778c947bfc8febddfb36d72d94ca24b90af77775000e63e672 +SIZE (rpm/x86_64/centos/6.7/grep-2.20-3.el6_7.1.x86_64.rpm) = 352760 +SHA256 (rpm/x86_64/centos/6.7/info-4.13a-8.el6.x86_64.rpm) = 15f7b80e6a468a4d933fc607a6bf76485a9c249d3b2a252d027ce5c40e697eac +SIZE (rpm/x86_64/centos/6.7/info-4.13a-8.el6.x86_64.rpm) = 181876 +SHA256 (rpm/x86_64/centos/6.7/keyutils-1.4-5.el6.x86_64.rpm) = aa8417be37fa6fd3f52cda08bd04376b5701d9837ef8a34b33a9f8ef79c0e243 +SIZE (rpm/x86_64/centos/6.7/keyutils-1.4-5.el6.x86_64.rpm) = 40152 +SHA256 (rpm/x86_64/centos/6.7/less-436-13.el6.x86_64.rpm) = 7bf9bb5d1143cadddd6390215d9aa9477d367f3e0c09ac3bd5da3af846215522 +SIZE (rpm/x86_64/centos/6.7/less-436-13.el6.x86_64.rpm) = 110220 +SHA256 (rpm/x86_64/centos/6.7/ncurses-5.7-4.20090207.el6.x86_64.rpm) = a4cd0365f3fe8240e5b081597458888ebe42fbe88d0c86e87f5b48b718ca402b +SIZE (rpm/x86_64/centos/6.7/ncurses-5.7-4.20090207.el6.x86_64.rpm) = 273996 +SHA256 (rpm/x86_64/centos/6.7/sed-4.2.1-10.el6.x86_64.rpm) = 4ef0cd3b93d6cef57037aaf858f61810da69cc2f905a4da1cadc5e641a5c4b7f +SIZE (rpm/x86_64/centos/6.7/sed-4.2.1-10.el6.x86_64.rpm) = 221004 +SHA256 (rpm/x86_64/centos/6.7/setserial-2.17-25.el6.x86_64.rpm) = f28996685437d9caa76c35b67da2e72d48f38326bac198f1211a328abf9d04b1 +SIZE (rpm/x86_64/centos/6.7/setserial-2.17-25.el6.x86_64.rpm) = 23868 +SHA256 (rpm/x86_64/centos/6.7/which-2.19-6.el6.x86_64.rpm) = 279da7e844149005d729b0a46b9be0b266777fb7c2bd72b815ac8f4d09b61878 +SIZE (rpm/x86_64/centos/6.7/which-2.19-6.el6.x86_64.rpm) = 39340 +SHA256 (rpm/x86_64/centos/6.7/compat-libstdc++-296-2.96-144.el6.i686.rpm) = a0d7cba8cf0fcb625ce3181d64fa59ca018b562350c30b3a13fd8b858f21f134 +SIZE (rpm/x86_64/centos/6.7/compat-libstdc++-296-2.96-144.el6.i686.rpm) = 78832 +SHA256 (rpm/x86_64/centos/6.7/bzip2-libs-1.0.5-7.el6_0.x86_64.rpm) = b2695bdc5a3119873c2580ca96b972b932c96b553ae98778461ef82204233a4a +SIZE (rpm/x86_64/centos/6.7/bzip2-libs-1.0.5-7.el6_0.x86_64.rpm) = 37368 +SHA256 (rpm/x86_64/centos/6.7/compat-db43-4.3.29-15.el6.x86_64.rpm) = c852d0b0bb4769226fbb5f5295fd6bfd758bb30470c8621d6beb2624c5cffe8e +SIZE (rpm/x86_64/centos/6.7/compat-db43-4.3.29-15.el6.x86_64.rpm) = 894824 +SHA256 (rpm/x86_64/centos/6.7/compat-libstdc++-33-3.2.3-69.el6.x86_64.rpm) = 41ea0fec16c0ca62722a32b7ffd70bb716beec8b6dd32b57f076be02a5aee00c +SIZE (rpm/x86_64/centos/6.7/compat-libstdc++-33-3.2.3-69.el6.x86_64.rpm) = 187476 +SHA256 (rpm/x86_64/centos/6.7/db4-4.7.25-20.el6_7.x86_64.rpm) = 7410c7cd0242c8cd55abeee10e67826a866e3be53b7d0e4f44c9437861097d19 +SIZE (rpm/x86_64/centos/6.7/db4-4.7.25-20.el6_7.x86_64.rpm) = 576640 +SHA256 (rpm/x86_64/centos/6.7/e2fsprogs-libs-1.41.12-22.el6.x86_64.rpm) = cddd17f8fe98eb2e501ebf0d0d72d754fe22a509953bcb8f10b1963fbe646909 +SIZE (rpm/x86_64/centos/6.7/e2fsprogs-libs-1.41.12-22.el6.x86_64.rpm) = 123932 SHA256 (rpm/x86_64/centos/6.7/freetype-2.3.11-15.el6_6.1.x86_64.rpm) = db9f9418457ac284178ce414f70dcd6e1aa55b3a02b450e3ea6441776a7b4ed3 SIZE (rpm/x86_64/centos/6.7/freetype-2.3.11-15.el6_6.1.x86_64.rpm) = 369532 SHA256 (rpm/x86_64/centos/6.7/gamin-0.1.10-9.el6.x86_64.rpm) = 9632fe00e669183fa1b1dfc7ef9c0bcd792d53239cb05e9861b5a47951fe145a SIZE (rpm/x86_64/centos/6.7/gamin-0.1.10-9.el6.x86_64.rpm) = 125008 SHA256 (rpm/x86_64/centos/6.7/gdbm-1.8.0-38.el6.x86_64.rpm) = 8ff51f12fff5cdac53e72f0dc757d53a5aa4093b8b0fd704684df9e520639a2a SIZE (rpm/x86_64/centos/6.7/gdbm-1.8.0-38.el6.x86_64.rpm) = 29548 SHA256 (rpm/x86_64/centos/6.7/glib2-2.28.8-4.el6.x86_64.rpm) = fd969e3425645dcf0495bd61feaa01f0b83296c72cfec71d0ccfac77b2ee15a7 SIZE (rpm/x86_64/centos/6.7/glib2-2.28.8-4.el6.x86_64.rpm) = 1753004 SHA256 (rpm/x86_64/centos/6.7/glibc-2.12-1.166.el6_7.7.x86_64.rpm) = 2c8769972f74c508392cf3d26ccaf1e977e26c6de17607d0f0efcd94c893e497 SIZE (rpm/x86_64/centos/6.7/glibc-2.12-1.166.el6_7.7.x86_64.rpm) = 3997460 -SHA256 (rpm/x86_64/centos/6.7/glibc-common-2.12-1.166.el6_7.7.x86_64.rpm) = 9270e196264742aa6dad454f91edc72535a8fd5e55e0aa205008d3756eae990a -SIZE (rpm/x86_64/centos/6.7/glibc-common-2.12-1.166.el6_7.7.x86_64.rpm) = 14887196 SHA256 (rpm/x86_64/centos/6.7/gmp-4.3.1-7.el6_2.2.x86_64.rpm) = ec257a3a9b58ac802f344623cf4bb8a507c75583c18c0a3d798dafd69059b7fe SIZE (rpm/x86_64/centos/6.7/gmp-4.3.1-7.el6_2.2.x86_64.rpm) = 211528 -SHA256 (rpm/x86_64/centos/6.7/grep-2.20-3.el6_7.1.x86_64.rpm) = 5d5dd440313f0b778c947bfc8febddfb36d72d94ca24b90af77775000e63e672 -SIZE (rpm/x86_64/centos/6.7/grep-2.20-3.el6_7.1.x86_64.rpm) = 352760 -SHA256 (rpm/x86_64/centos/6.7/info-4.13a-8.el6.x86_64.rpm) = 15f7b80e6a468a4d933fc607a6bf76485a9c249d3b2a252d027ce5c40e697eac -SIZE (rpm/x86_64/centos/6.7/info-4.13a-8.el6.x86_64.rpm) = 181876 -SHA256 (rpm/x86_64/centos/6.7/keyutils-1.4-5.el6.x86_64.rpm) = aa8417be37fa6fd3f52cda08bd04376b5701d9837ef8a34b33a9f8ef79c0e243 -SIZE (rpm/x86_64/centos/6.7/keyutils-1.4-5.el6.x86_64.rpm) = 40152 SHA256 (rpm/x86_64/centos/6.7/keyutils-libs-1.4-5.el6.x86_64.rpm) = d2baa3ca6959fd7000da0c06266daf01665ab661f263101d2ed4f5903c8e8a86 SIZE (rpm/x86_64/centos/6.7/keyutils-libs-1.4-5.el6.x86_64.rpm) = 20684 SHA256 (rpm/x86_64/centos/6.7/krb5-libs-1.10.3-42.el6.x86_64.rpm) = 36d91861da361acaf2ef92aeeb64e2abb310a5591dd71e7bc1484226476de371 SIZE (rpm/x86_64/centos/6.7/krb5-libs-1.10.3-42.el6.x86_64.rpm) = 786932 -SHA256 (rpm/x86_64/centos/6.7/less-436-13.el6.x86_64.rpm) = 7bf9bb5d1143cadddd6390215d9aa9477d367f3e0c09ac3bd5da3af846215522 -SIZE (rpm/x86_64/centos/6.7/less-436-13.el6.x86_64.rpm) = 110220 SHA256 (rpm/x86_64/centos/6.7/libacl-2.2.49-6.el6.x86_64.rpm) = 2323e63de3fdeb2297c7473eb6a7d9afcb9de96b49d619939b5522d34ae07888 SIZE (rpm/x86_64/centos/6.7/libacl-2.2.49-6.el6.x86_64.rpm) = 24008 SHA256 (rpm/x86_64/centos/6.7/libattr-2.4.44-7.el6.x86_64.rpm) = 030c511f3aafa5096775faf6f5dc0dd836eee0addde3e48d985bb4f3e69a72df SIZE (rpm/x86_64/centos/6.7/libattr-2.4.44-7.el6.x86_64.rpm) = 15636 SHA256 (rpm/x86_64/centos/6.7/libblkid-2.17.2-12.18.el6.x86_64.rpm) = 5d978b3734ec08661b61d6958119c242a81029404a717485536907c3ceb68eb5 SIZE (rpm/x86_64/centos/6.7/libblkid-2.17.2-12.18.el6.x86_64.rpm) = 118592 SHA256 (rpm/x86_64/centos/6.7/libcap-2.16-5.5.el6.x86_64.rpm) = 1687ca7a8af3356851f5257bbdb7a0b16674f18a4d79b4bce605c6b76b0ea0a5 SIZE (rpm/x86_64/centos/6.7/libcap-2.16-5.5.el6.x86_64.rpm) = 32448 SHA256 (rpm/x86_64/centos/6.7/libcom_err-1.41.12-22.el6.x86_64.rpm) = bb3343444f858985d65a6fc9629cbd37f4e14acb6a97dbf6f5a127a20e62aeb7 SIZE (rpm/x86_64/centos/6.7/libcom_err-1.41.12-22.el6.x86_64.rpm) = 38280 SHA256 (rpm/x86_64/centos/6.7/libgcc-4.4.7-16.el6.x86_64.rpm) = 69a3b566726a915a4c6b4df33a67e3f038072b092dea6fa7d7077a7ec90e2be6 SIZE (rpm/x86_64/centos/6.7/libgcc-4.4.7-16.el6.x86_64.rpm) = 105200 SHA256 (rpm/x86_64/centos/6.7/libidn-1.18-2.el6.x86_64.rpm) = b4f610e5afe2ef452ed665d9e6f43d22f63744fe9d5c6ea00370c2455546bc91 SIZE (rpm/x86_64/centos/6.7/libidn-1.18-2.el6.x86_64.rpm) = 210376 SHA256 (rpm/x86_64/centos/6.7/libselinux-2.0.94-5.8.el6.x86_64.rpm) = 26faa15fc102e9d90e2bf555430931b641cc30aeb1363258a0e0d62f9ff61455 SIZE (rpm/x86_64/centos/6.7/libselinux-2.0.94-5.8.el6.x86_64.rpm) = 111084 SHA256 (rpm/x86_64/centos/6.7/libsepol-2.0.41-4.el6.x86_64.rpm) = b8210da453e53ebdc14e06e1b11426c76e3ea203dce67cea2965f5fbc9e039d8 SIZE (rpm/x86_64/centos/6.7/libsepol-2.0.41-4.el6.x86_64.rpm) = 131216 SHA256 (rpm/x86_64/centos/6.7/libstdc++-4.4.7-16.el6.x86_64.rpm) = 6ca96e6623eec0e04b534d9f118182aab485f30507850661ef7b5f3b9639c3ae SIZE (rpm/x86_64/centos/6.7/libstdc++-4.4.7-16.el6.x86_64.rpm) = 301980 SHA256 (rpm/x86_64/centos/6.7/libuuid-2.17.2-12.18.el6.x86_64.rpm) = cf31ed2f1d39f522366142a7c849f59bf285358ebccdc2e89745f1fef2d69048 SIZE (rpm/x86_64/centos/6.7/libuuid-2.17.2-12.18.el6.x86_64.rpm) = 70508 -SHA256 (rpm/x86_64/centos/6.7/ncurses-5.7-4.20090207.el6.x86_64.rpm) = a4cd0365f3fe8240e5b081597458888ebe42fbe88d0c86e87f5b48b718ca402b -SIZE (rpm/x86_64/centos/6.7/ncurses-5.7-4.20090207.el6.x86_64.rpm) = 273996 SHA256 (rpm/x86_64/centos/6.7/ncurses-libs-5.7-4.20090207.el6.x86_64.rpm) = 88b5174e139c595569787ebe4750fefdfc5e047657f13df0c87b8316ff6cf956 SIZE (rpm/x86_64/centos/6.7/ncurses-libs-5.7-4.20090207.el6.x86_64.rpm) = 250916 SHA256 (rpm/x86_64/centos/6.7/pcre-7.8-7.el6.x86_64.rpm) = 6e099492eb691f0e869c02a7352530ec6a8d0056c1aadcde3613cc1f8e24e52c SIZE (rpm/x86_64/centos/6.7/pcre-7.8-7.el6.x86_64.rpm) = 200564 SHA256 (rpm/x86_64/centos/6.7/popt-1.13-7.el6.x86_64.rpm) = eb36a886f5f2b9f5ab7999b2b90c4ec416f0b8a151817874d8e2fc8f5a6a757f SIZE (rpm/x86_64/centos/6.7/popt-1.13-7.el6.x86_64.rpm) = 39604 SHA256 (rpm/x86_64/centos/6.7/readline-6.0-4.el6.x86_64.rpm) = d777c89f34b0cba68d1dd6fb57a4f06a60de02dcfa0dd0c8e5e2255a51b145cd SIZE (rpm/x86_64/centos/6.7/readline-6.0-4.el6.x86_64.rpm) = 182628 SHA256 (rpm/x86_64/centos/6.7/redhat-lsb-core-4.0-7.el6.centos.x86_64.rpm) = 697c45997daaeace47528a010c8071027e27c2820104ea6f2805ef84325c6077 SIZE (rpm/x86_64/centos/6.7/redhat-lsb-core-4.0-7.el6.centos.x86_64.rpm) = 26016 -SHA256 (rpm/x86_64/centos/6.7/sed-4.2.1-10.el6.x86_64.rpm) = 4ef0cd3b93d6cef57037aaf858f61810da69cc2f905a4da1cadc5e641a5c4b7f -SIZE (rpm/x86_64/centos/6.7/sed-4.2.1-10.el6.x86_64.rpm) = 221004 -SHA256 (rpm/x86_64/centos/6.7/setserial-2.17-25.el6.x86_64.rpm) = f28996685437d9caa76c35b67da2e72d48f38326bac198f1211a328abf9d04b1 -SIZE (rpm/x86_64/centos/6.7/setserial-2.17-25.el6.x86_64.rpm) = 23868 SHA256 (rpm/x86_64/centos/6.7/slang-2.2.1-1.el6.x86_64.rpm) = 32188b2dbe1f7d1e460f85416c067a53a816757df2c84d39abc07936ce6c5376 SIZE (rpm/x86_64/centos/6.7/slang-2.2.1-1.el6.x86_64.rpm) = 484172 SHA256 (rpm/x86_64/centos/6.7/util-linux-ng-2.17.2-12.18.el6.x86_64.rpm) = 475876e8bc4f098aa80b3d869a2a7a5ef560a67a846a289ed39a00dcc83d3f99 SIZE (rpm/x86_64/centos/6.7/util-linux-ng-2.17.2-12.18.el6.x86_64.rpm) = 1641624 -SHA256 (rpm/x86_64/centos/6.7/which-2.19-6.el6.x86_64.rpm) = 279da7e844149005d729b0a46b9be0b266777fb7c2bd72b815ac8f4d09b61878 -SIZE (rpm/x86_64/centos/6.7/which-2.19-6.el6.x86_64.rpm) = 39340 SHA256 (rpm/x86_64/centos/6.7/zlib-1.2.3-29.el6.x86_64.rpm) = c5b040d38b550da4c75aba719c0b9d6c6936158b2d58ac10a99adc76a68a6302 SIZE (rpm/x86_64/centos/6.7/zlib-1.2.3-29.el6.x86_64.rpm) = 74568 +SHA256 (rpm/x86_64/centos/6.7/bzip2-libs-1.0.5-7.el6_0.i686.rpm) = d3424f4610860e7f8f444cc3cddf51cd75f5e58ca0ecffc8bdbbcb5f8fe1b0d1 +SIZE (rpm/x86_64/centos/6.7/bzip2-libs-1.0.5-7.el6_0.i686.rpm) = 37204 +SHA256 (rpm/x86_64/centos/6.7/compat-db43-4.3.29-15.el6.i686.rpm) = 202767fa03ff58947d6a2ec2437e52fc9179f3995fa77264753fde03f2737d0a +SIZE (rpm/x86_64/centos/6.7/compat-db43-4.3.29-15.el6.i686.rpm) = 914280 +SHA256 (rpm/x86_64/centos/6.7/compat-libstdc++-33-3.2.3-69.el6.i686.rpm) = 894abcc5f0b28e39c71d4b0ca27d19540e7eb9d3c32664d5621324c9efbfe11e +SIZE (rpm/x86_64/centos/6.7/compat-libstdc++-33-3.2.3-69.el6.i686.rpm) = 193328 +SHA256 (rpm/x86_64/centos/6.7/db4-4.7.25-20.el6_7.i686.rpm) = 1bbe6a2090411a8ecec459f1bc94ebfa586f40a3a4f0c4e440e0e3bb06eb7ba5 +SIZE (rpm/x86_64/centos/6.7/db4-4.7.25-20.el6_7.i686.rpm) = 594068 +SHA256 (rpm/x86_64/centos/6.7/e2fsprogs-libs-1.41.12-22.el6.i686.rpm) = 4bc8b22538b56dda34db646ec87218b333499d00e90a9bc5852cbef178b357f1 +SIZE (rpm/x86_64/centos/6.7/e2fsprogs-libs-1.41.12-22.el6.i686.rpm) = 130892 +SHA256 (rpm/x86_64/centos/6.7/freetype-2.3.11-15.el6_6.1.i686.rpm) = 45a77d6322ca6eba1839d5ae1a2d3600053b53442178c66b4a2922db7bf675e6 +SIZE (rpm/x86_64/centos/6.7/freetype-2.3.11-15.el6_6.1.i686.rpm) = 373620 +SHA256 (rpm/x86_64/centos/6.7/gamin-0.1.10-9.el6.i686.rpm) = 154c598675497b411f77e51b2e2a6b6b4282ecf8d368dc17585757dad113338a +SIZE (rpm/x86_64/centos/6.7/gamin-0.1.10-9.el6.i686.rpm) = 122940 +SHA256 (rpm/x86_64/centos/6.7/gdbm-1.8.0-38.el6.i686.rpm) = ff6addf9697a57eca18c2424bc6791648caa99c105f2b8c1c9d6c136b6afd7d3 +SIZE (rpm/x86_64/centos/6.7/gdbm-1.8.0-38.el6.i686.rpm) = 29672 +SHA256 (rpm/x86_64/centos/6.7/glib2-2.28.8-4.el6.i686.rpm) = 778bcfc904fa6c697b0a11399e5310e1684f58c81ae46f6962efcd8d663bc154 +SIZE (rpm/x86_64/centos/6.7/glib2-2.28.8-4.el6.i686.rpm) = 1735384 +SHA256 (rpm/x86_64/centos/6.7/glibc-2.12-1.166.el6_7.7.i686.rpm) = b864b56998c7f54ad2ff8a88e6d2e2e9bbb7fed5b5cd1a5a37335df3db1009f5 +SIZE (rpm/x86_64/centos/6.7/glibc-2.12-1.166.el6_7.7.i686.rpm) = 4558520 +SHA256 (rpm/x86_64/centos/6.7/gmp-4.3.1-7.el6_2.2.i686.rpm) = f1855126a943ed4aac412006af98490248b739b4f9f78487f17c3275557948e2 +SIZE (rpm/x86_64/centos/6.7/gmp-4.3.1-7.el6_2.2.i686.rpm) = 331548 +SHA256 (rpm/x86_64/centos/6.7/keyutils-libs-1.4-5.el6.i686.rpm) = 59ca71f1c6b4cd19b58a35afd065f745ccfda46f55b4bdad9dda93f5ca872e60 +SIZE (rpm/x86_64/centos/6.7/keyutils-libs-1.4-5.el6.i686.rpm) = 20780 +SHA256 (rpm/x86_64/centos/6.7/krb5-libs-1.10.3-42.el6.i686.rpm) = 9aa44ac813cdff74b263f2cef21f1a79c7d5b52eebe9649ea3e89811bf39a106 +SIZE (rpm/x86_64/centos/6.7/krb5-libs-1.10.3-42.el6.i686.rpm) = 795280 +SHA256 (rpm/x86_64/centos/6.7/libacl-2.2.49-6.el6.i686.rpm) = 64c400f31986db7f085e85454a305344da141872b6f3ac7922caa2fa656d3c12 +SIZE (rpm/x86_64/centos/6.7/libacl-2.2.49-6.el6.i686.rpm) = 24480 +SHA256 (rpm/x86_64/centos/6.7/libattr-2.4.44-7.el6.i686.rpm) = 16f9cba06fcbdf5163c1ae48e3d8df5b2a26eec1c8bfa3f7907718931ff8b93b +SIZE (rpm/x86_64/centos/6.7/libattr-2.4.44-7.el6.i686.rpm) = 15640 +SHA256 (rpm/x86_64/centos/6.7/libblkid-2.17.2-12.18.el6.i686.rpm) = 93e668e95e20e1adf85bdcf68163108350b6ab58701dd08494bf372edb996282 +SIZE (rpm/x86_64/centos/6.7/libblkid-2.17.2-12.18.el6.i686.rpm) = 123288 +SHA256 (rpm/x86_64/centos/6.7/libcap-2.16-5.5.el6.i686.rpm) = 8d972a4332b8f942258e489574929de3ee660315dc6ca945939d54a99ec4398c +SIZE (rpm/x86_64/centos/6.7/libcap-2.16-5.5.el6.i686.rpm) = 31516 +SHA256 (rpm/x86_64/centos/6.7/libcom_err-1.41.12-22.el6.i686.rpm) = a17fab636dcd0725ff95176ac060517430a719846695afdb487dea213d1e920d +SIZE (rpm/x86_64/centos/6.7/libcom_err-1.41.12-22.el6.i686.rpm) = 38212 +SHA256 (rpm/x86_64/centos/6.7/libgcc-4.4.7-16.el6.i686.rpm) = 23bace51bc52442273828b872f7c8d2b07f49ee4f8da928dcc35c6962c37debc +SIZE (rpm/x86_64/centos/6.7/libgcc-4.4.7-16.el6.i686.rpm) = 116816 +SHA256 (rpm/x86_64/centos/6.7/libidn-1.18-2.el6.i686.rpm) = a72cdffdb6aeeb5f94eeaeb6db3b4ac88eb0688760b2b75d2c5086d987d78e27 +SIZE (rpm/x86_64/centos/6.7/libidn-1.18-2.el6.i686.rpm) = 210260 +SHA256 (rpm/x86_64/centos/6.7/libselinux-2.0.94-5.8.el6.i686.rpm) = 24129f23d6438e04a1274f6070a67266dae162f40f9a5ba7232cd8b056907228 +SIZE (rpm/x86_64/centos/6.7/libselinux-2.0.94-5.8.el6.i686.rpm) = 111268 +SHA256 (rpm/x86_64/centos/6.7/libsepol-2.0.41-4.el6.i686.rpm) = 0f7b3c09a89b4f943faefc73bc5664f075146f6b96c8d1d38da06ed02cc2f21b +SIZE (rpm/x86_64/centos/6.7/libsepol-2.0.41-4.el6.i686.rpm) = 128032 +SHA256 (rpm/x86_64/centos/6.7/libstdc++-4.4.7-16.el6.i686.rpm) = 5901e37db999276c3f517879e88c05bf5349736fd0599b207c2750ff222286e2 +SIZE (rpm/x86_64/centos/6.7/libstdc++-4.4.7-16.el6.i686.rpm) = 309312 +SHA256 (rpm/x86_64/centos/6.7/libuuid-2.17.2-12.18.el6.i686.rpm) = adff95ffc188f93e59c3517939a75de56eccf886b867948f696753e787f3d22d +SIZE (rpm/x86_64/centos/6.7/libuuid-2.17.2-12.18.el6.i686.rpm) = 71040 +SHA256 (rpm/x86_64/centos/6.7/ncurses-libs-5.7-4.20090207.el6.i686.rpm) = fe1778ee05c4840cb27a6804e6af6d61ca6f48666560654e3cfd765fa20ff2bb +SIZE (rpm/x86_64/centos/6.7/ncurses-libs-5.7-4.20090207.el6.i686.rpm) = 255352 +SHA256 (rpm/x86_64/centos/6.7/pcre-7.8-7.el6.i686.rpm) = 62aff1a2975adc4a02293297d12b0202b5710155c00753bd4657d6896c3e7b8e +SIZE (rpm/x86_64/centos/6.7/pcre-7.8-7.el6.i686.rpm) = 201096 +SHA256 (rpm/x86_64/centos/6.7/popt-1.13-7.el6.i686.rpm) = 617f8ee4d7776bb46a3a489ea10ac45831fd44947a30ef8d2126490ca2aa7a90 +SIZE (rpm/x86_64/centos/6.7/popt-1.13-7.el6.i686.rpm) = 39636 +SHA256 (rpm/x86_64/centos/6.7/readline-6.0-4.el6.i686.rpm) = 29fae06e31b73f4e5e0cd5f4431a3927c0e80b204e3fbcf0a6ccfc30720e8452 +SIZE (rpm/x86_64/centos/6.7/readline-6.0-4.el6.i686.rpm) = 180296 +SHA256 (rpm/x86_64/centos/6.7/redhat-lsb-core-4.0-7.el6.centos.i686.rpm) = c8a54450a1716a676b06db0a734c53c7057925359cb4e4bc36fa66f32cff5a0f +SIZE (rpm/x86_64/centos/6.7/redhat-lsb-core-4.0-7.el6.centos.i686.rpm) = 26108 +SHA256 (rpm/x86_64/centos/6.7/slang-2.2.1-1.el6.i686.rpm) = c6886d071eb63651df939c19f12363a1a68d112cedaa02019c94f53d39dd2f1f +SIZE (rpm/x86_64/centos/6.7/slang-2.2.1-1.el6.i686.rpm) = 483404 +SHA256 (rpm/x86_64/centos/6.7/util-linux-ng-2.17.2-12.18.el6.i686.rpm) = 42738e2ff5a1c936f972d1175def794d470511e1a72753005c6a6b80e50a2fd9 +SIZE (rpm/x86_64/centos/6.7/util-linux-ng-2.17.2-12.18.el6.i686.rpm) = 1644620 +SHA256 (rpm/x86_64/centos/6.7/zlib-1.2.3-29.el6.i686.rpm) = 1e40dce8a497f740b22d2035a76a92a34885613652c4b33262f04e2d12a00caa +SIZE (rpm/x86_64/centos/6.7/zlib-1.2.3-29.el6.i686.rpm) = 74284 SHA256 (rpm/x86_64/centos/6.7/basesystem-10.0-4.el6.src.rpm) = 18d3bd0580f40bdc208773f26b424fa1975fad70fae9f179c52337a8f80ade76 SIZE (rpm/x86_64/centos/6.7/basesystem-10.0-4.el6.src.rpm) = 5949 SHA256 (rpm/x86_64/centos/6.7/bash-4.1.2-33.el6_7.1.src.rpm) = f917ba1d5b4ded250eda214d48d6d99e1f656791613c58668205bf99107c07d9 SIZE (rpm/x86_64/centos/6.7/bash-4.1.2-33.el6_7.1.src.rpm) = 6681242 SHA256 (rpm/x86_64/centos/6.7/bzip2-1.0.5-7.el6_0.src.rpm) = 99a3d6a620f9f427aaeba974ae06234d0a771231730de7e203b97dce1dbf1931 SIZE (rpm/x86_64/centos/6.7/bzip2-1.0.5-7.el6_0.src.rpm) = 855419 SHA256 (rpm/x86_64/centos/6.7/coreutils-8.4-37.el6_7.3.src.rpm) = c3dfdf304450f83b462a7373ffd1ed27d8fa8054b86eb22ffea7429c07204fc5 SIZE (rpm/x86_64/centos/6.7/coreutils-8.4-37.el6_7.3.src.rpm) = 4649866 SHA256 (rpm/x86_64/centos/6.7/compat-db-4.6.21-15.el6.src.rpm) = d35d08e52defe404712b9d4f2cb6475e05ed170676c090d5e05325c346abcb0f SIZE (rpm/x86_64/centos/6.7/compat-db-4.6.21-15.el6.src.rpm) = 9862622 SHA256 (rpm/x86_64/centos/6.7/compat-gcc-296-2.96-144.el6.src.rpm) = a2ad7ba6160eada6a669732187affa35110ac26d0bbd709474e476e4d3892370 SIZE (rpm/x86_64/centos/6.7/compat-gcc-296-2.96-144.el6.src.rpm) = 13430070 SHA256 (rpm/x86_64/centos/6.7/compat-gcc-32-3.2.3-69.el6.src.rpm) = 7ff0c6e00ad06876e10cb79fb87cb57b251e6710c63258e6850e990d9ea49917 SIZE (rpm/x86_64/centos/6.7/compat-gcc-32-3.2.3-69.el6.src.rpm) = 21622433 SHA256 (rpm/x86_64/centos/6.7/db4-4.7.25-20.el6_7.src.rpm) = 656c2bc7a94c9cae8768588123dfd837f0e7d6f4d24a5640759ea24b198653ad SIZE (rpm/x86_64/centos/6.7/db4-4.7.25-20.el6_7.src.rpm) = 13414534 SHA256 (rpm/x86_64/centos/6.7/e2fsprogs-1.41.12-22.el6.src.rpm) = eb4509ce21bb38c8734b0b352e940617a675e84cd22841907070487a21b0f6f7 SIZE (rpm/x86_64/centos/6.7/e2fsprogs-1.41.12-22.el6.src.rpm) = 5553847 SHA256 (rpm/x86_64/centos/6.7/elfutils-0.161-3.el6.src.rpm) = b1db380a11d6b823eaaac59a14bf22775747b65c0909b20affc811751857b31c SIZE (rpm/x86_64/centos/6.7/elfutils-0.161-3.el6.src.rpm) = 5570314 SHA256 (rpm/x86_64/centos/6.7/centos-release-6-7.el6.centos.12.3.src.rpm) = 9929fb4798c2f646cf005fddcd81f20972e1f0a8df7b38b99f3b4a2af6b72bbe SIZE (rpm/x86_64/centos/6.7/centos-release-6-7.el6.centos.12.3.src.rpm) = 20638 SHA256 (rpm/x86_64/centos/6.7/filesystem-2.4.30-3.el6.src.rpm) = fa8ab9b1a2f23933d6e2f9e2308601c4ee61dd5829f5edcb094aedee194d02e1 SIZE (rpm/x86_64/centos/6.7/filesystem-2.4.30-3.el6.src.rpm) = 20457 SHA256 (rpm/x86_64/centos/6.7/findutils-4.4.2-6.el6.src.rpm) = ee0fe5c28b088d3e5e4acd3099d84cf3af2cd5cad94991c2ff1498761b4529ce SIZE (rpm/x86_64/centos/6.7/findutils-4.4.2-6.el6.src.rpm) = 2184788 SHA256 (rpm/x86_64/centos/6.7/freetype-2.3.11-15.el6_6.1.src.rpm) = 02489b5951f7e555bb49d77d2c1531240b4b301cf0a75442b7c1e1c498bbf60f SIZE (rpm/x86_64/centos/6.7/freetype-2.3.11-15.el6_6.1.src.rpm) = 1779966 SHA256 (rpm/x86_64/centos/6.7/gamin-0.1.10-9.el6.src.rpm) = 5115ba7fbb40ab7bb5b1da851bd67121b000889b3a2fd9b6749eb350b75890b3 SIZE (rpm/x86_64/centos/6.7/gamin-0.1.10-9.el6.src.rpm) = 471128 SHA256 (rpm/x86_64/centos/6.7/gdbm-1.8.0-38.el6.src.rpm) = 161cd66d7663b9f549aee37358060dc32cff2017f62ce853ed9fa096b751a0f2 SIZE (rpm/x86_64/centos/6.7/gdbm-1.8.0-38.el6.src.rpm) = 151595 SHA256 (rpm/x86_64/centos/6.7/glib2-2.28.8-4.el6.src.rpm) = 949d8a71657700619884a2c0bfdb42eac17cf6ede73d206a7e427d95ad7dcf1c SIZE (rpm/x86_64/centos/6.7/glib2-2.28.8-4.el6.src.rpm) = 7119331 SHA256 (rpm/x86_64/centos/6.7/glibc-2.12-1.166.el6_7.7.src.rpm) = cf324b8eedeeeb49f27006d4defc9711190213269c5206964fd09e7107c87ba4 SIZE (rpm/x86_64/centos/6.7/glibc-2.12-1.166.el6_7.7.src.rpm) = 16239886 SHA256 (rpm/x86_64/centos/6.7/gmp-4.3.1-7.el6_2.2.src.rpm) = bdcb4d9e864f97b74f116b9bcb22ee2a589b8b7defef76d72004b80a157d9c7c SIZE (rpm/x86_64/centos/6.7/gmp-4.3.1-7.el6_2.2.src.rpm) = 1908630 SHA256 (rpm/x86_64/centos/6.7/grep-2.20-3.el6_7.1.src.rpm) = b8407de7352dde0186d02acc2ede8da58acfff7a376bfea75a845c7a7498d638 SIZE (rpm/x86_64/centos/6.7/grep-2.20-3.el6_7.1.src.rpm) = 1273925 SHA256 (rpm/x86_64/centos/6.7/texinfo-4.13a-8.el6.src.rpm) = c7cc4a48a8b429fe93f9462233a9d18cfbd33b994593b5e9cdcbde0a8c3c85db SIZE (rpm/x86_64/centos/6.7/texinfo-4.13a-8.el6.src.rpm) = 1589200 SHA256 (rpm/x86_64/centos/6.7/keyutils-1.4-5.el6.src.rpm) = 4fa4094f280a3eb8e1253476822fe3dbd2d186b5a8d4affc1311cbef0ca54f52 SIZE (rpm/x86_64/centos/6.7/keyutils-1.4-5.el6.src.rpm) = 56808 SHA256 (rpm/x86_64/centos/6.7/krb5-1.10.3-42.el6.src.rpm) = c28b9801ce8d0675e4b42d924277e84ef5ebff32c770226a651fdb743679e2aa SIZE (rpm/x86_64/centos/6.7/krb5-1.10.3-42.el6.src.rpm) = 12101433 SHA256 (rpm/x86_64/centos/6.7/less-436-13.el6.src.rpm) = 02f5363b8f82f4df9a4d359de686314fae3bf988c57401cac9eea641bbe2e0af SIZE (rpm/x86_64/centos/6.7/less-436-13.el6.src.rpm) = 331504 SHA256 (rpm/x86_64/centos/6.7/acl-2.2.49-6.el6.src.rpm) = f1feabe034da5a12be746d4bcfe12c5d15bdfc3f53f203880311aaa18ba9ec0d SIZE (rpm/x86_64/centos/6.7/acl-2.2.49-6.el6.src.rpm) = 385956 SHA256 (rpm/x86_64/centos/6.7/attr-2.4.44-7.el6.src.rpm) = 5f5440619e0109d9f8d913de1100f259296f62a38075bbc8d8608d6988695890 SIZE (rpm/x86_64/centos/6.7/attr-2.4.44-7.el6.src.rpm) = 335725 SHA256 (rpm/x86_64/centos/6.7/libcap-2.16-5.5.el6.src.rpm) = a0eb99aa04952657fc19541dd70ab185dd00594001a90d0ee138925f2bc3ab6a SIZE (rpm/x86_64/centos/6.7/libcap-2.16-5.5.el6.src.rpm) = 69497 SHA256 (rpm/x86_64/centos/6.7/gcc-4.4.7-16.el6.src.rpm) = eea99c50677354efffd12a70887d6be686ddcfe1f8d59328728683517e511221 SIZE (rpm/x86_64/centos/6.7/gcc-4.4.7-16.el6.src.rpm) = 52391361 SHA256 (rpm/x86_64/centos/6.7/libidn-1.18-2.el6.src.rpm) = a98516bd92453044dd497cce3c05aefe9bf5ec96a04eaf924b765d3038432054 SIZE (rpm/x86_64/centos/6.7/libidn-1.18-2.el6.src.rpm) = 2959181 SHA256 (rpm/x86_64/centos/6.7/libselinux-2.0.94-5.8.el6.src.rpm) = 2c69692e202e3c369786d73a1f7b5b31c29522c0dcf1ef9251711794c1869197 SIZE (rpm/x86_64/centos/6.7/libselinux-2.0.94-5.8.el6.src.rpm) = 301535 SHA256 (rpm/x86_64/centos/6.7/libsepol-2.0.41-4.el6.src.rpm) = ac1799bd0a70a93f771942ebb489eab4eb6a67422a624f925ba4080f98f73b13 SIZE (rpm/x86_64/centos/6.7/libsepol-2.0.41-4.el6.src.rpm) = 248004 SHA256 (rpm/x86_64/centos/6.7/ncurses-5.7-4.20090207.el6.src.rpm) = f60edf25d3cc6e9cf6f9a590a869d351ceb6cae161abf3102939c678be421f55 SIZE (rpm/x86_64/centos/6.7/ncurses-5.7-4.20090207.el6.src.rpm) = 2647744 SHA256 (rpm/x86_64/centos/6.7/pcre-7.8-7.el6.src.rpm) = 7006ca55f22ae910c395d5fdbf94cc0c0ff567e8703cac519d5d1abebbbcd94f SIZE (rpm/x86_64/centos/6.7/pcre-7.8-7.el6.src.rpm) = 876304 SHA256 (rpm/x86_64/centos/6.7/popt-1.13-7.el6.src.rpm) = 3b1b1c6e47e84d387b58899dbbc3bf24e45ae09fb79cf975c011aae245091406 SIZE (rpm/x86_64/centos/6.7/popt-1.13-7.el6.src.rpm) = 687631 SHA256 (rpm/x86_64/centos/6.7/readline-6.0-4.el6.src.rpm) = 898f831df1f1d566091317598cc5caeb3cb451347aaacfc52cc87895f449f5f0 SIZE (rpm/x86_64/centos/6.7/readline-6.0-4.el6.src.rpm) = 2290548 SHA256 (rpm/x86_64/centos/6.7/redhat-lsb-4.0-7.el6.centos.src.rpm) = 5b7987dfed1b310ccf12bab6cdfcdb9b5748b96d85ed4a037fba43e49252445e SIZE (rpm/x86_64/centos/6.7/redhat-lsb-4.0-7.el6.centos.src.rpm) = 52706 SHA256 (rpm/x86_64/centos/6.7/sed-4.2.1-10.el6.src.rpm) = 2cef61b73c9377d673a6fb83a568bb86b670e84e641391782f054614bf854e91 SIZE (rpm/x86_64/centos/6.7/sed-4.2.1-10.el6.src.rpm) = 974817 SHA256 (rpm/x86_64/centos/6.7/setserial-2.17-25.el6.src.rpm) = 1c09e38c61498be4014b102d5b4c79fff4f69eb24d012f7b38926e678880dffa SIZE (rpm/x86_64/centos/6.7/setserial-2.17-25.el6.src.rpm) = 64567 SHA256 (rpm/x86_64/centos/6.7/setup-2.8.14-20.el6_4.1.src.rpm) = 6cd2835e633e6af4c072f1e444dc150aa91cb96bf92c1ca84321e2bed2b54377 SIZE (rpm/x86_64/centos/6.7/setup-2.8.14-20.el6_4.1.src.rpm) = 182928 SHA256 (rpm/x86_64/centos/6.7/slang-2.2.1-1.el6.src.rpm) = 3ab2551b5d7d75a1d28d63fea1c48b9e83a87b8f2ba4cd6bd2c5ecb5dd91eda9 SIZE (rpm/x86_64/centos/6.7/slang-2.2.1-1.el6.src.rpm) = 1367444 SHA256 (rpm/x86_64/centos/6.7/util-linux-ng-2.17.2-12.18.el6.src.rpm) = 78c265431b91f18c73821c0dc0323fc757682f6d3058df2bfa141fce05541302 SIZE (rpm/x86_64/centos/6.7/util-linux-ng-2.17.2-12.18.el6.src.rpm) = 4545846 SHA256 (rpm/x86_64/centos/6.7/which-2.19-6.el6.src.rpm) = cefa932d168a041d2257085bd2afad13fc719da4bd68d31ef9694371b67135bd SIZE (rpm/x86_64/centos/6.7/which-2.19-6.el6.src.rpm) = 144253 SHA256 (rpm/x86_64/centos/6.7/zlib-1.2.3-29.el6.src.rpm) = ccdc3260d2b1ee35c3d224154878f9f632fa2153ce7908ffaabd10b3e216d26e SIZE (rpm/x86_64/centos/6.7/zlib-1.2.3-29.el6.src.rpm) = 516080 Index: head/emulators/linux_base-c6/pkg-plist.x86_64 =================================================================== --- head/emulators/linux_base-c6/pkg-plist.x86_64 (revision 413167) +++ head/emulators/linux_base-c6/pkg-plist.x86_64 (revision 413168) @@ -1,2904 +1,3355 @@ bin/[ bin/arch bin/basename bin/bash bin/cat bin/chgrp bin/chmod bin/chown bin/cp bin/cut bin/date bin/dd bin/dmesg bin/echo bin/egrep bin/env bin/expr bin/false bin/fgrep bin/find bin/findmnt bin/grep bin/keyctl bin/kill bin/link bin/ln bin/logger bin/login bin/ls bin/lsblk bin/mkdir bin/mknod bin/mktemp bin/more bin/mount bin/mv bin/nice bin/pwd bin/raw bin/readlink bin/redhat_lsb_init bin/rm bin/rmdir bin/sed bin/setserial bin/sh bin/sleep bin/sort bin/stty bin/sync bin/taskset bin/test bin/touch bin/true bin/umount bin/uname bin/unlink bin/uuidgen etc/DIR_COLORS etc/DIR_COLORS.256color etc/DIR_COLORS.lightbgcolor etc/aliases etc/bash_completion.d/gdbus-bash-completion.sh etc/bashrc etc/centos-release etc/csh.cshrc etc/csh.login etc/default/nss etc/environment etc/filesystems etc/gai.conf etc/gshadow etc/host.conf etc/hosts etc/hosts.allow etc/hosts.deny etc/inputrc etc/issue etc/issue.net etc/ld.so.cache etc/ld.so.conf etc/lsb-release.d/base-4.0-amd64 +etc/lsb-release.d/base-4.0-ia32 etc/lsb-release.d/base-4.0-noarch etc/lsb-release.d/core-4.0-amd64 +etc/lsb-release.d/core-4.0-ia32 etc/lsb-release.d/core-4.0-noarch etc/mke2fs.conf etc/mtab etc/nsswitch.conf etc/pam.d/chfn etc/pam.d/chsh etc/pam.d/login etc/pam.d/remote etc/pam.d/runuser etc/pam.d/runuser-l etc/pam.d/su etc/pam.d/su-l etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-Debug-6 etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-Security-6 etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-Testing-6 etc/profile etc/profile.d/colorls.csh etc/profile.d/colorls.sh etc/profile.d/glib2.csh etc/profile.d/glib2.sh etc/profile.d/less.csh etc/profile.d/less.sh etc/profile.d/which2.sh etc/redhat-lsb/lsb_killproc etc/redhat-lsb/lsb_log_message etc/redhat-lsb/lsb_pidofproc etc/redhat-lsb/lsb_start_daemon etc/redhat-release etc/request-key.conf etc/rpc etc/rpm/macros.dist etc/securetty etc/shadow etc/shells etc/skel/.bash_logout etc/skel/.bash_profile etc/skel/.bashrc etc/system-release etc/system-release-cpe etc/udev/rules.d/60-raw.rules etc/yum.repos.d/CentOS-Base.repo etc/yum.repos.d/CentOS-Debuginfo.repo etc/yum.repos.d/CentOS-Media.repo etc/yum.repos.d/CentOS-Vault.repo etc/yum.repos.d/CentOS-fasttrack.repo etc/yum/vars/infra +lib/i686/nosegneg/libc-%%GLIBCVER%%.so +lib/i686/nosegneg/libc.so.6 +lib/i686/nosegneg/libm-%%GLIBCVER%%.so +lib/i686/nosegneg/libm.so.6 +lib/i686/nosegneg/libpthread-%%GLIBCVER%%.so +lib/i686/nosegneg/libpthread.so.0 +lib/i686/nosegneg/librt-%%GLIBCVER%%.so +lib/i686/nosegneg/librt.so.1 +lib/i686/nosegneg/libthread_db-1.0.so +lib/i686/nosegneg/libthread_db.so.1 +lib/ld-%%GLIBCVER%%.so +lib/ld-linux.so.2 +lib/ld-lsb.so.3 +lib/libBrokenLocale-%%GLIBCVER%%.so +lib/libBrokenLocale.so.1 +lib/libSegFault.so +lib/libacl.so.1 +lib/libacl.so.1.1.0 +lib/libanl-%%GLIBCVER%%.so +lib/libanl.so.1 +lib/libattr.so.1 +lib/libattr.so.1.1.0 +lib/libblkid.so.1 +lib/libblkid.so.1.1.0 +lib/libbz2.so.1 +lib/libbz2.so.1.0.4 +lib/libc-%%GLIBCVER%%.so +lib/libc.so.6 +lib/libcap.so.2 +lib/libcap.so.2.16 +lib/libcidn-%%GLIBCVER%%.so +lib/libcidn.so.1 +lib/libcom_err.so.2 +lib/libcom_err.so.2.1 +lib/libcrypt-%%GLIBCVER%%.so +lib/libcrypt.so.1 +lib/libdb-4.3.so +lib/libdb-4.7.so +lib/libdb_cxx-4.3.so +lib/libdl-%%GLIBCVER%%.so +lib/libdl.so.2 +lib/libe2p.so.2 +lib/libe2p.so.2.3 +lib/libext2fs.so.2 +lib/libext2fs.so.2.4 +lib/libgcc_s-4.4.7-20120601.so.1 +lib/libgcc_s.so.1 +lib/libgio-2.0.so.0 +lib/libgio-2.0.so.0.2800.8 +lib/libglib-2.0.so.0 +lib/libglib-2.0.so.0.2800.8 +lib/libgmodule-2.0.so.0 +lib/libgmodule-2.0.so.0.2800.8 +lib/libgobject-2.0.so.0 +lib/libgobject-2.0.so.0.2800.8 +lib/libgssapi_krb5.so.2 +lib/libgssapi_krb5.so.2.2 +lib/libgssrpc.so.4 +lib/libgssrpc.so.4.1 +lib/libgthread-2.0.so.0 +lib/libgthread-2.0.so.0.2800.8 +lib/libidn.so.11 +lib/libidn.so.11.6.1 +lib/libk5crypto.so.3 +lib/libk5crypto.so.3.1 +lib/libkeyutils.so.1 +lib/libkeyutils.so.1.3 +lib/libkrb5.so.3 +lib/libkrb5.so.3.3 +lib/libkrb5support.so.0 +lib/libkrb5support.so.0.1 +lib/libm-%%GLIBCVER%%.so +lib/libm.so.6 +lib/libmount.so.1 +lib/libmount.so.1.1.0 +lib/libncurses.so.5 +lib/libncurses.so.5.7 +lib/libncursesw.so.5 +lib/libncursesw.so.5.7 +lib/libnsl-%%GLIBCVER%%.so +lib/libnsl.so.1 +lib/libnss_compat-%%GLIBCVER%%.so +lib/libnss_compat.so.2 +lib/libnss_dns-%%GLIBCVER%%.so +lib/libnss_dns.so.2 +lib/libnss_files-%%GLIBCVER%%.so +lib/libnss_files.so.2 +lib/libnss_hesiod-%%GLIBCVER%%.so +lib/libnss_hesiod.so.2 +lib/libnss_nis-%%GLIBCVER%%.so +lib/libnss_nis.so.2 +lib/libnss_nisplus-%%GLIBCVER%%.so +lib/libnss_nisplus.so.2 +lib/libpcre.so.0 +lib/libpcre.so.0.0.1 +lib/libpopt.so.0 +lib/libpopt.so.0.0.0 +lib/libpthread-%%GLIBCVER%%.so +lib/libpthread.so.0 +lib/libreadline.so.6 +lib/libreadline.so.6.0 +lib/libresolv-%%GLIBCVER%%.so +lib/libresolv.so.2 +lib/librt-%%GLIBCVER%%.so +lib/librt.so.1 +lib/libselinux.so.1 +lib/libsepol.so.1 +lib/libthread_db-1.0.so +lib/libthread_db.so.1 +lib/libtinfo.so.5 +lib/libtinfo.so.5.7 +lib/libutil-%%GLIBCVER%%.so +lib/libutil.so.1 +lib/libuuid.so.1 +lib/libuuid.so.1.3.0 +lib/libz.so.1 +lib/libz.so.1.2.3 lib/lsb/init-functions -lib64/ld-2.12.so +lib/rtkaio/i686/nosegneg/librt.so.1 +lib/rtkaio/i686/nosegneg/librtkaio-%%GLIBCVER%%.so +lib/rtkaio/librt.so.1 +lib/rtkaio/librtkaio-%%GLIBCVER%%.so +lib/security/pam_cap.so +lib64/ld-%%GLIBCVER%%.so lib64/ld-linux-x86-64.so.2 lib64/ld-lsb-x86-64.so.3 -lib64/libBrokenLocale-2.12.so +lib64/libBrokenLocale-%%GLIBCVER%%.so lib64/libBrokenLocale.so.1 lib64/libSegFault.so lib64/libacl.so.1 lib64/libacl.so.1.1.0 -lib64/libanl-2.12.so +lib64/libanl-%%GLIBCVER%%.so lib64/libanl.so.1 lib64/libattr.so.1 lib64/libattr.so.1.1.0 lib64/libblkid.so.1 lib64/libblkid.so.1.1.0 lib64/libbz2.so.1 lib64/libbz2.so.1.0.4 -lib64/libc-2.12.so +lib64/libc-%%GLIBCVER%%.so lib64/libc.so.6 lib64/libcap.so.2 lib64/libcap.so.2.16 -lib64/libcidn-2.12.so +lib64/libcidn-%%GLIBCVER%%.so lib64/libcidn.so.1 lib64/libcom_err.so.2 lib64/libcom_err.so.2.1 -lib64/libcrypt-2.12.so +lib64/libcrypt-%%GLIBCVER%%.so lib64/libcrypt.so.1 lib64/libdb-4.3.so lib64/libdb-4.7.so lib64/libdb_cxx-4.3.so -lib64/libdl-2.12.so +lib64/libdl-%%GLIBCVER%%.so lib64/libdl.so.2 lib64/libe2p.so.2 lib64/libe2p.so.2.3 lib64/libext2fs.so.2 lib64/libext2fs.so.2.4 lib64/libgcc_s-4.4.7-20120601.so.1 lib64/libgcc_s.so.1 lib64/libgio-2.0.so.0 lib64/libgio-2.0.so.0.2800.8 lib64/libglib-2.0.so.0 lib64/libglib-2.0.so.0.2800.8 lib64/libgmodule-2.0.so.0 lib64/libgmodule-2.0.so.0.2800.8 lib64/libgobject-2.0.so.0 lib64/libgobject-2.0.so.0.2800.8 lib64/libgssapi_krb5.so.2 lib64/libgssapi_krb5.so.2.2 lib64/libgssrpc.so.4 lib64/libgssrpc.so.4.1 lib64/libgthread-2.0.so.0 lib64/libgthread-2.0.so.0.2800.8 lib64/libidn.so.11 lib64/libidn.so.11.6.1 lib64/libk5crypto.so.3 lib64/libk5crypto.so.3.1 lib64/libkeyutils.so.1 lib64/libkeyutils.so.1.3 lib64/libkrb5.so.3 lib64/libkrb5.so.3.3 lib64/libkrb5support.so.0 lib64/libkrb5support.so.0.1 -lib64/libm-2.12.so +lib64/libm-%%GLIBCVER%%.so lib64/libm.so.6 lib64/libmount.so.1 lib64/libmount.so.1.1.0 lib64/libncurses.so.5 lib64/libncurses.so.5.7 lib64/libncursesw.so.5 lib64/libncursesw.so.5.7 -lib64/libnsl-2.12.so +lib64/libnsl-%%GLIBCVER%%.so lib64/libnsl.so.1 -lib64/libnss_compat-2.12.so +lib64/libnss_compat-%%GLIBCVER%%.so lib64/libnss_compat.so.2 -lib64/libnss_dns-2.12.so +lib64/libnss_dns-%%GLIBCVER%%.so lib64/libnss_dns.so.2 -lib64/libnss_files-2.12.so +lib64/libnss_files-%%GLIBCVER%%.so lib64/libnss_files.so.2 -lib64/libnss_hesiod-2.12.so +lib64/libnss_hesiod-%%GLIBCVER%%.so lib64/libnss_hesiod.so.2 -lib64/libnss_nis-2.12.so +lib64/libnss_nis-%%GLIBCVER%%.so lib64/libnss_nis.so.2 -lib64/libnss_nisplus-2.12.so +lib64/libnss_nisplus-%%GLIBCVER%%.so lib64/libnss_nisplus.so.2 lib64/libpcre.so.0 lib64/libpcre.so.0.0.1 lib64/libpopt.so.0 lib64/libpopt.so.0.0.0 -lib64/libpthread-2.12.so +lib64/libpthread-%%GLIBCVER%%.so lib64/libpthread.so.0 lib64/libreadline.so.6 lib64/libreadline.so.6.0 -lib64/libresolv-2.12.so +lib64/libresolv-%%GLIBCVER%%.so lib64/libresolv.so.2 -lib64/librt-2.12.so +lib64/librt-%%GLIBCVER%%.so lib64/librt.so.1 lib64/libselinux.so.1 lib64/libsepol.so.1 lib64/libthread_db-1.0.so lib64/libthread_db.so.1 lib64/libtinfo.so.5 lib64/libtinfo.so.5.7 -lib64/libutil-2.12.so +lib64/libutil-%%GLIBCVER%%.so lib64/libutil.so.1 lib64/libuuid.so.1 lib64/libuuid.so.1.3.0 lib64/libz.so.1 lib64/libz.so.1.2.3 lib64/rtkaio/librt.so.1 -lib64/rtkaio/librtkaio-2.12.so +lib64/rtkaio/librtkaio-%%GLIBCVER%%.so lib64/security/pam_cap.so sbin/addpart sbin/agetty sbin/badblocks sbin/blkdiscard sbin/blkid sbin/blockdev sbin/cfdisk sbin/chcpu sbin/clock sbin/ctrlaltdel sbin/debugfs sbin/delpart sbin/dumpe2fs sbin/e2fsck sbin/e2image sbin/e2label sbin/e2undo sbin/fdisk sbin/findfs sbin/fsck sbin/fsck.cramfs sbin/fsck.ext2 sbin/fsck.ext3 sbin/fsck.ext4 sbin/fsck.ext4dev sbin/fsfreeze sbin/fstrim sbin/hwclock sbin/install-info sbin/ldconfig sbin/logsave sbin/losetup sbin/matchpathcon sbin/mke2fs sbin/mkfs sbin/mkfs.cramfs sbin/mkfs.ext2 sbin/mkfs.ext3 sbin/mkfs.ext4 sbin/mkfs.ext4dev sbin/mkswap sbin/mount.tmpfs sbin/nologin sbin/partx sbin/pivot_root sbin/request-key sbin/resize2fs sbin/runuser sbin/sfdisk sbin/sln sbin/swapoff sbin/swapon sbin/switch_root sbin/tune2fs sbin/wipefs usr/bin/[ usr/bin/base64 usr/bin/bashbug-64 usr/bin/berkeley_db43_svc usr/bin/bunzip2 usr/bin/bzcat usr/bin/bzcmp usr/bin/bzdiff usr/bin/bzgrep usr/bin/bzip2 usr/bin/bzip2recover usr/bin/bzless usr/bin/bzmore usr/bin/cal usr/bin/captoinfo usr/bin/catchsegv usr/bin/chattr usr/bin/chcon usr/bin/chfn usr/bin/chrt usr/bin/chsh usr/bin/cksum usr/bin/clear usr/bin/col usr/bin/colcrt usr/bin/colrm usr/bin/column usr/bin/comm usr/bin/csplit usr/bin/cut +usr/bin/cytune usr/bin/db43_archive usr/bin/db43_checkpoint usr/bin/db43_deadlock usr/bin/db43_dump usr/bin/db43_load usr/bin/db43_printlog usr/bin/db43_recover usr/bin/db43_stat usr/bin/db43_upgrade usr/bin/db43_verify usr/bin/ddate usr/bin/dir usr/bin/dircolors usr/bin/dirname usr/bin/du usr/bin/env usr/bin/eu-addr2line usr/bin/eu-ar usr/bin/eu-elfcmp usr/bin/eu-elflint usr/bin/eu-findtextrel usr/bin/eu-make-debug-archive usr/bin/eu-nm usr/bin/eu-objdump usr/bin/eu-ranlib usr/bin/eu-readelf usr/bin/eu-size usr/bin/eu-stack usr/bin/eu-strings usr/bin/eu-strip usr/bin/eu-unstrip usr/bin/expand usr/bin/expr usr/bin/factor usr/bin/fallocate usr/bin/find usr/bin/flock usr/bin/floppy usr/bin/fmt usr/bin/fold usr/bin/gdbus usr/bin/gencat usr/bin/getconf usr/bin/getent usr/bin/getopt +usr/bin/gio-querymodules-32 usr/bin/gio-querymodules-64 usr/bin/glib-compile-schemas usr/bin/groups usr/bin/head usr/bin/hexdump usr/bin/hostid usr/bin/i386 usr/bin/iconv usr/bin/id usr/bin/idn usr/bin/info usr/bin/infocmp usr/bin/infokey usr/bin/infotocap usr/bin/install usr/bin/ionice usr/bin/ipcmk usr/bin/ipcrm usr/bin/ipcs usr/bin/isosize usr/bin/join usr/bin/kill usr/bin/ldd usr/bin/less usr/bin/lessecho usr/bin/lesskey usr/bin/lesspipe.sh usr/bin/linux32 usr/bin/linux64 usr/bin/locale usr/bin/localedef usr/bin/logger usr/bin/logname usr/bin/look usr/bin/lp usr/bin/lsattr usr/bin/lsb_release usr/bin/lscpu usr/bin/lslogins usr/bin/mcookie usr/bin/md5sum usr/bin/mkfifo usr/bin/namei usr/bin/nl usr/bin/nohup usr/bin/nproc usr/bin/nsenter usr/bin/od usr/bin/oldfind usr/bin/paste usr/bin/pathchk usr/bin/pcregrep usr/bin/pcretest usr/bin/pinky usr/bin/pr usr/bin/printenv usr/bin/printf usr/bin/ptx usr/bin/readlink usr/bin/rename usr/bin/renice usr/bin/reset usr/bin/rev usr/bin/rpcgen usr/bin/runcon usr/bin/script usr/bin/scriptreplay usr/bin/seq usr/bin/setarch usr/bin/setsid usr/bin/setterm usr/bin/sha1sum usr/bin/sha224sum usr/bin/sha256sum usr/bin/sha384sum usr/bin/sha512sum usr/bin/shred usr/bin/shuf usr/bin/split usr/bin/sprof usr/bin/stat usr/bin/stdbuf usr/bin/sum usr/bin/tabs usr/bin/tac usr/bin/tail usr/bin/tailf usr/bin/tee usr/bin/test usr/bin/tic usr/bin/timeout usr/bin/toe usr/bin/tput usr/bin/tr usr/bin/truncate usr/bin/tset usr/bin/tsort usr/bin/tty usr/bin/tzselect usr/bin/ul usr/bin/unexpand usr/bin/uniq usr/bin/unshare usr/bin/update-gio-modules usr/bin/users usr/bin/uuidgen usr/bin/vdir usr/bin/wc usr/bin/whereis usr/bin/which usr/bin/who usr/bin/whoami usr/bin/write usr/bin/x86_64 usr/bin/xargs usr/bin/yes usr/include/db4.3.29/db.h usr/include/db4.3.29/db_185.h usr/include/db4.3.29/db_cxx.h +usr/lib/db4.3.29/libdb.so +usr/lib/db4.3.29/libdb_cxx.so +usr/lib/gconv/ANSI_X3.110.so +usr/lib/gconv/ARMSCII-8.so +usr/lib/gconv/ASMO_449.so +usr/lib/gconv/BIG5.so +usr/lib/gconv/BIG5HKSCS.so +usr/lib/gconv/BRF.so +usr/lib/gconv/CP10007.so +usr/lib/gconv/CP1125.so +usr/lib/gconv/CP1250.so +usr/lib/gconv/CP1251.so +usr/lib/gconv/CP1252.so +usr/lib/gconv/CP1253.so +usr/lib/gconv/CP1254.so +usr/lib/gconv/CP1255.so +usr/lib/gconv/CP1256.so +usr/lib/gconv/CP1257.so +usr/lib/gconv/CP1258.so +usr/lib/gconv/CP737.so +usr/lib/gconv/CP775.so +usr/lib/gconv/CP932.so +usr/lib/gconv/CSN_369103.so +usr/lib/gconv/CWI.so +usr/lib/gconv/DEC-MCS.so +usr/lib/gconv/EBCDIC-AT-DE-A.so +usr/lib/gconv/EBCDIC-AT-DE.so +usr/lib/gconv/EBCDIC-CA-FR.so +usr/lib/gconv/EBCDIC-DK-NO-A.so +usr/lib/gconv/EBCDIC-DK-NO.so +usr/lib/gconv/EBCDIC-ES-A.so +usr/lib/gconv/EBCDIC-ES-S.so +usr/lib/gconv/EBCDIC-ES.so +usr/lib/gconv/EBCDIC-FI-SE-A.so +usr/lib/gconv/EBCDIC-FI-SE.so +usr/lib/gconv/EBCDIC-FR.so +usr/lib/gconv/EBCDIC-IS-FRISS.so +usr/lib/gconv/EBCDIC-IT.so +usr/lib/gconv/EBCDIC-PT.so +usr/lib/gconv/EBCDIC-UK.so +usr/lib/gconv/EBCDIC-US.so +usr/lib/gconv/ECMA-CYRILLIC.so +usr/lib/gconv/EUC-CN.so +usr/lib/gconv/EUC-JISX0213.so +usr/lib/gconv/EUC-JP-MS.so +usr/lib/gconv/EUC-JP.so +usr/lib/gconv/EUC-KR.so +usr/lib/gconv/EUC-TW.so +usr/lib/gconv/GB18030.so +usr/lib/gconv/GBBIG5.so +usr/lib/gconv/GBGBK.so +usr/lib/gconv/GBK.so +usr/lib/gconv/GEORGIAN-ACADEMY.so +usr/lib/gconv/GEORGIAN-PS.so +usr/lib/gconv/GOST_19768-74.so +usr/lib/gconv/GREEK-CCITT.so +usr/lib/gconv/GREEK7-OLD.so +usr/lib/gconv/GREEK7.so +usr/lib/gconv/HP-GREEK8.so +usr/lib/gconv/HP-ROMAN8.so +usr/lib/gconv/HP-ROMAN9.so +usr/lib/gconv/HP-THAI8.so +usr/lib/gconv/HP-TURKISH8.so +usr/lib/gconv/IBM037.so +usr/lib/gconv/IBM038.so +usr/lib/gconv/IBM1004.so +usr/lib/gconv/IBM1008.so +usr/lib/gconv/IBM1008_420.so +usr/lib/gconv/IBM1025.so +usr/lib/gconv/IBM1026.so +usr/lib/gconv/IBM1046.so +usr/lib/gconv/IBM1047.so +usr/lib/gconv/IBM1097.so +usr/lib/gconv/IBM1112.so +usr/lib/gconv/IBM1122.so +usr/lib/gconv/IBM1123.so +usr/lib/gconv/IBM1124.so +usr/lib/gconv/IBM1129.so +usr/lib/gconv/IBM1130.so +usr/lib/gconv/IBM1132.so +usr/lib/gconv/IBM1133.so +usr/lib/gconv/IBM1137.so +usr/lib/gconv/IBM1140.so +usr/lib/gconv/IBM1141.so +usr/lib/gconv/IBM1142.so +usr/lib/gconv/IBM1143.so +usr/lib/gconv/IBM1144.so +usr/lib/gconv/IBM1145.so +usr/lib/gconv/IBM1146.so +usr/lib/gconv/IBM1147.so +usr/lib/gconv/IBM1148.so +usr/lib/gconv/IBM1149.so +usr/lib/gconv/IBM1153.so +usr/lib/gconv/IBM1154.so +usr/lib/gconv/IBM1155.so +usr/lib/gconv/IBM1156.so +usr/lib/gconv/IBM1157.so +usr/lib/gconv/IBM1158.so +usr/lib/gconv/IBM1160.so +usr/lib/gconv/IBM1161.so +usr/lib/gconv/IBM1162.so +usr/lib/gconv/IBM1163.so +usr/lib/gconv/IBM1164.so +usr/lib/gconv/IBM1166.so +usr/lib/gconv/IBM1167.so +usr/lib/gconv/IBM12712.so +usr/lib/gconv/IBM1364.so +usr/lib/gconv/IBM1371.so +usr/lib/gconv/IBM1388.so +usr/lib/gconv/IBM1390.so +usr/lib/gconv/IBM1399.so +usr/lib/gconv/IBM16804.so +usr/lib/gconv/IBM256.so +usr/lib/gconv/IBM273.so +usr/lib/gconv/IBM274.so +usr/lib/gconv/IBM275.so +usr/lib/gconv/IBM277.so +usr/lib/gconv/IBM278.so +usr/lib/gconv/IBM280.so +usr/lib/gconv/IBM281.so +usr/lib/gconv/IBM284.so +usr/lib/gconv/IBM285.so +usr/lib/gconv/IBM290.so +usr/lib/gconv/IBM297.so +usr/lib/gconv/IBM420.so +usr/lib/gconv/IBM423.so +usr/lib/gconv/IBM424.so +usr/lib/gconv/IBM437.so +usr/lib/gconv/IBM4517.so +usr/lib/gconv/IBM4899.so +usr/lib/gconv/IBM4909.so +usr/lib/gconv/IBM4971.so +usr/lib/gconv/IBM500.so +usr/lib/gconv/IBM5347.so +usr/lib/gconv/IBM803.so +usr/lib/gconv/IBM850.so +usr/lib/gconv/IBM851.so +usr/lib/gconv/IBM852.so +usr/lib/gconv/IBM855.so +usr/lib/gconv/IBM856.so +usr/lib/gconv/IBM857.so +usr/lib/gconv/IBM860.so +usr/lib/gconv/IBM861.so +usr/lib/gconv/IBM862.so +usr/lib/gconv/IBM863.so +usr/lib/gconv/IBM864.so +usr/lib/gconv/IBM865.so +usr/lib/gconv/IBM866.so +usr/lib/gconv/IBM866NAV.so +usr/lib/gconv/IBM868.so +usr/lib/gconv/IBM869.so +usr/lib/gconv/IBM870.so +usr/lib/gconv/IBM871.so +usr/lib/gconv/IBM874.so +usr/lib/gconv/IBM875.so +usr/lib/gconv/IBM880.so +usr/lib/gconv/IBM891.so +usr/lib/gconv/IBM901.so +usr/lib/gconv/IBM902.so +usr/lib/gconv/IBM903.so +usr/lib/gconv/IBM9030.so +usr/lib/gconv/IBM904.so +usr/lib/gconv/IBM905.so +usr/lib/gconv/IBM9066.so +usr/lib/gconv/IBM918.so +usr/lib/gconv/IBM921.so +usr/lib/gconv/IBM922.so +usr/lib/gconv/IBM930.so +usr/lib/gconv/IBM932.so +usr/lib/gconv/IBM933.so +usr/lib/gconv/IBM935.so +usr/lib/gconv/IBM937.so +usr/lib/gconv/IBM939.so +usr/lib/gconv/IBM943.so +usr/lib/gconv/IBM9448.so +usr/lib/gconv/IEC_P27-1.so +usr/lib/gconv/INIS-8.so +usr/lib/gconv/INIS-CYRILLIC.so +usr/lib/gconv/INIS.so +usr/lib/gconv/ISIRI-3342.so +usr/lib/gconv/ISO-2022-CN-EXT.so +usr/lib/gconv/ISO-2022-CN.so +usr/lib/gconv/ISO-2022-JP-3.so +usr/lib/gconv/ISO-2022-JP.so +usr/lib/gconv/ISO-2022-KR.so +usr/lib/gconv/ISO-IR-197.so +usr/lib/gconv/ISO-IR-209.so +usr/lib/gconv/ISO646.so +usr/lib/gconv/ISO8859-1.so +usr/lib/gconv/ISO8859-10.so +usr/lib/gconv/ISO8859-11.so +usr/lib/gconv/ISO8859-13.so +usr/lib/gconv/ISO8859-14.so +usr/lib/gconv/ISO8859-15.so +usr/lib/gconv/ISO8859-16.so +usr/lib/gconv/ISO8859-2.so +usr/lib/gconv/ISO8859-3.so +usr/lib/gconv/ISO8859-4.so +usr/lib/gconv/ISO8859-5.so +usr/lib/gconv/ISO8859-6.so +usr/lib/gconv/ISO8859-7.so +usr/lib/gconv/ISO8859-8.so +usr/lib/gconv/ISO8859-9.so +usr/lib/gconv/ISO8859-9E.so +usr/lib/gconv/ISO_10367-BOX.so +usr/lib/gconv/ISO_11548-1.so +usr/lib/gconv/ISO_2033.so +usr/lib/gconv/ISO_5427-EXT.so +usr/lib/gconv/ISO_5427.so +usr/lib/gconv/ISO_5428.so +usr/lib/gconv/ISO_6937-2.so +usr/lib/gconv/ISO_6937.so +usr/lib/gconv/JOHAB.so +usr/lib/gconv/KOI-8.so +usr/lib/gconv/KOI8-R.so +usr/lib/gconv/KOI8-RU.so +usr/lib/gconv/KOI8-T.so +usr/lib/gconv/KOI8-U.so +usr/lib/gconv/LATIN-GREEK-1.so +usr/lib/gconv/LATIN-GREEK.so +usr/lib/gconv/MAC-CENTRALEUROPE.so +usr/lib/gconv/MAC-IS.so +usr/lib/gconv/MAC-SAMI.so +usr/lib/gconv/MAC-UK.so +usr/lib/gconv/MACINTOSH.so +usr/lib/gconv/MIK.so +usr/lib/gconv/NATS-DANO.so +usr/lib/gconv/NATS-SEFI.so +usr/lib/gconv/PT154.so +usr/lib/gconv/RK1048.so +usr/lib/gconv/SAMI-WS2.so +usr/lib/gconv/SHIFT_JISX0213.so +usr/lib/gconv/SJIS.so +usr/lib/gconv/T.61.so +usr/lib/gconv/TCVN5712-1.so +usr/lib/gconv/TIS-620.so +usr/lib/gconv/TSCII.so +usr/lib/gconv/UHC.so +usr/lib/gconv/UNICODE.so +usr/lib/gconv/UTF-16.so +usr/lib/gconv/UTF-32.so +usr/lib/gconv/UTF-7.so +usr/lib/gconv/VISCII.so +usr/lib/gconv/gconv-modules +usr/lib/gconv/gconv-modules.cache +usr/lib/gconv/libCNS.so +usr/lib/gconv/libGB.so +usr/lib/gconv/libISOIR165.so +usr/lib/gconv/libJIS.so +usr/lib/gconv/libJISX0213.so +usr/lib/gconv/libKSC.so +usr/lib/gio/modules/libgiofam.so +usr/lib/krb5/plugins/kdb/db2.so +usr/lib/libdb-4.7.so +usr/lib/libfam.so.0 +usr/lib/libfam.so.0.0.0 +usr/lib/libform.so.5 +usr/lib/libform.so.5.7 +usr/lib/libformw.so.5 +usr/lib/libformw.so.5.7 +usr/lib/libfreetype.so.6 +usr/lib/libfreetype.so.6.3.22 +usr/lib/libgamin-1.so.0 +usr/lib/libgamin-1.so.0.1.10 +usr/lib/libgdbm.so.2 +usr/lib/libgdbm.so.2.0.0 +usr/lib/libgmp.so.3 +usr/lib/libgmp.so.3.5.0 +usr/lib/libgmpxx.so.4 +usr/lib/libgmpxx.so.4.1.0 +usr/lib/libhistory.so.6 +usr/lib/libhistory.so.6.0 +usr/lib/libkadm5clnt_mit.so.8 +usr/lib/libkadm5clnt_mit.so.8.0 +usr/lib/libkadm5srv_mit.so.8 +usr/lib/libkadm5srv_mit.so.8.0 +usr/lib/libkdb5.so.6 +usr/lib/libkdb5.so.6.0 +usr/lib/libmemusage.so +usr/lib/libmenu.so.5 +usr/lib/libmenu.so.5.7 +usr/lib/libmenuw.so.5 +usr/lib/libmenuw.so.5.7 +usr/lib/libmp.so.3 +usr/lib/libmp.so.3.1.14 +usr/lib/libpanel.so.5 +usr/lib/libpanel.so.5.7 +usr/lib/libpanelw.so.5 +usr/lib/libpanelw.so.5.7 +usr/lib/libpcprofile.so +usr/lib/libpcrecpp.so.0 +usr/lib/libpcrecpp.so.0.0.0 +usr/lib/libpcreposix.so.0 +usr/lib/libpcreposix.so.0.0.0 +usr/lib/librt.so.1 +usr/lib/libslang.so.2 +usr/lib/libslang.so.2.2.1 usr/lib/libstdc++-3-libc6.2-2-2.10.0.so usr/lib/libstdc++-libc6.2-2.so.3 -usr/lib/librt.so.1 +usr/lib/libstdc++.so.5 +usr/lib/libstdc++.so.5.0.7 +usr/lib/libstdc++.so.6 +usr/lib/libstdc++.so.6.0.13 +usr/lib/libtic.so.5 +usr/lib/libtic.so.5.7 +usr/lib/libverto-k5ev.so +usr/lib/libverto-k5ev.so.0 +usr/lib/libverto-k5ev.so.0.0 +usr/lib/libverto.so +usr/lib/libverto.so.0 +usr/lib/libverto.so.0.0 usr/lib/locale/locale-archive usr/lib/lsb/install_initd usr/lib/lsb/remove_initd +usr/lib/sse2/libgmp.so.3 +usr/lib/sse2/libgmp.so.3.5.0 +usr/lib/sse2/libgmpxx.so.4 +usr/lib/sse2/libgmpxx.so.4.1.0 +usr/lib/sse2/libmp.so.3 +usr/lib/sse2/libmp.so.3.1.14 usr/lib64/db4.3.29/libdb.so usr/lib64/db4.3.29/libdb_cxx.so usr/lib64/gconv/ANSI_X3.110.so usr/lib64/gconv/ARMSCII-8.so usr/lib64/gconv/ASMO_449.so usr/lib64/gconv/BIG5.so usr/lib64/gconv/BIG5HKSCS.so usr/lib64/gconv/BRF.so usr/lib64/gconv/CP10007.so usr/lib64/gconv/CP1125.so usr/lib64/gconv/CP1250.so usr/lib64/gconv/CP1251.so usr/lib64/gconv/CP1252.so usr/lib64/gconv/CP1253.so usr/lib64/gconv/CP1254.so usr/lib64/gconv/CP1255.so usr/lib64/gconv/CP1256.so usr/lib64/gconv/CP1257.so usr/lib64/gconv/CP1258.so usr/lib64/gconv/CP737.so usr/lib64/gconv/CP775.so usr/lib64/gconv/CP932.so usr/lib64/gconv/CSN_369103.so usr/lib64/gconv/CWI.so usr/lib64/gconv/DEC-MCS.so usr/lib64/gconv/EBCDIC-AT-DE-A.so usr/lib64/gconv/EBCDIC-AT-DE.so usr/lib64/gconv/EBCDIC-CA-FR.so usr/lib64/gconv/EBCDIC-DK-NO-A.so usr/lib64/gconv/EBCDIC-DK-NO.so usr/lib64/gconv/EBCDIC-ES-A.so usr/lib64/gconv/EBCDIC-ES-S.so usr/lib64/gconv/EBCDIC-ES.so usr/lib64/gconv/EBCDIC-FI-SE-A.so usr/lib64/gconv/EBCDIC-FI-SE.so usr/lib64/gconv/EBCDIC-FR.so usr/lib64/gconv/EBCDIC-IS-FRISS.so usr/lib64/gconv/EBCDIC-IT.so usr/lib64/gconv/EBCDIC-PT.so usr/lib64/gconv/EBCDIC-UK.so usr/lib64/gconv/EBCDIC-US.so usr/lib64/gconv/ECMA-CYRILLIC.so usr/lib64/gconv/EUC-CN.so usr/lib64/gconv/EUC-JISX0213.so usr/lib64/gconv/EUC-JP-MS.so usr/lib64/gconv/EUC-JP.so usr/lib64/gconv/EUC-KR.so usr/lib64/gconv/EUC-TW.so usr/lib64/gconv/GB18030.so usr/lib64/gconv/GBBIG5.so usr/lib64/gconv/GBGBK.so usr/lib64/gconv/GBK.so usr/lib64/gconv/GEORGIAN-ACADEMY.so usr/lib64/gconv/GEORGIAN-PS.so usr/lib64/gconv/GOST_19768-74.so usr/lib64/gconv/GREEK-CCITT.so usr/lib64/gconv/GREEK7-OLD.so usr/lib64/gconv/GREEK7.so usr/lib64/gconv/HP-GREEK8.so usr/lib64/gconv/HP-ROMAN8.so usr/lib64/gconv/HP-ROMAN9.so usr/lib64/gconv/HP-THAI8.so usr/lib64/gconv/HP-TURKISH8.so usr/lib64/gconv/IBM037.so usr/lib64/gconv/IBM038.so usr/lib64/gconv/IBM1004.so usr/lib64/gconv/IBM1008.so usr/lib64/gconv/IBM1008_420.so usr/lib64/gconv/IBM1025.so usr/lib64/gconv/IBM1026.so usr/lib64/gconv/IBM1046.so usr/lib64/gconv/IBM1047.so usr/lib64/gconv/IBM1097.so usr/lib64/gconv/IBM1112.so usr/lib64/gconv/IBM1122.so usr/lib64/gconv/IBM1123.so usr/lib64/gconv/IBM1124.so usr/lib64/gconv/IBM1129.so usr/lib64/gconv/IBM1130.so usr/lib64/gconv/IBM1132.so usr/lib64/gconv/IBM1133.so usr/lib64/gconv/IBM1137.so usr/lib64/gconv/IBM1140.so usr/lib64/gconv/IBM1141.so usr/lib64/gconv/IBM1142.so usr/lib64/gconv/IBM1143.so usr/lib64/gconv/IBM1144.so usr/lib64/gconv/IBM1145.so usr/lib64/gconv/IBM1146.so usr/lib64/gconv/IBM1147.so usr/lib64/gconv/IBM1148.so usr/lib64/gconv/IBM1149.so usr/lib64/gconv/IBM1153.so usr/lib64/gconv/IBM1154.so usr/lib64/gconv/IBM1155.so usr/lib64/gconv/IBM1156.so usr/lib64/gconv/IBM1157.so usr/lib64/gconv/IBM1158.so usr/lib64/gconv/IBM1160.so usr/lib64/gconv/IBM1161.so usr/lib64/gconv/IBM1162.so usr/lib64/gconv/IBM1163.so usr/lib64/gconv/IBM1164.so usr/lib64/gconv/IBM1166.so usr/lib64/gconv/IBM1167.so usr/lib64/gconv/IBM12712.so usr/lib64/gconv/IBM1364.so usr/lib64/gconv/IBM1371.so usr/lib64/gconv/IBM1388.so usr/lib64/gconv/IBM1390.so usr/lib64/gconv/IBM1399.so usr/lib64/gconv/IBM16804.so usr/lib64/gconv/IBM256.so usr/lib64/gconv/IBM273.so usr/lib64/gconv/IBM274.so usr/lib64/gconv/IBM275.so usr/lib64/gconv/IBM277.so usr/lib64/gconv/IBM278.so usr/lib64/gconv/IBM280.so usr/lib64/gconv/IBM281.so usr/lib64/gconv/IBM284.so usr/lib64/gconv/IBM285.so usr/lib64/gconv/IBM290.so usr/lib64/gconv/IBM297.so usr/lib64/gconv/IBM420.so usr/lib64/gconv/IBM423.so usr/lib64/gconv/IBM424.so usr/lib64/gconv/IBM437.so usr/lib64/gconv/IBM4517.so usr/lib64/gconv/IBM4899.so usr/lib64/gconv/IBM4909.so usr/lib64/gconv/IBM4971.so usr/lib64/gconv/IBM500.so usr/lib64/gconv/IBM5347.so usr/lib64/gconv/IBM803.so usr/lib64/gconv/IBM850.so usr/lib64/gconv/IBM851.so usr/lib64/gconv/IBM852.so usr/lib64/gconv/IBM855.so usr/lib64/gconv/IBM856.so usr/lib64/gconv/IBM857.so usr/lib64/gconv/IBM860.so usr/lib64/gconv/IBM861.so usr/lib64/gconv/IBM862.so usr/lib64/gconv/IBM863.so usr/lib64/gconv/IBM864.so usr/lib64/gconv/IBM865.so usr/lib64/gconv/IBM866.so usr/lib64/gconv/IBM866NAV.so usr/lib64/gconv/IBM868.so usr/lib64/gconv/IBM869.so usr/lib64/gconv/IBM870.so usr/lib64/gconv/IBM871.so usr/lib64/gconv/IBM874.so usr/lib64/gconv/IBM875.so usr/lib64/gconv/IBM880.so usr/lib64/gconv/IBM891.so usr/lib64/gconv/IBM901.so usr/lib64/gconv/IBM902.so usr/lib64/gconv/IBM903.so usr/lib64/gconv/IBM9030.so usr/lib64/gconv/IBM904.so usr/lib64/gconv/IBM905.so usr/lib64/gconv/IBM9066.so usr/lib64/gconv/IBM918.so usr/lib64/gconv/IBM921.so usr/lib64/gconv/IBM922.so usr/lib64/gconv/IBM930.so usr/lib64/gconv/IBM932.so usr/lib64/gconv/IBM933.so usr/lib64/gconv/IBM935.so usr/lib64/gconv/IBM937.so usr/lib64/gconv/IBM939.so usr/lib64/gconv/IBM943.so usr/lib64/gconv/IBM9448.so usr/lib64/gconv/IEC_P27-1.so usr/lib64/gconv/INIS-8.so usr/lib64/gconv/INIS-CYRILLIC.so usr/lib64/gconv/INIS.so usr/lib64/gconv/ISIRI-3342.so usr/lib64/gconv/ISO-2022-CN-EXT.so usr/lib64/gconv/ISO-2022-CN.so usr/lib64/gconv/ISO-2022-JP-3.so usr/lib64/gconv/ISO-2022-JP.so usr/lib64/gconv/ISO-2022-KR.so usr/lib64/gconv/ISO-IR-197.so usr/lib64/gconv/ISO-IR-209.so usr/lib64/gconv/ISO646.so usr/lib64/gconv/ISO8859-1.so usr/lib64/gconv/ISO8859-10.so usr/lib64/gconv/ISO8859-11.so usr/lib64/gconv/ISO8859-13.so usr/lib64/gconv/ISO8859-14.so usr/lib64/gconv/ISO8859-15.so usr/lib64/gconv/ISO8859-16.so usr/lib64/gconv/ISO8859-2.so usr/lib64/gconv/ISO8859-3.so usr/lib64/gconv/ISO8859-4.so usr/lib64/gconv/ISO8859-5.so usr/lib64/gconv/ISO8859-6.so usr/lib64/gconv/ISO8859-7.so usr/lib64/gconv/ISO8859-8.so usr/lib64/gconv/ISO8859-9.so usr/lib64/gconv/ISO8859-9E.so usr/lib64/gconv/ISO_10367-BOX.so usr/lib64/gconv/ISO_11548-1.so usr/lib64/gconv/ISO_2033.so usr/lib64/gconv/ISO_5427-EXT.so usr/lib64/gconv/ISO_5427.so usr/lib64/gconv/ISO_5428.so usr/lib64/gconv/ISO_6937-2.so usr/lib64/gconv/ISO_6937.so usr/lib64/gconv/JOHAB.so usr/lib64/gconv/KOI-8.so usr/lib64/gconv/KOI8-R.so usr/lib64/gconv/KOI8-RU.so usr/lib64/gconv/KOI8-T.so usr/lib64/gconv/KOI8-U.so usr/lib64/gconv/LATIN-GREEK-1.so usr/lib64/gconv/LATIN-GREEK.so usr/lib64/gconv/MAC-CENTRALEUROPE.so usr/lib64/gconv/MAC-IS.so usr/lib64/gconv/MAC-SAMI.so usr/lib64/gconv/MAC-UK.so usr/lib64/gconv/MACINTOSH.so usr/lib64/gconv/MIK.so usr/lib64/gconv/NATS-DANO.so usr/lib64/gconv/NATS-SEFI.so usr/lib64/gconv/PT154.so usr/lib64/gconv/RK1048.so usr/lib64/gconv/SAMI-WS2.so usr/lib64/gconv/SHIFT_JISX0213.so usr/lib64/gconv/SJIS.so usr/lib64/gconv/T.61.so usr/lib64/gconv/TCVN5712-1.so usr/lib64/gconv/TIS-620.so usr/lib64/gconv/TSCII.so usr/lib64/gconv/UHC.so usr/lib64/gconv/UNICODE.so usr/lib64/gconv/UTF-16.so usr/lib64/gconv/UTF-32.so usr/lib64/gconv/UTF-7.so usr/lib64/gconv/VISCII.so usr/lib64/gconv/gconv-modules usr/lib64/gconv/gconv-modules.cache usr/lib64/gconv/libCNS.so usr/lib64/gconv/libGB.so usr/lib64/gconv/libISOIR165.so usr/lib64/gconv/libJIS.so usr/lib64/gconv/libJISX0213.so usr/lib64/gconv/libKSC.so usr/lib64/gio/modules/libgiofam.so usr/lib64/krb5/plugins/kdb/db2.so usr/lib64/libdb-4.7.so usr/lib64/libfam.so.0 usr/lib64/libfam.so.0.0.0 usr/lib64/libform.so.5 usr/lib64/libform.so.5.7 usr/lib64/libformw.so.5 usr/lib64/libformw.so.5.7 usr/lib64/libfreetype.so.6 usr/lib64/libfreetype.so.6.3.22 usr/lib64/libgamin-1.so.0 usr/lib64/libgamin-1.so.0.1.10 usr/lib64/libgdbm.so.2 usr/lib64/libgdbm.so.2.0.0 usr/lib64/libgmp.so.3 usr/lib64/libgmp.so.3.5.0 usr/lib64/libgmpxx.so.4 usr/lib64/libgmpxx.so.4.1.0 usr/lib64/libhistory.so.6 usr/lib64/libhistory.so.6.0 usr/lib64/libkadm5clnt_mit.so.8 usr/lib64/libkadm5clnt_mit.so.8.0 usr/lib64/libkadm5srv_mit.so.8 usr/lib64/libkadm5srv_mit.so.8.0 usr/lib64/libkdb5.so.6 usr/lib64/libkdb5.so.6.0 usr/lib64/libmemusage.so usr/lib64/libmenu.so.5 usr/lib64/libmenu.so.5.7 usr/lib64/libmenuw.so.5 usr/lib64/libmenuw.so.5.7 usr/lib64/libmp.so.3 usr/lib64/libmp.so.3.1.14 usr/lib64/libpanel.so.5 usr/lib64/libpanel.so.5.7 usr/lib64/libpanelw.so.5 usr/lib64/libpanelw.so.5.7 usr/lib64/libpcprofile.so usr/lib64/libpcrecpp.so.0 usr/lib64/libpcrecpp.so.0.0.0 usr/lib64/libpcreposix.so.0 usr/lib64/libpcreposix.so.0.0.0 usr/lib64/libslang.so.2 usr/lib64/libslang.so.2.2.1 usr/lib64/libstdc++.so.5 usr/lib64/libstdc++.so.5.0.7 usr/lib64/libstdc++.so.6 usr/lib64/libstdc++.so.6.0.13 usr/lib64/libtic.so.5 usr/lib64/libtic.so.5.7 usr/lib64/libverto-k5ev.so usr/lib64/libverto-k5ev.so.0 usr/lib64/libverto-k5ev.so.0.0 usr/lib64/libverto.so usr/lib64/libverto.so.0 usr/lib64/libverto.so.0.0 usr/libexec/gam_server +usr/libexec/getconf/POSIX_V6_ILP32_OFF32 +usr/libexec/getconf/POSIX_V6_ILP32_OFFBIG usr/libexec/getconf/POSIX_V6_LP64_OFF64 +usr/libexec/getconf/POSIX_V7_ILP32_OFF32 +usr/libexec/getconf/POSIX_V7_ILP32_OFFBIG usr/libexec/getconf/POSIX_V7_LP64_OFF64 usr/libexec/pt_chown usr/sbin/build-locale-archive usr/sbin/capsh usr/sbin/chroot usr/sbin/e2freefrag usr/sbin/fdformat usr/sbin/filefrag usr/sbin/getcap usr/sbin/getpcaps +usr/sbin/glibc_post_upgrade.i686 usr/sbin/glibc_post_upgrade.x86_64 usr/sbin/hwclock usr/sbin/iconvconfig +usr/sbin/iconvconfig.i686 usr/sbin/iconvconfig.x86_64 usr/sbin/ldattach usr/sbin/mklost+found usr/sbin/readprofile +usr/sbin/redhat_lsb_trigger.i686 usr/sbin/redhat_lsb_trigger.x86_64 usr/sbin/rtcwake usr/sbin/setcap usr/sbin/tunelp usr/sbin/tzdata-update usr/sbin/zdump usr/sbin/zic usr/share/doc/bash-4.1.2/COPYING usr/share/doc/bzip2-1.0.5/CHANGES usr/share/doc/bzip2-1.0.5/LICENSE usr/share/doc/bzip2-1.0.5/README usr/share/doc/centos-release-6/EULA usr/share/doc/centos-release-6/GPL usr/share/doc/compat-db43-4.3.29/db-4.3.29/LICENSE usr/share/doc/compat-db43-4.3.29/db-4.3.29/README usr/share/doc/coreutils-8.4/ABOUT-NLS usr/share/doc/coreutils-8.4/COPYING usr/share/doc/coreutils-8.4/ChangeLog.bz2 usr/share/doc/coreutils-8.4/NEWS usr/share/doc/coreutils-8.4/README usr/share/doc/coreutils-8.4/THANKS usr/share/doc/coreutils-8.4/TODO usr/share/doc/coreutils-8.4/fileutils/ChangeLog-1997.bz2 usr/share/doc/coreutils-8.4/fileutils/ChangeLog.bz2 usr/share/doc/coreutils-8.4/fileutils/NEWS usr/share/doc/coreutils-8.4/sh-utils/ChangeLog.0.bz2 usr/share/doc/coreutils-8.4/sh-utils/ChangeLog.bz2 usr/share/doc/coreutils-8.4/sh-utils/NEWS usr/share/doc/coreutils-8.4/textutils/ChangeLog.bz2 usr/share/doc/coreutils-8.4/textutils/NEWS usr/share/doc/db4-4.7.25/LICENSE usr/share/doc/db4-4.7.25/README usr/share/doc/e2fsprogs-1.41.12/COPYING usr/share/doc/e2fsprogs-1.41.12/README usr/share/doc/e2fsprogs-1.41.12/RELEASE-NOTES usr/share/doc/e2fsprogs-libs-1.41.12/COPYING usr/share/doc/elfutils-0.161/CONTRIBUTING usr/share/doc/elfutils-0.161/COPYING usr/share/doc/elfutils-0.161/COPYING-GPLV2 usr/share/doc/elfutils-0.161/COPYING-LGPLV3 usr/share/doc/elfutils-0.161/README usr/share/doc/elfutils-0.161/TODO usr/share/doc/findutils-4.4.2/AUTHORS usr/share/doc/findutils-4.4.2/COPYING usr/share/doc/findutils-4.4.2/NEWS usr/share/doc/findutils-4.4.2/README usr/share/doc/findutils-4.4.2/THANKS usr/share/doc/findutils-4.4.2/TODO usr/share/doc/freetype-2.3.11/CHANGES usr/share/doc/freetype-2.3.11/FTL.TXT usr/share/doc/freetype-2.3.11/GPL.TXT usr/share/doc/freetype-2.3.11/LICENSE.TXT usr/share/doc/freetype-2.3.11/README usr/share/doc/freetype-2.3.11/VERSION.DLL usr/share/doc/freetype-2.3.11/formats.txt usr/share/doc/freetype-2.3.11/ft2faq.html usr/share/doc/gamin-0.1.10/AUTHORS usr/share/doc/gamin-0.1.10/COPYING usr/share/doc/gamin-0.1.10/ChangeLog usr/share/doc/gamin-0.1.10/Copyright usr/share/doc/gamin-0.1.10/FAQ.html usr/share/doc/gamin-0.1.10/NEWS usr/share/doc/gamin-0.1.10/README usr/share/doc/gamin-0.1.10/TODO usr/share/doc/gamin-0.1.10/callbacks.gif usr/share/doc/gamin-0.1.10/client_server.gif usr/share/doc/gamin-0.1.10/config.html usr/share/doc/gamin-0.1.10/contacts.html usr/share/doc/gamin-0.1.10/debug.html usr/share/doc/gamin-0.1.10/debugging.txt usr/share/doc/gamin-0.1.10/devel.html usr/share/doc/gamin-0.1.10/differences.html usr/share/doc/gamin-0.1.10/downloads.html usr/share/doc/gamin-0.1.10/gamin.html usr/share/doc/gamin-0.1.10/index.html usr/share/doc/gamin-0.1.10/internals.html usr/share/doc/gamin-0.1.10/news.html usr/share/doc/gamin-0.1.10/overview.html usr/share/doc/gamin-0.1.10/python.html usr/share/doc/gamin-0.1.10/security.html usr/share/doc/gamin-0.1.10/server_structs.gif usr/share/doc/gamin-0.1.10/socket.txt usr/share/doc/gamin-0.1.10/using.html usr/share/doc/gdbm-1.8.0/COPYING usr/share/doc/gdbm-1.8.0/NEWS usr/share/doc/gdbm-1.8.0/README usr/share/doc/glib2-2.28.8/AUTHORS usr/share/doc/glib2-2.28.8/COPYING usr/share/doc/glib2-2.28.8/NEWS usr/share/doc/glib2-2.28.8/README -usr/share/doc/glibc-2.12/BUGS -usr/share/doc/glibc-2.12/CONFORMANCE -usr/share/doc/glibc-2.12/COPYING -usr/share/doc/glibc-2.12/COPYING.LIB -usr/share/doc/glibc-2.12/FAQ -usr/share/doc/glibc-2.12/INSTALL -usr/share/doc/glibc-2.12/LICENSES -usr/share/doc/glibc-2.12/NEWS -usr/share/doc/glibc-2.12/NOTES -usr/share/doc/glibc-2.12/PROJECTS -usr/share/doc/glibc-2.12/README -usr/share/doc/glibc-2.12/README.hesiod -usr/share/doc/glibc-2.12/README.libm -usr/share/doc/glibc-common-2.12/ChangeLog.15.bz2 -usr/share/doc/glibc-common-2.12/ChangeLog.16.bz2 -usr/share/doc/glibc-common-2.12/ChangeLog.bz2 -usr/share/doc/glibc-common-2.12/README.timezone -usr/share/doc/glibc-common-2.12/README.ufc-crypt -usr/share/doc/glibc-common-2.12/gai.conf +usr/share/doc/glibc-%%GLIBCVER%%/BUGS +usr/share/doc/glibc-%%GLIBCVER%%/CONFORMANCE +usr/share/doc/glibc-%%GLIBCVER%%/COPYING +usr/share/doc/glibc-%%GLIBCVER%%/COPYING.LIB +usr/share/doc/glibc-%%GLIBCVER%%/FAQ +usr/share/doc/glibc-%%GLIBCVER%%/INSTALL +usr/share/doc/glibc-%%GLIBCVER%%/LICENSES +usr/share/doc/glibc-%%GLIBCVER%%/NEWS +usr/share/doc/glibc-%%GLIBCVER%%/NOTES +usr/share/doc/glibc-%%GLIBCVER%%/PROJECTS +usr/share/doc/glibc-%%GLIBCVER%%/README +usr/share/doc/glibc-%%GLIBCVER%%/README.hesiod +usr/share/doc/glibc-%%GLIBCVER%%/README.libm +usr/share/doc/glibc-common-%%GLIBCVER%%/ChangeLog.15.bz2 +usr/share/doc/glibc-common-%%GLIBCVER%%/ChangeLog.16.bz2 +usr/share/doc/glibc-common-%%GLIBCVER%%/ChangeLog.bz2 +usr/share/doc/glibc-common-%%GLIBCVER%%/README.timezone +usr/share/doc/glibc-common-%%GLIBCVER%%/README.ufc-crypt +usr/share/doc/glibc-common-%%GLIBCVER%%/gai.conf usr/share/doc/gmp-4.3.1/COPYING usr/share/doc/gmp-4.3.1/COPYING.LIB usr/share/doc/gmp-4.3.1/NEWS usr/share/doc/gmp-4.3.1/README usr/share/doc/grep-2.20/ABOUT-NLS usr/share/doc/grep-2.20/AUTHORS usr/share/doc/grep-2.20/COPYING usr/share/doc/grep-2.20/ChangeLog usr/share/doc/grep-2.20/NEWS usr/share/doc/grep-2.20/README usr/share/doc/grep-2.20/THANKS usr/share/doc/grep-2.20/TODO usr/share/doc/info-4.13a/COPYING usr/share/doc/keyutils-1.4/LICENCE.GPL usr/share/doc/keyutils-1.4/README usr/share/doc/keyutils-libs-1.4/LICENCE.LGPL usr/share/doc/krb5-libs-1.10.3/LICENSE usr/share/doc/krb5-libs-1.10.3/NOTICE usr/share/doc/krb5-libs-1.10.3/README usr/share/doc/less-436/LICENSE usr/share/doc/libcap-2.16/License usr/share/doc/libcap-2.16/capability.notes usr/share/doc/libcom_err-1.41.12/COPYING usr/share/doc/libgcc-4.4.7/COPYING.LIB usr/share/doc/libidn-1.18/AUTHORS usr/share/doc/libidn-1.18/COPYING usr/share/doc/libidn-1.18/COPYING.LIB usr/share/doc/libidn-1.18/FAQ usr/share/doc/libidn-1.18/NEWS usr/share/doc/libidn-1.18/README usr/share/doc/libidn-1.18/THANKS usr/share/doc/ncurses-5.7/ANNOUNCE usr/share/doc/ncurses-5.7/AUTHORS usr/share/doc/ncurses-5.7/NEWS.bz2 usr/share/doc/ncurses-5.7/README usr/share/doc/ncurses-5.7/TO-DO usr/share/doc/pcre-7.8/AUTHORS usr/share/doc/pcre-7.8/COPYING usr/share/doc/pcre-7.8/ChangeLog usr/share/doc/pcre-7.8/LICENCE usr/share/doc/pcre-7.8/NEWS usr/share/doc/pcre-7.8/README usr/share/doc/popt-1.13/CHANGES usr/share/doc/popt-1.13/COPYING usr/share/doc/readline-6.0/CHANGES usr/share/doc/readline-6.0/COPYING usr/share/doc/readline-6.0/NEWS usr/share/doc/readline-6.0/README usr/share/doc/readline-6.0/USAGE usr/share/doc/redhat-release usr/share/doc/sed-4.2.1/AUTHORS usr/share/doc/sed-4.2.1/BUGS usr/share/doc/sed-4.2.1/COPYING usr/share/doc/sed-4.2.1/COPYING.DOC usr/share/doc/sed-4.2.1/NEWS usr/share/doc/sed-4.2.1/README usr/share/doc/sed-4.2.1/THANKS usr/share/doc/sed-4.2.1/sedfaq.txt.gz usr/share/doc/setserial-2.17/README usr/share/doc/setserial-2.17/rc.serial usr/share/doc/setup-2.8.14/COPYING usr/share/doc/setup-2.8.14/uidgid usr/share/doc/slang-2.2.1/COPYING usr/share/doc/slang-2.2.1/NEWS usr/share/doc/slang-2.2.1/README usr/share/doc/slang-2.2.1/changes.txt usr/share/doc/slang-2.2.1/grammar.txt usr/share/doc/slang-2.2.1/slang.txt usr/share/doc/slang-2.2.1/slangfun.txt usr/share/doc/util-linux-ng-2.17.2/AUTHORS usr/share/doc/util-linux-ng-2.17.2/COPYING.GPL usr/share/doc/util-linux-ng-2.17.2/COPYING.UCB usr/share/doc/util-linux-ng-2.17.2/NEWS usr/share/doc/util-linux-ng-2.17.2/README usr/share/doc/util-linux-ng-2.17.2/README.cal usr/share/doc/util-linux-ng-2.17.2/README.cfdisk usr/share/doc/util-linux-ng-2.17.2/README.clear usr/share/doc/util-linux-ng-2.17.2/README.col usr/share/doc/util-linux-ng-2.17.2/README.ddate usr/share/doc/util-linux-ng-2.17.2/README.devel usr/share/doc/util-linux-ng-2.17.2/README.fdisk usr/share/doc/util-linux-ng-2.17.2/README.floppy usr/share/doc/util-linux-ng-2.17.2/README.flushb usr/share/doc/util-linux-ng-2.17.2/README.getty usr/share/doc/util-linux-ng-2.17.2/README.hwclock usr/share/doc/util-linux-ng-2.17.2/README.licensing usr/share/doc/util-linux-ng-2.17.2/README.modems-with-agetty usr/share/doc/util-linux-ng-2.17.2/README.mount usr/share/doc/util-linux-ng-2.17.2/README.namei usr/share/doc/util-linux-ng-2.17.2/README.namei2 usr/share/doc/util-linux-ng-2.17.2/README.poeigl usr/share/doc/util-linux-ng-2.17.2/getopt-parse.bash usr/share/doc/util-linux-ng-2.17.2/getopt-parse.tcsh usr/share/doc/util-linux-ng-2.17.2/getopt-test.bash usr/share/doc/util-linux-ng-2.17.2/getopt-test.tcsh usr/share/doc/util-linux-ng-2.17.2/sfdisk.examples usr/share/doc/which-2.19/AUTHORS usr/share/doc/which-2.19/COPYING usr/share/doc/which-2.19/EXAMPLES usr/share/doc/which-2.19/NEWS usr/share/doc/which-2.19/README usr/share/doc/zlib-1.2.3/ChangeLog usr/share/doc/zlib-1.2.3/FAQ usr/share/doc/zlib-1.2.3/README usr/share/emacs/site-lisp/idna.el usr/share/emacs/site-lisp/punycode.el usr/share/i18n/charmaps/ANSI_X3.110-1983.gz usr/share/i18n/charmaps/ANSI_X3.4-1968.gz usr/share/i18n/charmaps/ARMSCII-8.gz usr/share/i18n/charmaps/ASMO_449.gz usr/share/i18n/charmaps/BIG5-HKSCS.gz usr/share/i18n/charmaps/BIG5.gz usr/share/i18n/charmaps/BRF.gz usr/share/i18n/charmaps/BS_4730.gz usr/share/i18n/charmaps/BS_VIEWDATA.gz usr/share/i18n/charmaps/CP10007.gz usr/share/i18n/charmaps/CP1125.gz usr/share/i18n/charmaps/CP1250.gz usr/share/i18n/charmaps/CP1251.gz usr/share/i18n/charmaps/CP1252.gz usr/share/i18n/charmaps/CP1253.gz usr/share/i18n/charmaps/CP1254.gz usr/share/i18n/charmaps/CP1255.gz usr/share/i18n/charmaps/CP1256.gz usr/share/i18n/charmaps/CP1257.gz usr/share/i18n/charmaps/CP1258.gz usr/share/i18n/charmaps/CP737.gz usr/share/i18n/charmaps/CP775.gz usr/share/i18n/charmaps/CP949.gz usr/share/i18n/charmaps/CSA_Z243.4-1985-1.gz usr/share/i18n/charmaps/CSA_Z243.4-1985-2.gz usr/share/i18n/charmaps/CSA_Z243.4-1985-GR.gz usr/share/i18n/charmaps/CSN_369103.gz usr/share/i18n/charmaps/CWI.gz usr/share/i18n/charmaps/DEC-MCS.gz usr/share/i18n/charmaps/DIN_66003.gz usr/share/i18n/charmaps/DS_2089.gz usr/share/i18n/charmaps/EBCDIC-AT-DE-A.gz usr/share/i18n/charmaps/EBCDIC-AT-DE.gz usr/share/i18n/charmaps/EBCDIC-CA-FR.gz usr/share/i18n/charmaps/EBCDIC-DK-NO-A.gz usr/share/i18n/charmaps/EBCDIC-DK-NO.gz usr/share/i18n/charmaps/EBCDIC-ES-A.gz usr/share/i18n/charmaps/EBCDIC-ES-S.gz usr/share/i18n/charmaps/EBCDIC-ES.gz usr/share/i18n/charmaps/EBCDIC-FI-SE-A.gz usr/share/i18n/charmaps/EBCDIC-FI-SE.gz usr/share/i18n/charmaps/EBCDIC-FR.gz usr/share/i18n/charmaps/EBCDIC-IS-FRISS.gz usr/share/i18n/charmaps/EBCDIC-IT.gz usr/share/i18n/charmaps/EBCDIC-PT.gz usr/share/i18n/charmaps/EBCDIC-UK.gz usr/share/i18n/charmaps/EBCDIC-US.gz usr/share/i18n/charmaps/ECMA-CYRILLIC.gz usr/share/i18n/charmaps/ES.gz usr/share/i18n/charmaps/ES2.gz usr/share/i18n/charmaps/EUC-JISX0213.gz usr/share/i18n/charmaps/EUC-JP-MS.gz usr/share/i18n/charmaps/EUC-JP.gz usr/share/i18n/charmaps/EUC-KR.gz usr/share/i18n/charmaps/EUC-TW.gz usr/share/i18n/charmaps/GB18030.gz usr/share/i18n/charmaps/GB2312.gz usr/share/i18n/charmaps/GBK.gz usr/share/i18n/charmaps/GB_1988-80.gz usr/share/i18n/charmaps/GEORGIAN-ACADEMY.gz usr/share/i18n/charmaps/GEORGIAN-PS.gz usr/share/i18n/charmaps/GOST_19768-74.gz usr/share/i18n/charmaps/GREEK-CCITT.gz usr/share/i18n/charmaps/GREEK7-OLD.gz usr/share/i18n/charmaps/GREEK7.gz usr/share/i18n/charmaps/HP-GREEK8.gz usr/share/i18n/charmaps/HP-ROMAN8.gz usr/share/i18n/charmaps/HP-ROMAN9.gz usr/share/i18n/charmaps/HP-THAI8.gz usr/share/i18n/charmaps/HP-TURKISH8.gz usr/share/i18n/charmaps/IBM037.gz usr/share/i18n/charmaps/IBM038.gz usr/share/i18n/charmaps/IBM1004.gz usr/share/i18n/charmaps/IBM1026.gz usr/share/i18n/charmaps/IBM1047.gz usr/share/i18n/charmaps/IBM1124.gz usr/share/i18n/charmaps/IBM1129.gz usr/share/i18n/charmaps/IBM1132.gz usr/share/i18n/charmaps/IBM1133.gz usr/share/i18n/charmaps/IBM1160.gz usr/share/i18n/charmaps/IBM1161.gz usr/share/i18n/charmaps/IBM1162.gz usr/share/i18n/charmaps/IBM1163.gz usr/share/i18n/charmaps/IBM1164.gz usr/share/i18n/charmaps/IBM256.gz usr/share/i18n/charmaps/IBM273.gz usr/share/i18n/charmaps/IBM274.gz usr/share/i18n/charmaps/IBM275.gz usr/share/i18n/charmaps/IBM277.gz usr/share/i18n/charmaps/IBM278.gz usr/share/i18n/charmaps/IBM280.gz usr/share/i18n/charmaps/IBM281.gz usr/share/i18n/charmaps/IBM284.gz usr/share/i18n/charmaps/IBM285.gz usr/share/i18n/charmaps/IBM290.gz usr/share/i18n/charmaps/IBM297.gz usr/share/i18n/charmaps/IBM420.gz usr/share/i18n/charmaps/IBM423.gz usr/share/i18n/charmaps/IBM424.gz usr/share/i18n/charmaps/IBM437.gz usr/share/i18n/charmaps/IBM500.gz usr/share/i18n/charmaps/IBM850.gz usr/share/i18n/charmaps/IBM851.gz usr/share/i18n/charmaps/IBM852.gz usr/share/i18n/charmaps/IBM855.gz usr/share/i18n/charmaps/IBM856.gz usr/share/i18n/charmaps/IBM857.gz usr/share/i18n/charmaps/IBM860.gz usr/share/i18n/charmaps/IBM861.gz usr/share/i18n/charmaps/IBM862.gz usr/share/i18n/charmaps/IBM863.gz usr/share/i18n/charmaps/IBM864.gz usr/share/i18n/charmaps/IBM865.gz usr/share/i18n/charmaps/IBM866.gz usr/share/i18n/charmaps/IBM866NAV.gz usr/share/i18n/charmaps/IBM868.gz usr/share/i18n/charmaps/IBM869.gz usr/share/i18n/charmaps/IBM870.gz usr/share/i18n/charmaps/IBM871.gz usr/share/i18n/charmaps/IBM874.gz usr/share/i18n/charmaps/IBM875.gz usr/share/i18n/charmaps/IBM880.gz usr/share/i18n/charmaps/IBM891.gz usr/share/i18n/charmaps/IBM903.gz usr/share/i18n/charmaps/IBM904.gz usr/share/i18n/charmaps/IBM905.gz usr/share/i18n/charmaps/IBM918.gz usr/share/i18n/charmaps/IBM922.gz usr/share/i18n/charmaps/IEC_P27-1.gz usr/share/i18n/charmaps/INIS-8.gz usr/share/i18n/charmaps/INIS-CYRILLIC.gz usr/share/i18n/charmaps/INIS.gz usr/share/i18n/charmaps/INVARIANT.gz usr/share/i18n/charmaps/ISIRI-3342.gz usr/share/i18n/charmaps/ISO-8859-1.gz usr/share/i18n/charmaps/ISO-8859-10.gz usr/share/i18n/charmaps/ISO-8859-11.gz usr/share/i18n/charmaps/ISO-8859-13.gz usr/share/i18n/charmaps/ISO-8859-14.gz usr/share/i18n/charmaps/ISO-8859-15.gz usr/share/i18n/charmaps/ISO-8859-16.gz usr/share/i18n/charmaps/ISO-8859-2.gz usr/share/i18n/charmaps/ISO-8859-3.gz usr/share/i18n/charmaps/ISO-8859-4.gz usr/share/i18n/charmaps/ISO-8859-5.gz usr/share/i18n/charmaps/ISO-8859-6.gz usr/share/i18n/charmaps/ISO-8859-7.gz usr/share/i18n/charmaps/ISO-8859-8.gz usr/share/i18n/charmaps/ISO-8859-9.gz usr/share/i18n/charmaps/ISO-8859-9E.gz usr/share/i18n/charmaps/ISO-IR-197.gz usr/share/i18n/charmaps/ISO-IR-209.gz usr/share/i18n/charmaps/ISO-IR-90.gz usr/share/i18n/charmaps/ISO_10367-BOX.gz usr/share/i18n/charmaps/ISO_10646.gz usr/share/i18n/charmaps/ISO_11548-1.gz usr/share/i18n/charmaps/ISO_2033-1983.gz usr/share/i18n/charmaps/ISO_5427-EXT.gz usr/share/i18n/charmaps/ISO_5427.gz usr/share/i18n/charmaps/ISO_5428.gz usr/share/i18n/charmaps/ISO_646.BASIC.gz usr/share/i18n/charmaps/ISO_646.IRV.gz usr/share/i18n/charmaps/ISO_6937-2-25.gz usr/share/i18n/charmaps/ISO_6937-2-ADD.gz usr/share/i18n/charmaps/ISO_6937.gz usr/share/i18n/charmaps/ISO_8859-1,GL.gz usr/share/i18n/charmaps/ISO_8859-SUPP.gz usr/share/i18n/charmaps/IT.gz usr/share/i18n/charmaps/JIS_C6220-1969-JP.gz usr/share/i18n/charmaps/JIS_C6220-1969-RO.gz usr/share/i18n/charmaps/JIS_C6229-1984-A.gz usr/share/i18n/charmaps/JIS_C6229-1984-B-ADD.gz usr/share/i18n/charmaps/JIS_C6229-1984-B.gz usr/share/i18n/charmaps/JIS_C6229-1984-HAND-ADD.gz usr/share/i18n/charmaps/JIS_C6229-1984-HAND.gz usr/share/i18n/charmaps/JIS_C6229-1984-KANA.gz usr/share/i18n/charmaps/JIS_X0201.gz usr/share/i18n/charmaps/JOHAB.gz usr/share/i18n/charmaps/JUS_I.B1.002.gz usr/share/i18n/charmaps/JUS_I.B1.003-MAC.gz usr/share/i18n/charmaps/JUS_I.B1.003-SERB.gz usr/share/i18n/charmaps/KOI-8.gz usr/share/i18n/charmaps/KOI8-R.gz usr/share/i18n/charmaps/KOI8-RU.gz usr/share/i18n/charmaps/KOI8-T.gz usr/share/i18n/charmaps/KOI8-U.gz usr/share/i18n/charmaps/KSC5636.gz usr/share/i18n/charmaps/LATIN-GREEK-1.gz usr/share/i18n/charmaps/LATIN-GREEK.gz usr/share/i18n/charmaps/MAC-CENTRALEUROPE.gz usr/share/i18n/charmaps/MAC-CYRILLIC.gz usr/share/i18n/charmaps/MAC-IS.gz usr/share/i18n/charmaps/MAC-SAMI.gz usr/share/i18n/charmaps/MAC-UK.gz usr/share/i18n/charmaps/MACINTOSH.gz usr/share/i18n/charmaps/MIK.gz usr/share/i18n/charmaps/MSZ_7795.3.gz usr/share/i18n/charmaps/NATS-DANO-ADD.gz usr/share/i18n/charmaps/NATS-DANO.gz usr/share/i18n/charmaps/NATS-SEFI-ADD.gz usr/share/i18n/charmaps/NATS-SEFI.gz usr/share/i18n/charmaps/NC_NC00-10.gz usr/share/i18n/charmaps/NEXTSTEP.gz usr/share/i18n/charmaps/NF_Z_62-010.gz usr/share/i18n/charmaps/NF_Z_62-010_1973.gz usr/share/i18n/charmaps/NS_4551-1.gz usr/share/i18n/charmaps/NS_4551-2.gz usr/share/i18n/charmaps/PT.gz usr/share/i18n/charmaps/PT154.gz usr/share/i18n/charmaps/PT2.gz usr/share/i18n/charmaps/RK1048.gz usr/share/i18n/charmaps/SAMI-WS2.gz usr/share/i18n/charmaps/SAMI.gz usr/share/i18n/charmaps/SEN_850200_B.gz usr/share/i18n/charmaps/SEN_850200_C.gz usr/share/i18n/charmaps/SHIFT_JIS.gz usr/share/i18n/charmaps/SHIFT_JISX0213.gz usr/share/i18n/charmaps/T.101-G2.gz usr/share/i18n/charmaps/T.61-7BIT.gz usr/share/i18n/charmaps/T.61-8BIT.gz usr/share/i18n/charmaps/TCVN5712-1.gz usr/share/i18n/charmaps/TIS-620.gz usr/share/i18n/charmaps/TSCII.gz usr/share/i18n/charmaps/UTF-8.gz usr/share/i18n/charmaps/VIDEOTEX-SUPPL.gz usr/share/i18n/charmaps/VISCII.gz usr/share/i18n/charmaps/WINDOWS-31J.gz usr/share/i18n/locales/POSIX usr/share/i18n/locales/aa_DJ usr/share/i18n/locales/aa_ER usr/share/i18n/locales/aa_ER@saaho usr/share/i18n/locales/aa_ET usr/share/i18n/locales/af_ZA usr/share/i18n/locales/am_ET usr/share/i18n/locales/an_ES usr/share/i18n/locales/ar_AE usr/share/i18n/locales/ar_BH usr/share/i18n/locales/ar_DZ usr/share/i18n/locales/ar_EG usr/share/i18n/locales/ar_IN usr/share/i18n/locales/ar_IQ usr/share/i18n/locales/ar_JO usr/share/i18n/locales/ar_KW usr/share/i18n/locales/ar_LB usr/share/i18n/locales/ar_LY usr/share/i18n/locales/ar_MA usr/share/i18n/locales/ar_OM usr/share/i18n/locales/ar_QA usr/share/i18n/locales/ar_SA usr/share/i18n/locales/ar_SD usr/share/i18n/locales/ar_SY usr/share/i18n/locales/ar_TN usr/share/i18n/locales/ar_YE usr/share/i18n/locales/as_IN usr/share/i18n/locales/ast_ES usr/share/i18n/locales/az_AZ usr/share/i18n/locales/be_BY usr/share/i18n/locales/be_BY@latin usr/share/i18n/locales/ber_DZ usr/share/i18n/locales/ber_MA usr/share/i18n/locales/bg_BG usr/share/i18n/locales/bn_BD usr/share/i18n/locales/bn_IN usr/share/i18n/locales/bo_CN usr/share/i18n/locales/bo_IN usr/share/i18n/locales/br_FR usr/share/i18n/locales/br_FR@euro usr/share/i18n/locales/bs_BA usr/share/i18n/locales/byn_ER usr/share/i18n/locales/ca_AD usr/share/i18n/locales/ca_ES usr/share/i18n/locales/ca_ES@euro usr/share/i18n/locales/ca_FR usr/share/i18n/locales/ca_IT usr/share/i18n/locales/crh_UA usr/share/i18n/locales/cs_CZ usr/share/i18n/locales/csb_PL usr/share/i18n/locales/cv_RU usr/share/i18n/locales/cy_GB usr/share/i18n/locales/da_DK usr/share/i18n/locales/de_AT usr/share/i18n/locales/de_AT@euro usr/share/i18n/locales/de_BE usr/share/i18n/locales/de_BE@euro usr/share/i18n/locales/de_CH usr/share/i18n/locales/de_DE usr/share/i18n/locales/de_DE@euro usr/share/i18n/locales/de_LU usr/share/i18n/locales/de_LU@euro usr/share/i18n/locales/dv_MV usr/share/i18n/locales/dz_BT usr/share/i18n/locales/el_CY usr/share/i18n/locales/el_GR usr/share/i18n/locales/el_GR@euro usr/share/i18n/locales/en_AG usr/share/i18n/locales/en_AU usr/share/i18n/locales/en_BW usr/share/i18n/locales/en_CA usr/share/i18n/locales/en_DK usr/share/i18n/locales/en_GB usr/share/i18n/locales/en_HK usr/share/i18n/locales/en_IE usr/share/i18n/locales/en_IE@euro usr/share/i18n/locales/en_IN usr/share/i18n/locales/en_NG usr/share/i18n/locales/en_NZ usr/share/i18n/locales/en_PH usr/share/i18n/locales/en_SG usr/share/i18n/locales/en_US usr/share/i18n/locales/en_ZA usr/share/i18n/locales/en_ZW usr/share/i18n/locales/es_AR usr/share/i18n/locales/es_BO usr/share/i18n/locales/es_CL usr/share/i18n/locales/es_CO usr/share/i18n/locales/es_CR usr/share/i18n/locales/es_DO usr/share/i18n/locales/es_EC usr/share/i18n/locales/es_ES usr/share/i18n/locales/es_ES@euro usr/share/i18n/locales/es_GT usr/share/i18n/locales/es_HN usr/share/i18n/locales/es_MX usr/share/i18n/locales/es_NI usr/share/i18n/locales/es_PA usr/share/i18n/locales/es_PE usr/share/i18n/locales/es_PR usr/share/i18n/locales/es_PY usr/share/i18n/locales/es_SV usr/share/i18n/locales/es_US usr/share/i18n/locales/es_UY usr/share/i18n/locales/es_VE usr/share/i18n/locales/et_EE usr/share/i18n/locales/eu_ES usr/share/i18n/locales/eu_ES@euro usr/share/i18n/locales/fa_IR usr/share/i18n/locales/fi_FI usr/share/i18n/locales/fi_FI@euro usr/share/i18n/locales/fil_PH usr/share/i18n/locales/fo_FO usr/share/i18n/locales/fr_BE usr/share/i18n/locales/fr_BE@euro usr/share/i18n/locales/fr_CA usr/share/i18n/locales/fr_CH usr/share/i18n/locales/fr_FR usr/share/i18n/locales/fr_FR@euro usr/share/i18n/locales/fr_LU usr/share/i18n/locales/fr_LU@euro usr/share/i18n/locales/fur_IT usr/share/i18n/locales/fy_DE usr/share/i18n/locales/fy_NL usr/share/i18n/locales/ga_IE usr/share/i18n/locales/ga_IE@euro usr/share/i18n/locales/gd_GB usr/share/i18n/locales/gez_ER usr/share/i18n/locales/gez_ER@abegede usr/share/i18n/locales/gez_ET usr/share/i18n/locales/gez_ET@abegede usr/share/i18n/locales/gl_ES usr/share/i18n/locales/gl_ES@euro usr/share/i18n/locales/gu_IN usr/share/i18n/locales/gv_GB usr/share/i18n/locales/ha_NG usr/share/i18n/locales/he_IL usr/share/i18n/locales/hi_IN usr/share/i18n/locales/hne_IN usr/share/i18n/locales/hr_HR usr/share/i18n/locales/hsb_DE usr/share/i18n/locales/ht_HT usr/share/i18n/locales/hu_HU usr/share/i18n/locales/hy_AM usr/share/i18n/locales/i18n usr/share/i18n/locales/id_ID usr/share/i18n/locales/ig_NG usr/share/i18n/locales/ik_CA usr/share/i18n/locales/is_IS usr/share/i18n/locales/iso14651_t1 usr/share/i18n/locales/iso14651_t1_common usr/share/i18n/locales/iso14651_t1_pinyin usr/share/i18n/locales/it_CH usr/share/i18n/locales/it_IT usr/share/i18n/locales/it_IT@euro usr/share/i18n/locales/iu_CA usr/share/i18n/locales/iw_IL usr/share/i18n/locales/ja_JP usr/share/i18n/locales/ka_GE usr/share/i18n/locales/kk_KZ usr/share/i18n/locales/kl_GL usr/share/i18n/locales/km_KH usr/share/i18n/locales/kn_IN usr/share/i18n/locales/ko_KR usr/share/i18n/locales/kok_IN usr/share/i18n/locales/ks_IN usr/share/i18n/locales/ks_IN@devanagari usr/share/i18n/locales/ku_TR usr/share/i18n/locales/kw_GB usr/share/i18n/locales/ky_KG usr/share/i18n/locales/lg_UG usr/share/i18n/locales/li_BE usr/share/i18n/locales/li_NL usr/share/i18n/locales/lo_LA usr/share/i18n/locales/lt_LT usr/share/i18n/locales/lv_LV usr/share/i18n/locales/mai_IN usr/share/i18n/locales/mg_MG usr/share/i18n/locales/mi_NZ usr/share/i18n/locales/mk_MK usr/share/i18n/locales/ml_IN usr/share/i18n/locales/mn_MN usr/share/i18n/locales/mr_IN usr/share/i18n/locales/ms_MY usr/share/i18n/locales/mt_MT usr/share/i18n/locales/my_MM usr/share/i18n/locales/nan_TW@latin usr/share/i18n/locales/nb_NO usr/share/i18n/locales/nds_DE usr/share/i18n/locales/nds_NL usr/share/i18n/locales/ne_NP usr/share/i18n/locales/nl_AW usr/share/i18n/locales/nl_BE usr/share/i18n/locales/nl_BE@euro usr/share/i18n/locales/nl_NL usr/share/i18n/locales/nl_NL@euro usr/share/i18n/locales/nn_NO usr/share/i18n/locales/no_NO usr/share/i18n/locales/nr_ZA usr/share/i18n/locales/nso_ZA usr/share/i18n/locales/oc_FR usr/share/i18n/locales/om_ET usr/share/i18n/locales/om_KE usr/share/i18n/locales/or_IN usr/share/i18n/locales/pa_IN usr/share/i18n/locales/pa_PK usr/share/i18n/locales/pap_AN usr/share/i18n/locales/pl_PL usr/share/i18n/locales/ps_AF usr/share/i18n/locales/pt_BR usr/share/i18n/locales/pt_PT usr/share/i18n/locales/pt_PT@euro usr/share/i18n/locales/ro_RO usr/share/i18n/locales/ru_RU usr/share/i18n/locales/ru_UA usr/share/i18n/locales/rw_RW usr/share/i18n/locales/sa_IN usr/share/i18n/locales/sc_IT usr/share/i18n/locales/sd_IN usr/share/i18n/locales/sd_IN@devanagari usr/share/i18n/locales/se_NO usr/share/i18n/locales/shs_CA usr/share/i18n/locales/si_LK usr/share/i18n/locales/sid_ET usr/share/i18n/locales/sk_SK usr/share/i18n/locales/sl_SI usr/share/i18n/locales/so_DJ usr/share/i18n/locales/so_ET usr/share/i18n/locales/so_KE usr/share/i18n/locales/so_SO usr/share/i18n/locales/sq_AL usr/share/i18n/locales/sq_MK usr/share/i18n/locales/sr_ME usr/share/i18n/locales/sr_RS usr/share/i18n/locales/sr_RS@latin usr/share/i18n/locales/ss_ZA usr/share/i18n/locales/st_ZA usr/share/i18n/locales/sv_FI usr/share/i18n/locales/sv_FI@euro usr/share/i18n/locales/sv_SE usr/share/i18n/locales/ta_IN usr/share/i18n/locales/te_IN usr/share/i18n/locales/tg_TJ usr/share/i18n/locales/th_TH usr/share/i18n/locales/ti_ER usr/share/i18n/locales/ti_ET usr/share/i18n/locales/tig_ER usr/share/i18n/locales/tk_TM usr/share/i18n/locales/tl_PH usr/share/i18n/locales/tn_ZA usr/share/i18n/locales/tr_CY usr/share/i18n/locales/tr_TR usr/share/i18n/locales/translit_circle usr/share/i18n/locales/translit_cjk_compat usr/share/i18n/locales/translit_cjk_variants usr/share/i18n/locales/translit_combining usr/share/i18n/locales/translit_compat usr/share/i18n/locales/translit_font usr/share/i18n/locales/translit_fraction usr/share/i18n/locales/translit_hangul usr/share/i18n/locales/translit_narrow usr/share/i18n/locales/translit_neutral usr/share/i18n/locales/translit_small usr/share/i18n/locales/translit_wide usr/share/i18n/locales/ts_ZA usr/share/i18n/locales/tt_RU usr/share/i18n/locales/tt_RU@iqtelif usr/share/i18n/locales/ug_CN usr/share/i18n/locales/uk_UA usr/share/i18n/locales/ur_IN usr/share/i18n/locales/ur_PK usr/share/i18n/locales/uz_UZ usr/share/i18n/locales/uz_UZ@cyrillic usr/share/i18n/locales/ve_ZA usr/share/i18n/locales/vi_VN usr/share/i18n/locales/wa_BE usr/share/i18n/locales/wa_BE@euro usr/share/i18n/locales/wal_ET usr/share/i18n/locales/wo_SN usr/share/i18n/locales/xh_ZA usr/share/i18n/locales/yi_US usr/share/i18n/locales/yo_NG usr/share/i18n/locales/zh_CN usr/share/i18n/locales/zh_HK usr/share/i18n/locales/zh_SG usr/share/i18n/locales/zh_TW usr/share/i18n/locales/zu_ZA usr/share/info/bash.info.gz usr/share/info/coreutils.info.gz usr/share/info/dir usr/share/info/find-maint.info.gz usr/share/info/find.info.gz usr/share/info/grep.info.gz usr/share/info/history.info.gz usr/share/info/info-stnd.info.gz usr/share/info/info.info.gz usr/share/info/ipc.info.gz usr/share/info/libidn.info.gz usr/share/info/rluserman.info.gz usr/share/info/sed.info.gz usr/share/info/which.info.gz usr/share/keyutils/request-key-debug.sh usr/share/locale/af/LC_MESSAGES/bash.mo usr/share/locale/af/LC_MESSAGES/coreutils.mo usr/share/locale/af/LC_MESSAGES/glib20.mo usr/share/locale/af/LC_MESSAGES/grep.mo usr/share/locale/af/LC_MESSAGES/sed.mo usr/share/locale/af/LC_TIME/coreutils.mo usr/share/locale/am/LC_MESSAGES/glib20.mo usr/share/locale/ar/LC_MESSAGES/glib20.mo usr/share/locale/as/LC_MESSAGES/glib20.mo usr/share/locale/ast/LC_MESSAGES/glib20.mo usr/share/locale/az/LC_MESSAGES/glib20.mo usr/share/locale/be/LC_MESSAGES/coreutils.mo usr/share/locale/be/LC_MESSAGES/findutils.mo usr/share/locale/be/LC_MESSAGES/glib20.mo usr/share/locale/be/LC_MESSAGES/grep.mo usr/share/locale/be/LC_MESSAGES/libc.mo usr/share/locale/be/LC_TIME/coreutils.mo usr/share/locale/be@latin/LC_MESSAGES/glib20.mo usr/share/locale/bg/LC_MESSAGES/bash.mo usr/share/locale/bg/LC_MESSAGES/coreutils.mo usr/share/locale/bg/LC_MESSAGES/findutils.mo usr/share/locale/bg/LC_MESSAGES/glib20.mo usr/share/locale/bg/LC_MESSAGES/grep.mo usr/share/locale/bg/LC_MESSAGES/libc.mo usr/share/locale/bg/LC_TIME/coreutils.mo usr/share/locale/bn/LC_MESSAGES/glib20.mo usr/share/locale/bn_IN/LC_MESSAGES/glib20.mo usr/share/locale/bs/LC_MESSAGES/glib20.mo usr/share/locale/ca/LC_MESSAGES/bash.mo usr/share/locale/ca/LC_MESSAGES/coreutils.mo usr/share/locale/ca/LC_MESSAGES/e2fsprogs.mo usr/share/locale/ca/LC_MESSAGES/findutils.mo usr/share/locale/ca/LC_MESSAGES/glib20.mo usr/share/locale/ca/LC_MESSAGES/grep.mo usr/share/locale/ca/LC_MESSAGES/libc.mo usr/share/locale/ca/LC_MESSAGES/sed.mo usr/share/locale/ca/LC_MESSAGES/util-linux-ng.mo usr/share/locale/ca/LC_TIME/coreutils.mo usr/share/locale/ca@valencia/LC_MESSAGES/glib20.mo usr/share/locale/cs/LC_MESSAGES/bash.mo usr/share/locale/cs/LC_MESSAGES/coreutils.mo usr/share/locale/cs/LC_MESSAGES/e2fsprogs.mo usr/share/locale/cs/LC_MESSAGES/findutils.mo usr/share/locale/cs/LC_MESSAGES/glib20.mo usr/share/locale/cs/LC_MESSAGES/grep.mo usr/share/locale/cs/LC_MESSAGES/libc.mo usr/share/locale/cs/LC_MESSAGES/libidn.mo usr/share/locale/cs/LC_MESSAGES/popt.mo usr/share/locale/cs/LC_MESSAGES/sed.mo usr/share/locale/cs/LC_MESSAGES/util-linux-ng.mo usr/share/locale/cs/LC_TIME/coreutils.mo usr/share/locale/cy/LC_MESSAGES/glib20.mo usr/share/locale/da/LC_MESSAGES/coreutils.mo usr/share/locale/da/LC_MESSAGES/findutils.mo usr/share/locale/da/LC_MESSAGES/glib20.mo usr/share/locale/da/LC_MESSAGES/grep.mo usr/share/locale/da/LC_MESSAGES/libc.mo usr/share/locale/da/LC_MESSAGES/libidn.mo usr/share/locale/da/LC_MESSAGES/popt.mo usr/share/locale/da/LC_MESSAGES/sed.mo usr/share/locale/da/LC_MESSAGES/util-linux-ng.mo usr/share/locale/da/LC_TIME/coreutils.mo usr/share/locale/de/LC_MESSAGES/bash.mo usr/share/locale/de/LC_MESSAGES/coreutils.mo usr/share/locale/de/LC_MESSAGES/e2fsprogs.mo usr/share/locale/de/LC_MESSAGES/findutils.mo usr/share/locale/de/LC_MESSAGES/glib20.mo usr/share/locale/de/LC_MESSAGES/grep.mo usr/share/locale/de/LC_MESSAGES/libc.mo usr/share/locale/de/LC_MESSAGES/libidn.mo usr/share/locale/de/LC_MESSAGES/popt.mo usr/share/locale/de/LC_MESSAGES/sed.mo usr/share/locale/de/LC_MESSAGES/util-linux-ng.mo usr/share/locale/de/LC_TIME/coreutils.mo usr/share/locale/dz/LC_MESSAGES/glib20.mo usr/share/locale/el/LC_MESSAGES/coreutils.mo usr/share/locale/el/LC_MESSAGES/findutils.mo usr/share/locale/el/LC_MESSAGES/glib20.mo usr/share/locale/el/LC_MESSAGES/grep.mo usr/share/locale/el/LC_MESSAGES/libc.mo usr/share/locale/el/LC_MESSAGES/sed.mo usr/share/locale/el/LC_TIME/coreutils.mo usr/share/locale/en/LC_MESSAGES/coreutils.mo usr/share/locale/en/LC_TIME/coreutils.mo usr/share/locale/en@boldquot/LC_MESSAGES/bash.mo usr/share/locale/en@boldquot/LC_MESSAGES/libidn.mo usr/share/locale/en@quot/LC_MESSAGES/bash.mo usr/share/locale/en@quot/LC_MESSAGES/libidn.mo usr/share/locale/en@shaw/LC_MESSAGES/glib20.mo usr/share/locale/en_CA/LC_MESSAGES/glib20.mo usr/share/locale/en_GB/LC_MESSAGES/glib20.mo usr/share/locale/en_GB/LC_MESSAGES/libc.mo usr/share/locale/en_US/LC_MESSAGES/mit-krb5.mo usr/share/locale/eo/LC_MESSAGES/bash.mo usr/share/locale/eo/LC_MESSAGES/findutils.mo usr/share/locale/eo/LC_MESSAGES/glib20.mo usr/share/locale/eo/LC_MESSAGES/grep.mo usr/share/locale/eo/LC_MESSAGES/libidn.mo usr/share/locale/eo/LC_MESSAGES/sed.mo usr/share/locale/es/LC_MESSAGES/bash.mo usr/share/locale/es/LC_MESSAGES/coreutils.mo usr/share/locale/es/LC_MESSAGES/e2fsprogs.mo usr/share/locale/es/LC_MESSAGES/findutils.mo usr/share/locale/es/LC_MESSAGES/glib20.mo usr/share/locale/es/LC_MESSAGES/grep.mo usr/share/locale/es/LC_MESSAGES/libc.mo usr/share/locale/es/LC_MESSAGES/popt.mo usr/share/locale/es/LC_MESSAGES/sed.mo usr/share/locale/es/LC_MESSAGES/util-linux-ng.mo usr/share/locale/es/LC_TIME/coreutils.mo usr/share/locale/et/LC_MESSAGES/bash.mo usr/share/locale/et/LC_MESSAGES/coreutils.mo usr/share/locale/et/LC_MESSAGES/findutils.mo usr/share/locale/et/LC_MESSAGES/glib20.mo usr/share/locale/et/LC_MESSAGES/grep.mo usr/share/locale/et/LC_MESSAGES/sed.mo usr/share/locale/et/LC_MESSAGES/util-linux-ng.mo usr/share/locale/et/LC_TIME/coreutils.mo usr/share/locale/eu/LC_MESSAGES/coreutils.mo usr/share/locale/eu/LC_MESSAGES/glib20.mo usr/share/locale/eu/LC_MESSAGES/grep.mo usr/share/locale/eu/LC_MESSAGES/sed.mo usr/share/locale/eu/LC_MESSAGES/util-linux-ng.mo usr/share/locale/eu/LC_TIME/coreutils.mo usr/share/locale/fa/LC_MESSAGES/glib20.mo usr/share/locale/fi/LC_MESSAGES/bash.mo usr/share/locale/fi/LC_MESSAGES/coreutils.mo usr/share/locale/fi/LC_MESSAGES/findutils.mo usr/share/locale/fi/LC_MESSAGES/glib20.mo usr/share/locale/fi/LC_MESSAGES/grep.mo usr/share/locale/fi/LC_MESSAGES/libc.mo usr/share/locale/fi/LC_MESSAGES/libidn.mo usr/share/locale/fi/LC_MESSAGES/sed.mo usr/share/locale/fi/LC_MESSAGES/util-linux-ng.mo usr/share/locale/fi/LC_TIME/coreutils.mo usr/share/locale/fr/LC_MESSAGES/bash.mo usr/share/locale/fr/LC_MESSAGES/coreutils.mo usr/share/locale/fr/LC_MESSAGES/e2fsprogs.mo usr/share/locale/fr/LC_MESSAGES/findutils.mo usr/share/locale/fr/LC_MESSAGES/glib20.mo usr/share/locale/fr/LC_MESSAGES/grep.mo usr/share/locale/fr/LC_MESSAGES/libc.mo usr/share/locale/fr/LC_MESSAGES/libidn.mo usr/share/locale/fr/LC_MESSAGES/popt.mo usr/share/locale/fr/LC_MESSAGES/sed.mo usr/share/locale/fr/LC_MESSAGES/util-linux-ng.mo usr/share/locale/fr/LC_TIME/coreutils.mo usr/share/locale/ga/LC_MESSAGES/bash.mo usr/share/locale/ga/LC_MESSAGES/coreutils.mo usr/share/locale/ga/LC_MESSAGES/findutils.mo usr/share/locale/ga/LC_MESSAGES/glib20.mo usr/share/locale/ga/LC_MESSAGES/grep.mo usr/share/locale/ga/LC_MESSAGES/popt.mo usr/share/locale/ga/LC_MESSAGES/sed.mo usr/share/locale/ga/LC_TIME/coreutils.mo usr/share/locale/gl/LC_MESSAGES/coreutils.mo usr/share/locale/gl/LC_MESSAGES/findutils.mo usr/share/locale/gl/LC_MESSAGES/glib20.mo usr/share/locale/gl/LC_MESSAGES/grep.mo usr/share/locale/gl/LC_MESSAGES/libc.mo usr/share/locale/gl/LC_MESSAGES/popt.mo usr/share/locale/gl/LC_MESSAGES/sed.mo usr/share/locale/gl/LC_TIME/coreutils.mo usr/share/locale/gu/LC_MESSAGES/glib20.mo usr/share/locale/he/LC_MESSAGES/glib20.mo usr/share/locale/he/LC_MESSAGES/grep.mo usr/share/locale/he/LC_MESSAGES/sed.mo usr/share/locale/hi/LC_MESSAGES/glib20.mo usr/share/locale/hr/LC_MESSAGES/findutils.mo usr/share/locale/hr/LC_MESSAGES/glib20.mo usr/share/locale/hr/LC_MESSAGES/grep.mo usr/share/locale/hr/LC_MESSAGES/libc.mo usr/share/locale/hr/LC_MESSAGES/sed.mo usr/share/locale/hu/LC_MESSAGES/bash.mo usr/share/locale/hu/LC_MESSAGES/coreutils.mo usr/share/locale/hu/LC_MESSAGES/findutils.mo usr/share/locale/hu/LC_MESSAGES/glib20.mo usr/share/locale/hu/LC_MESSAGES/grep.mo usr/share/locale/hu/LC_MESSAGES/libc.mo usr/share/locale/hu/LC_MESSAGES/popt.mo usr/share/locale/hu/LC_MESSAGES/sed.mo usr/share/locale/hu/LC_MESSAGES/util-linux-ng.mo usr/share/locale/hu/LC_TIME/coreutils.mo usr/share/locale/hy/LC_MESSAGES/glib20.mo usr/share/locale/id/LC_MESSAGES/bash.mo usr/share/locale/id/LC_MESSAGES/coreutils.mo usr/share/locale/id/LC_MESSAGES/e2fsprogs.mo usr/share/locale/id/LC_MESSAGES/findutils.mo usr/share/locale/id/LC_MESSAGES/glib20.mo usr/share/locale/id/LC_MESSAGES/grep.mo usr/share/locale/id/LC_MESSAGES/libc.mo usr/share/locale/id/LC_MESSAGES/libidn.mo usr/share/locale/id/LC_MESSAGES/sed.mo usr/share/locale/id/LC_MESSAGES/util-linux-ng.mo usr/share/locale/id/LC_TIME/coreutils.mo usr/share/locale/is/LC_MESSAGES/glib20.mo usr/share/locale/is/LC_MESSAGES/popt.mo usr/share/locale/it/LC_MESSAGES/coreutils.mo usr/share/locale/it/LC_MESSAGES/e2fsprogs.mo usr/share/locale/it/LC_MESSAGES/findutils.mo usr/share/locale/it/LC_MESSAGES/glib20.mo usr/share/locale/it/LC_MESSAGES/grep.mo usr/share/locale/it/LC_MESSAGES/libc.mo usr/share/locale/it/LC_MESSAGES/libidn.mo usr/share/locale/it/LC_MESSAGES/popt.mo usr/share/locale/it/LC_MESSAGES/sed.mo usr/share/locale/it/LC_MESSAGES/util-linux-ng.mo usr/share/locale/it/LC_TIME/coreutils.mo usr/share/locale/ja/LC_MESSAGES/bash.mo usr/share/locale/ja/LC_MESSAGES/coreutils.mo usr/share/locale/ja/LC_MESSAGES/findutils.mo usr/share/locale/ja/LC_MESSAGES/glib20.mo usr/share/locale/ja/LC_MESSAGES/grep.mo usr/share/locale/ja/LC_MESSAGES/libc.mo usr/share/locale/ja/LC_MESSAGES/libidn.mo usr/share/locale/ja/LC_MESSAGES/popt.mo usr/share/locale/ja/LC_MESSAGES/sed.mo usr/share/locale/ja/LC_MESSAGES/util-linux-ng.mo usr/share/locale/ja/LC_TIME/coreutils.mo usr/share/locale/ka/LC_MESSAGES/glib20.mo usr/share/locale/kk/LC_MESSAGES/glib20.mo usr/share/locale/kn/LC_MESSAGES/glib20.mo usr/share/locale/ko/LC_MESSAGES/coreutils.mo usr/share/locale/ko/LC_MESSAGES/findutils.mo usr/share/locale/ko/LC_MESSAGES/glib20.mo usr/share/locale/ko/LC_MESSAGES/grep.mo usr/share/locale/ko/LC_MESSAGES/libc.mo usr/share/locale/ko/LC_MESSAGES/popt.mo usr/share/locale/ko/LC_MESSAGES/sed.mo usr/share/locale/ko/LC_TIME/coreutils.mo usr/share/locale/ku/LC_MESSAGES/glib20.mo usr/share/locale/ky/LC_MESSAGES/grep.mo usr/share/locale/lg/LC_MESSAGES/coreutils.mo usr/share/locale/lg/LC_MESSAGES/findutils.mo usr/share/locale/lg/LC_TIME/coreutils.mo usr/share/locale/locale.alias usr/share/locale/lt/LC_MESSAGES/bash.mo usr/share/locale/lt/LC_MESSAGES/coreutils.mo usr/share/locale/lt/LC_MESSAGES/findutils.mo usr/share/locale/lt/LC_MESSAGES/glib20.mo usr/share/locale/lt/LC_MESSAGES/grep.mo usr/share/locale/lt/LC_MESSAGES/libc.mo usr/share/locale/lt/LC_TIME/coreutils.mo usr/share/locale/lv/LC_MESSAGES/glib20.mo usr/share/locale/mai/LC_MESSAGES/glib20.mo usr/share/locale/mg/LC_MESSAGES/glib20.mo usr/share/locale/mk/LC_MESSAGES/glib20.mo usr/share/locale/ml/LC_MESSAGES/glib20.mo usr/share/locale/mn/LC_MESSAGES/glib20.mo usr/share/locale/mr/LC_MESSAGES/glib20.mo usr/share/locale/ms/LC_MESSAGES/coreutils.mo usr/share/locale/ms/LC_MESSAGES/findutils.mo usr/share/locale/ms/LC_MESSAGES/glib20.mo usr/share/locale/ms/LC_TIME/coreutils.mo usr/share/locale/nb/LC_MESSAGES/coreutils.mo usr/share/locale/nb/LC_MESSAGES/glib20.mo usr/share/locale/nb/LC_MESSAGES/grep.mo usr/share/locale/nb/LC_MESSAGES/libc.mo usr/share/locale/nb/LC_MESSAGES/popt.mo usr/share/locale/nb/LC_TIME/coreutils.mo usr/share/locale/nds/LC_MESSAGES/glib20.mo usr/share/locale/ne/LC_MESSAGES/glib20.mo usr/share/locale/nl/LC_MESSAGES/bash.mo usr/share/locale/nl/LC_MESSAGES/coreutils.mo usr/share/locale/nl/LC_MESSAGES/e2fsprogs.mo usr/share/locale/nl/LC_MESSAGES/findutils.mo usr/share/locale/nl/LC_MESSAGES/glib20.mo usr/share/locale/nl/LC_MESSAGES/grep.mo usr/share/locale/nl/LC_MESSAGES/libc.mo usr/share/locale/nl/LC_MESSAGES/libidn.mo usr/share/locale/nl/LC_MESSAGES/popt.mo usr/share/locale/nl/LC_MESSAGES/sed.mo usr/share/locale/nl/LC_MESSAGES/util-linux-ng.mo usr/share/locale/nl/LC_TIME/coreutils.mo usr/share/locale/nn/LC_MESSAGES/glib20.mo usr/share/locale/oc/LC_MESSAGES/glib20.mo usr/share/locale/or/LC_MESSAGES/glib20.mo usr/share/locale/pa/LC_MESSAGES/glib20.mo usr/share/locale/pa/LC_MESSAGES/grep.mo usr/share/locale/pl/LC_MESSAGES/bash.mo usr/share/locale/pl/LC_MESSAGES/coreutils.mo usr/share/locale/pl/LC_MESSAGES/e2fsprogs.mo usr/share/locale/pl/LC_MESSAGES/findutils.mo usr/share/locale/pl/LC_MESSAGES/glib20.mo usr/share/locale/pl/LC_MESSAGES/grep.mo usr/share/locale/pl/LC_MESSAGES/libc.mo usr/share/locale/pl/LC_MESSAGES/libidn.mo usr/share/locale/pl/LC_MESSAGES/popt.mo usr/share/locale/pl/LC_MESSAGES/sed.mo usr/share/locale/pl/LC_MESSAGES/util-linux-ng.mo usr/share/locale/pl/LC_TIME/coreutils.mo usr/share/locale/ps/LC_MESSAGES/glib20.mo usr/share/locale/pt/LC_MESSAGES/coreutils.mo usr/share/locale/pt/LC_MESSAGES/findutils.mo usr/share/locale/pt/LC_MESSAGES/glib20.mo usr/share/locale/pt/LC_MESSAGES/grep.mo usr/share/locale/pt/LC_MESSAGES/popt.mo usr/share/locale/pt/LC_MESSAGES/sed.mo usr/share/locale/pt/LC_TIME/coreutils.mo usr/share/locale/pt_BR/LC_MESSAGES/bash.mo usr/share/locale/pt_BR/LC_MESSAGES/coreutils.mo usr/share/locale/pt_BR/LC_MESSAGES/findutils.mo usr/share/locale/pt_BR/LC_MESSAGES/glib20.mo usr/share/locale/pt_BR/LC_MESSAGES/grep.mo usr/share/locale/pt_BR/LC_MESSAGES/libc.mo usr/share/locale/pt_BR/LC_MESSAGES/sed.mo usr/share/locale/pt_BR/LC_MESSAGES/util-linux-ng.mo usr/share/locale/pt_BR/LC_TIME/coreutils.mo usr/share/locale/ro/LC_MESSAGES/bash.mo usr/share/locale/ro/LC_MESSAGES/findutils.mo usr/share/locale/ro/LC_MESSAGES/glib20.mo usr/share/locale/ro/LC_MESSAGES/grep.mo usr/share/locale/ro/LC_MESSAGES/libidn.mo usr/share/locale/ro/LC_MESSAGES/popt.mo usr/share/locale/ro/LC_MESSAGES/sed.mo usr/share/locale/ru/LC_MESSAGES/bash.mo usr/share/locale/ru/LC_MESSAGES/coreutils.mo usr/share/locale/ru/LC_MESSAGES/findutils.mo usr/share/locale/ru/LC_MESSAGES/glib20.mo usr/share/locale/ru/LC_MESSAGES/grep.mo usr/share/locale/ru/LC_MESSAGES/libc.mo usr/share/locale/ru/LC_MESSAGES/popt.mo usr/share/locale/ru/LC_MESSAGES/sed.mo usr/share/locale/ru/LC_MESSAGES/util-linux-ng.mo usr/share/locale/ru/LC_TIME/coreutils.mo usr/share/locale/rw/LC_MESSAGES/findutils.mo usr/share/locale/rw/LC_MESSAGES/glib20.mo usr/share/locale/rw/LC_MESSAGES/libc.mo usr/share/locale/si/LC_MESSAGES/glib20.mo usr/share/locale/sk/LC_MESSAGES/bash.mo usr/share/locale/sk/LC_MESSAGES/coreutils.mo usr/share/locale/sk/LC_MESSAGES/findutils.mo usr/share/locale/sk/LC_MESSAGES/glib20.mo usr/share/locale/sk/LC_MESSAGES/grep.mo usr/share/locale/sk/LC_MESSAGES/libc.mo usr/share/locale/sk/LC_MESSAGES/popt.mo usr/share/locale/sk/LC_MESSAGES/sed.mo usr/share/locale/sk/LC_TIME/coreutils.mo usr/share/locale/sl/LC_MESSAGES/coreutils.mo usr/share/locale/sl/LC_MESSAGES/findutils.mo usr/share/locale/sl/LC_MESSAGES/glib20.mo usr/share/locale/sl/LC_MESSAGES/grep.mo usr/share/locale/sl/LC_MESSAGES/popt.mo usr/share/locale/sl/LC_MESSAGES/sed.mo usr/share/locale/sl/LC_MESSAGES/util-linux-ng.mo usr/share/locale/sl/LC_TIME/coreutils.mo usr/share/locale/sq/LC_MESSAGES/glib20.mo usr/share/locale/sr/LC_MESSAGES/findutils.mo usr/share/locale/sr/LC_MESSAGES/glib20.mo usr/share/locale/sr/LC_MESSAGES/grep.mo usr/share/locale/sr/LC_MESSAGES/libidn.mo usr/share/locale/sr/LC_MESSAGES/sed.mo usr/share/locale/sr@ije/LC_MESSAGES/glib20.mo usr/share/locale/sr@latin/LC_MESSAGES/glib20.mo usr/share/locale/sv/LC_MESSAGES/bash.mo usr/share/locale/sv/LC_MESSAGES/coreutils.mo usr/share/locale/sv/LC_MESSAGES/e2fsprogs.mo usr/share/locale/sv/LC_MESSAGES/findutils.mo usr/share/locale/sv/LC_MESSAGES/glib20.mo usr/share/locale/sv/LC_MESSAGES/grep.mo usr/share/locale/sv/LC_MESSAGES/libc.mo usr/share/locale/sv/LC_MESSAGES/popt.mo usr/share/locale/sv/LC_MESSAGES/sed.mo usr/share/locale/sv/LC_MESSAGES/util-linux-ng.mo usr/share/locale/sv/LC_TIME/coreutils.mo usr/share/locale/ta/LC_MESSAGES/glib20.mo usr/share/locale/te/LC_MESSAGES/glib20.mo usr/share/locale/th/LC_MESSAGES/glib20.mo usr/share/locale/th/LC_MESSAGES/grep.mo usr/share/locale/tl/LC_MESSAGES/glib20.mo usr/share/locale/tr/LC_MESSAGES/bash.mo usr/share/locale/tr/LC_MESSAGES/coreutils.mo usr/share/locale/tr/LC_MESSAGES/e2fsprogs.mo usr/share/locale/tr/LC_MESSAGES/findutils.mo usr/share/locale/tr/LC_MESSAGES/glib20.mo usr/share/locale/tr/LC_MESSAGES/grep.mo usr/share/locale/tr/LC_MESSAGES/libc.mo usr/share/locale/tr/LC_MESSAGES/popt.mo usr/share/locale/tr/LC_MESSAGES/sed.mo usr/share/locale/tr/LC_MESSAGES/util-linux-ng.mo usr/share/locale/tr/LC_TIME/coreutils.mo usr/share/locale/tt/LC_MESSAGES/glib20.mo usr/share/locale/ug/LC_MESSAGES/glib20.mo usr/share/locale/uk/LC_MESSAGES/coreutils.mo usr/share/locale/uk/LC_MESSAGES/findutils.mo usr/share/locale/uk/LC_MESSAGES/glib20.mo usr/share/locale/uk/LC_MESSAGES/grep.mo usr/share/locale/uk/LC_MESSAGES/popt.mo usr/share/locale/uk/LC_MESSAGES/sed.mo usr/share/locale/uk/LC_MESSAGES/util-linux-ng.mo usr/share/locale/uk/LC_TIME/coreutils.mo usr/share/locale/vi/LC_MESSAGES/bash.mo usr/share/locale/vi/LC_MESSAGES/coreutils.mo usr/share/locale/vi/LC_MESSAGES/e2fsprogs.mo usr/share/locale/vi/LC_MESSAGES/findutils.mo usr/share/locale/vi/LC_MESSAGES/glib20.mo usr/share/locale/vi/LC_MESSAGES/grep.mo usr/share/locale/vi/LC_MESSAGES/libc.mo usr/share/locale/vi/LC_MESSAGES/libidn.mo usr/share/locale/vi/LC_MESSAGES/popt.mo usr/share/locale/vi/LC_MESSAGES/sed.mo usr/share/locale/vi/LC_MESSAGES/util-linux-ng.mo usr/share/locale/vi/LC_TIME/coreutils.mo usr/share/locale/wa/LC_MESSAGES/glib20.mo usr/share/locale/wa/LC_MESSAGES/popt.mo usr/share/locale/xh/LC_MESSAGES/glib20.mo usr/share/locale/yi/LC_MESSAGES/glib20.mo usr/share/locale/zh_CN/LC_MESSAGES/coreutils.mo usr/share/locale/zh_CN/LC_MESSAGES/e2fsprogs.mo usr/share/locale/zh_CN/LC_MESSAGES/findutils.mo usr/share/locale/zh_CN/LC_MESSAGES/glib20.mo usr/share/locale/zh_CN/LC_MESSAGES/grep.mo usr/share/locale/zh_CN/LC_MESSAGES/libc.mo usr/share/locale/zh_CN/LC_MESSAGES/libidn.mo usr/share/locale/zh_CN/LC_MESSAGES/popt.mo usr/share/locale/zh_CN/LC_MESSAGES/sed.mo usr/share/locale/zh_CN/LC_MESSAGES/util-linux-ng.mo usr/share/locale/zh_CN/LC_TIME/coreutils.mo usr/share/locale/zh_HK/LC_MESSAGES/glib20.mo usr/share/locale/zh_TW/LC_MESSAGES/bash.mo usr/share/locale/zh_TW/LC_MESSAGES/coreutils.mo usr/share/locale/zh_TW/LC_MESSAGES/findutils.mo usr/share/locale/zh_TW/LC_MESSAGES/glib20.mo usr/share/locale/zh_TW/LC_MESSAGES/grep.mo usr/share/locale/zh_TW/LC_MESSAGES/libc.mo usr/share/locale/zh_TW/LC_MESSAGES/sed.mo usr/share/locale/zh_TW/LC_TIME/coreutils.mo usr/share/man/man1/..1.gz usr/share/man/man1/:.1.gz usr/share/man/man1/[.1.gz usr/share/man/man1/alias.1.gz usr/share/man/man1/arch.1.gz usr/share/man/man1/base64.1.gz usr/share/man/man1/basename.1.gz usr/share/man/man1/bash.1.gz usr/share/man/man1/bashbug.1.gz usr/share/man/man1/bg.1.gz usr/share/man/man1/bind.1.gz usr/share/man/man1/break.1.gz usr/share/man/man1/builtin.1.gz usr/share/man/man1/builtins.1.gz usr/share/man/man1/bunzip2.1.gz usr/share/man/man1/bzcat.1.gz usr/share/man/man1/bzcmp.1.gz usr/share/man/man1/bzdiff.1.gz usr/share/man/man1/bzgrep.1.gz usr/share/man/man1/bzip2.1.gz usr/share/man/man1/bzip2recover.1.gz usr/share/man/man1/bzless.1.gz usr/share/man/man1/bzmore.1.gz usr/share/man/man1/cal.1.gz usr/share/man/man1/caller.1.gz usr/share/man/man1/capsh.1.gz usr/share/man/man1/captoinfo.1m.gz usr/share/man/man1/cat.1.gz usr/share/man/man1/cd.1.gz usr/share/man/man1/chattr.1.gz usr/share/man/man1/chcon.1.gz usr/share/man/man1/chfn.1.gz usr/share/man/man1/chgrp.1.gz usr/share/man/man1/chmod.1.gz usr/share/man/man1/chown.1.gz usr/share/man/man1/chroot.1.gz usr/share/man/man1/chrt.1.gz usr/share/man/man1/chsh.1.gz usr/share/man/man1/cksum.1.gz usr/share/man/man1/clear.1.gz usr/share/man/man1/col.1.gz usr/share/man/man1/colcrt.1.gz usr/share/man/man1/colrm.1.gz usr/share/man/man1/column.1.gz usr/share/man/man1/comm.1.gz usr/share/man/man1/command.1.gz usr/share/man/man1/compgen.1.gz usr/share/man/man1/complete.1.gz usr/share/man/man1/compopt.1.gz usr/share/man/man1/continue.1.gz usr/share/man/man1/cp.1.gz usr/share/man/man1/csplit.1.gz usr/share/man/man1/cut.1.gz usr/share/man/man1/date.1.gz usr/share/man/man1/dd.1.gz usr/share/man/man1/ddate.1.gz usr/share/man/man1/declare.1.gz usr/share/man/man1/df.1.gz usr/share/man/man1/dir.1.gz usr/share/man/man1/dircolors.1.gz usr/share/man/man1/dirname.1.gz usr/share/man/man1/dirs.1.gz usr/share/man/man1/disown.1.gz usr/share/man/man1/dmesg.1.gz usr/share/man/man1/du.1.gz usr/share/man/man1/echo.1.gz usr/share/man/man1/egrep.1.gz usr/share/man/man1/enable.1.gz usr/share/man/man1/env.1.gz usr/share/man/man1/eval.1.gz usr/share/man/man1/exec.1.gz usr/share/man/man1/exit.1.gz usr/share/man/man1/expand.1.gz usr/share/man/man1/export.1.gz usr/share/man/man1/expr.1.gz usr/share/man/man1/factor.1.gz usr/share/man/man1/fallocate.1.gz usr/share/man/man1/false.1.gz usr/share/man/man1/fc.1.gz usr/share/man/man1/fg.1.gz usr/share/man/man1/fgrep.1.gz usr/share/man/man1/find.1.gz usr/share/man/man1/flock.1.gz usr/share/man/man1/fmt.1.gz usr/share/man/man1/fold.1.gz usr/share/man/man1/gdbus.1.gz usr/share/man/man1/getopt.1.gz usr/share/man/man1/getopts.1.gz usr/share/man/man1/gio-querymodules.1.gz usr/share/man/man1/glib-compile-schemas.1.gz usr/share/man/man1/grep.1.gz usr/share/man/man1/groups.1.gz usr/share/man/man1/hash.1.gz usr/share/man/man1/head.1.gz usr/share/man/man1/help.1.gz usr/share/man/man1/hexdump.1.gz usr/share/man/man1/history.1.gz usr/share/man/man1/hostid.1.gz usr/share/man/man1/id.1.gz usr/share/man/man1/idn.1.gz usr/share/man/man1/info.1.gz usr/share/man/man1/infocmp.1m.gz usr/share/man/man1/infokey.1.gz usr/share/man/man1/infotocap.1m.gz usr/share/man/man1/install-info.1.gz usr/share/man/man1/install.1.gz usr/share/man/man1/ionice.1.gz usr/share/man/man1/ipcmk.1.gz usr/share/man/man1/ipcrm.1.gz usr/share/man/man1/ipcs.1.gz usr/share/man/man1/jobs.1.gz usr/share/man/man1/join.1.gz usr/share/man/man1/kerberos.1.gz usr/share/man/man1/keyctl.1.gz usr/share/man/man1/kill.1.gz usr/share/man/man1/less.1.gz usr/share/man/man1/lessecho.1.gz usr/share/man/man1/lesskey.1.gz usr/share/man/man1/let.1.gz usr/share/man/man1/link.1.gz usr/share/man/man1/ln.1.gz usr/share/man/man1/local.1.gz usr/share/man/man1/logger.1.gz usr/share/man/man1/login.1.gz usr/share/man/man1/logname.1.gz usr/share/man/man1/logout.1.gz usr/share/man/man1/look.1.gz usr/share/man/man1/ls.1.gz usr/share/man/man1/lsattr.1.gz usr/share/man/man1/lsb_release.1.gz usr/share/man/man1/lscpu.1.gz usr/share/man/man1/lslogins.1.gz usr/share/man/man1/mapfile.1.gz usr/share/man/man1/mcookie.1.gz usr/share/man/man1/md5sum.1.gz usr/share/man/man1/mkdir.1.gz usr/share/man/man1/mkfifo.1.gz usr/share/man/man1/mknod.1.gz usr/share/man/man1/mktemp.1.gz usr/share/man/man1/more.1.gz usr/share/man/man1/mv.1.gz usr/share/man/man1/namei.1.gz usr/share/man/man1/nice.1.gz usr/share/man/man1/nl.1.gz usr/share/man/man1/nohup.1.gz usr/share/man/man1/nproc.1.gz usr/share/man/man1/nsenter.1.gz usr/share/man/man1/od.1.gz usr/share/man/man1/paste.1.gz usr/share/man/man1/pathchk.1.gz usr/share/man/man1/pcre-config.1.gz usr/share/man/man1/pcregrep.1.gz usr/share/man/man1/pcretest.1.gz usr/share/man/man1/pinky.1.gz usr/share/man/man1/popd.1.gz usr/share/man/man1/pr.1.gz usr/share/man/man1/printenv.1.gz usr/share/man/man1/printf.1.gz usr/share/man/man1/ptx.1.gz usr/share/man/man1/pushd.1.gz usr/share/man/man1/pwd.1.gz usr/share/man/man1/read.1.gz usr/share/man/man1/readlink.1.gz usr/share/man/man1/readonly.1.gz usr/share/man/man1/readprofile.1.gz usr/share/man/man1/rename.1.gz usr/share/man/man1/renice.1.gz usr/share/man/man1/reset.1.gz usr/share/man/man1/return.1.gz usr/share/man/man1/rev.1.gz usr/share/man/man1/rm.1.gz usr/share/man/man1/rmdir.1.gz usr/share/man/man1/runcon.1.gz usr/share/man/man1/runuser.1.gz usr/share/man/man1/script.1.gz usr/share/man/man1/scriptreplay.1.gz usr/share/man/man1/sed.1.gz usr/share/man/man1/seq.1.gz usr/share/man/man1/set.1.gz usr/share/man/man1/setsid.1.gz usr/share/man/man1/setterm.1.gz usr/share/man/man1/sh.1.gz usr/share/man/man1/sha1sum.1.gz usr/share/man/man1/sha224sum.1.gz usr/share/man/man1/sha256sum.1.gz usr/share/man/man1/sha384sum.1.gz usr/share/man/man1/sha512sum.1.gz usr/share/man/man1/shift.1.gz usr/share/man/man1/shopt.1.gz usr/share/man/man1/shred.1.gz usr/share/man/man1/shuf.1.gz usr/share/man/man1/sleep.1.gz usr/share/man/man1/sort.1.gz usr/share/man/man1/source.1.gz usr/share/man/man1/split.1.gz usr/share/man/man1/stat.1.gz usr/share/man/man1/stdbuf.1.gz usr/share/man/man1/stty.1.gz usr/share/man/man1/su.1.gz usr/share/man/man1/sum.1.gz usr/share/man/man1/suspend.1.gz usr/share/man/man1/sync.1.gz usr/share/man/man1/tabs.1.gz usr/share/man/man1/tac.1.gz usr/share/man/man1/tail.1.gz usr/share/man/man1/tailf.1.gz usr/share/man/man1/taskset.1.gz usr/share/man/man1/tee.1.gz usr/share/man/man1/test.1.gz usr/share/man/man1/tic.1m.gz usr/share/man/man1/timeout.1.gz usr/share/man/man1/times.1.gz usr/share/man/man1/toe.1m.gz usr/share/man/man1/touch.1.gz usr/share/man/man1/tput.1.gz usr/share/man/man1/tr.1.gz usr/share/man/man1/trap.1.gz usr/share/man/man1/true.1.gz usr/share/man/man1/truncate.1.gz usr/share/man/man1/tset.1.gz usr/share/man/man1/tsort.1.gz usr/share/man/man1/tty.1.gz usr/share/man/man1/type.1.gz usr/share/man/man1/typeset.1.gz usr/share/man/man1/ul.1.gz usr/share/man/man1/ulimit.1.gz usr/share/man/man1/umask.1.gz usr/share/man/man1/unalias.1.gz usr/share/man/man1/uname.1.gz usr/share/man/man1/unexpand.1.gz usr/share/man/man1/uniq.1.gz usr/share/man/man1/unlink.1.gz usr/share/man/man1/unset.1.gz usr/share/man/man1/unshare.1.gz usr/share/man/man1/users.1.gz usr/share/man/man1/uuidgen.1.gz usr/share/man/man1/vdir.1.gz usr/share/man/man1/wait.1.gz usr/share/man/man1/wc.1.gz usr/share/man/man1/whereis.1.gz usr/share/man/man1/which.1.gz usr/share/man/man1/who.1.gz usr/share/man/man1/whoami.1.gz usr/share/man/man1/write.1.gz usr/share/man/man1/xargs.1.gz usr/share/man/man1/yes.1.gz usr/share/man/man5/.k5identity.5.gz usr/share/man/man5/.k5login.5.gz usr/share/man/man5/e2fsck.conf.5.gz usr/share/man/man5/fstab.5.gz usr/share/man/man5/info.5.gz usr/share/man/man5/k5identity.5.gz usr/share/man/man5/k5login.5.gz usr/share/man/man5/krb5.conf.5.gz usr/share/man/man5/mke2fs.conf.5.gz usr/share/man/man5/request-key.conf.5.gz usr/share/man/man5/term.5.gz usr/share/man/man5/terminfo.5.gz usr/share/man/man7/term.7.gz usr/share/man/man8/addpart.8.gz usr/share/man/man8/agetty.8.gz usr/share/man/man8/badblocks.8.gz usr/share/man/man8/blkdiscard.8.gz usr/share/man/man8/blkid.8.gz usr/share/man/man8/blockdev.8.gz usr/share/man/man8/cfdisk.8.gz usr/share/man/man8/chcpu.8.gz usr/share/man/man8/clock.8.gz usr/share/man/man8/ctrlaltdel.8.gz +usr/share/man/man8/cytune.8.gz usr/share/man/man8/debugfs.8.gz usr/share/man/man8/delpart.8.gz usr/share/man/man8/dumpe2fs.8.gz usr/share/man/man8/e2freefrag.8.gz usr/share/man/man8/e2fsck.8.gz usr/share/man/man8/e2image.8.gz usr/share/man/man8/e2label.8.gz usr/share/man/man8/e2undo.8.gz usr/share/man/man8/fdformat.8.gz usr/share/man/man8/fdisk.8.gz usr/share/man/man8/filefrag.8.gz usr/share/man/man8/findfs.8.gz usr/share/man/man8/findmnt.8.gz usr/share/man/man8/floppy.8.gz usr/share/man/man8/fsck.8.gz usr/share/man/man8/fsck.ext2.8.gz usr/share/man/man8/fsck.ext3.8.gz usr/share/man/man8/fsck.ext4.8.gz usr/share/man/man8/fsck.ext4dev.8.gz usr/share/man/man8/fsfreeze.8.gz usr/share/man/man8/fstrim.8.gz usr/share/man/man8/getcap.8.gz usr/share/man/man8/hwclock.8.gz usr/share/man/man8/i386.8.gz usr/share/man/man8/isosize.8.gz usr/share/man/man8/ldattach.8.gz usr/share/man/man8/linux32.8.gz usr/share/man/man8/linux64.8.gz usr/share/man/man8/logsave.8.gz usr/share/man/man8/losetup.8.gz usr/share/man/man8/lsblk.8.gz usr/share/man/man8/mke2fs.8.gz usr/share/man/man8/mkfs.8.gz usr/share/man/man8/mkfs.ext2.8.gz usr/share/man/man8/mkfs.ext3.8.gz usr/share/man/man8/mkfs.ext4.8.gz usr/share/man/man8/mkfs.ext4dev.8.gz usr/share/man/man8/mklost+found.8.gz usr/share/man/man8/mkswap.8.gz usr/share/man/man8/mount.8.gz usr/share/man/man8/nologin.8.gz usr/share/man/man8/partx.8.gz usr/share/man/man8/pivot_root.8.gz usr/share/man/man8/raw.8.gz usr/share/man/man8/rawdevices.8.gz usr/share/man/man8/request-key.8.gz usr/share/man/man8/resize2fs.8.gz usr/share/man/man8/rtcwake.8.gz usr/share/man/man8/setarch.8.gz usr/share/man/man8/setcap.8.gz usr/share/man/man8/setserial.8.gz usr/share/man/man8/sfdisk.8.gz usr/share/man/man8/swapoff.8.gz usr/share/man/man8/swapon.8.gz usr/share/man/man8/switch_root.8.gz usr/share/man/man8/tune2fs.8.gz usr/share/man/man8/tunelp.8.gz usr/share/man/man8/umount.8.gz usr/share/man/man8/wipefs.8.gz usr/share/man/man8/x86_64.8.gz usr/tmp @unexec rm -f %D/var/cache/ldconfig/aux-cache var/mail @sample etc/krb5.conf.sample @sample etc/yp.conf.sample @dir %%LINUXBASE%% @dir etc/X11/applnk @dir etc/X11/fontpath.d @dir etc/blkid @dir etc/ld.so.conf.d @dir etc/opt @dir etc/pm/config.d @dir etc/pm/power.d @dir etc/pm/sleep.d @dir etc/popt.d @dir etc/request-key.d @dir etc/sysconfig @dir etc/xdg/autostart @dir etc/xinetd.d @dir lib/modules @dir lib64/rtkaio @dir lib64/security @dir lib64/tls @dir mnt @dir opt @dir proc @dir selinux @dir srv @dir sys @dir usr/X11R6/bin @dir usr/X11R6/include @dir usr/X11R6/lib/tls @dir usr/X11R6/man @dir usr/X11R6/share @dir usr/etc @dir usr/games @dir usr/lib/games +@dir usr/lib/krb5/plugins/authdata +@dir usr/lib/krb5/plugins/libkrb5 +@dir usr/lib/krb5/plugins/preauth @dir usr/lib64/X11 @dir usr/lib64/db4.3.29 @dir usr/lib64/games @dir usr/lib64/krb5/plugins/authdata @dir usr/lib64/krb5/plugins/libkrb5 @dir usr/lib64/krb5/plugins/preauth @dir usr/lib64/pm-utils/module.d @dir usr/lib64/pm-utils/power.d @dir usr/lib64/pm-utils/sleep.d @dir usr/lib64/sse2 @dir usr/lib64/tls @dir usr/share/X11 @dir usr/share/applications @dir usr/share/augeas/lenses @dir usr/share/backgrounds @dir usr/share/desktop-directories @dir usr/share/dict @dir usr/share/empty @dir usr/share/games @dir usr/share/ghostscript/conf.d @dir usr/share/glib-2.0 @dir usr/share/gnome @dir usr/share/icons @dir usr/share/idl @dir usr/share/locale/aa/LC_MESSAGES @dir usr/share/locale/ab/LC_MESSAGES @dir usr/share/locale/ace/LC_MESSAGES @dir usr/share/locale/ach/LC_MESSAGES @dir usr/share/locale/ada/LC_MESSAGES @dir usr/share/locale/ady/LC_MESSAGES @dir usr/share/locale/ae/LC_MESSAGES @dir usr/share/locale/af_ZA/LC_MESSAGES @dir usr/share/locale/afa/LC_MESSAGES @dir usr/share/locale/afh/LC_MESSAGES @dir usr/share/locale/ain/LC_MESSAGES @dir usr/share/locale/ak/LC_MESSAGES @dir usr/share/locale/akk/LC_MESSAGES @dir usr/share/locale/ale/LC_MESSAGES @dir usr/share/locale/alg/LC_MESSAGES @dir usr/share/locale/alt/LC_MESSAGES @dir usr/share/locale/am_ET/LC_MESSAGES @dir usr/share/locale/an/LC_MESSAGES @dir usr/share/locale/ang/LC_MESSAGES @dir usr/share/locale/anp/LC_MESSAGES @dir usr/share/locale/apa/LC_MESSAGES @dir usr/share/locale/arc/LC_MESSAGES @dir usr/share/locale/arn/LC_MESSAGES @dir usr/share/locale/arp/LC_MESSAGES @dir usr/share/locale/art/LC_MESSAGES @dir usr/share/locale/arw/LC_MESSAGES @dir usr/share/locale/ast_ES/LC_MESSAGES @dir usr/share/locale/ath/LC_MESSAGES @dir usr/share/locale/aus/LC_MESSAGES @dir usr/share/locale/av/LC_MESSAGES @dir usr/share/locale/awa/LC_MESSAGES @dir usr/share/locale/ay/LC_MESSAGES @dir usr/share/locale/az_IR/LC_MESSAGES @dir usr/share/locale/ba/LC_MESSAGES @dir usr/share/locale/bad/LC_MESSAGES @dir usr/share/locale/bai/LC_MESSAGES @dir usr/share/locale/bal/LC_MESSAGES @dir usr/share/locale/ban/LC_MESSAGES @dir usr/share/locale/bas/LC_MESSAGES @dir usr/share/locale/bat/LC_MESSAGES @dir usr/share/locale/bej/LC_MESSAGES @dir usr/share/locale/bem/LC_MESSAGES @dir usr/share/locale/ber/LC_MESSAGES @dir usr/share/locale/bg_BG/LC_MESSAGES @dir usr/share/locale/bh/LC_MESSAGES @dir usr/share/locale/bho/LC_MESSAGES @dir usr/share/locale/bi/LC_MESSAGES @dir usr/share/locale/bik/LC_MESSAGES @dir usr/share/locale/bin/LC_MESSAGES @dir usr/share/locale/bla/LC_MESSAGES @dir usr/share/locale/bm/LC_MESSAGES @dir usr/share/locale/bnt/LC_MESSAGES @dir usr/share/locale/bo/LC_MESSAGES @dir usr/share/locale/br/LC_MESSAGES @dir usr/share/locale/bra/LC_MESSAGES @dir usr/share/locale/btk/LC_MESSAGES @dir usr/share/locale/bua/LC_MESSAGES @dir usr/share/locale/bug/LC_MESSAGES @dir usr/share/locale/byn/LC_MESSAGES @dir usr/share/locale/ca_ES/LC_MESSAGES @dir usr/share/locale/ca_ES@valencian/LC_MESSAGES @dir usr/share/locale/cad/LC_MESSAGES @dir usr/share/locale/cai/LC_MESSAGES @dir usr/share/locale/car/LC_MESSAGES @dir usr/share/locale/cau/LC_MESSAGES @dir usr/share/locale/ce/LC_MESSAGES @dir usr/share/locale/ceb/LC_MESSAGES @dir usr/share/locale/cel/LC_MESSAGES @dir usr/share/locale/ch/LC_MESSAGES @dir usr/share/locale/chb/LC_MESSAGES @dir usr/share/locale/chg/LC_MESSAGES @dir usr/share/locale/chk/LC_MESSAGES @dir usr/share/locale/chm/LC_MESSAGES @dir usr/share/locale/chn/LC_MESSAGES @dir usr/share/locale/cho/LC_MESSAGES @dir usr/share/locale/chp/LC_MESSAGES @dir usr/share/locale/chr/LC_MESSAGES @dir usr/share/locale/chy/LC_MESSAGES @dir usr/share/locale/cmc/LC_MESSAGES @dir usr/share/locale/co/LC_MESSAGES @dir usr/share/locale/cop/LC_MESSAGES @dir usr/share/locale/cpe/LC_MESSAGES @dir usr/share/locale/cpf/LC_MESSAGES @dir usr/share/locale/cpp/LC_MESSAGES @dir usr/share/locale/cr/LC_MESSAGES @dir usr/share/locale/crh/LC_MESSAGES @dir usr/share/locale/crp/LC_MESSAGES @dir usr/share/locale/cs_CZ/LC_MESSAGES @dir usr/share/locale/csb/LC_MESSAGES @dir usr/share/locale/cu/LC_MESSAGES @dir usr/share/locale/cus/LC_MESSAGES @dir usr/share/locale/cv/LC_MESSAGES @dir usr/share/locale/dak/LC_MESSAGES @dir usr/share/locale/dar/LC_MESSAGES @dir usr/share/locale/day/LC_MESSAGES @dir usr/share/locale/de_AT/LC_MESSAGES @dir usr/share/locale/de_CH/LC_MESSAGES @dir usr/share/locale/de_DE/LC_MESSAGES @dir usr/share/locale/default/LC_MESSAGES @dir usr/share/locale/del/LC_MESSAGES @dir usr/share/locale/den/LC_MESSAGES @dir usr/share/locale/dgr/LC_MESSAGES @dir usr/share/locale/din/LC_MESSAGES @dir usr/share/locale/doi/LC_MESSAGES @dir usr/share/locale/dra/LC_MESSAGES @dir usr/share/locale/dsb/LC_MESSAGES @dir usr/share/locale/dua/LC_MESSAGES @dir usr/share/locale/dum/LC_MESSAGES @dir usr/share/locale/dv/LC_MESSAGES @dir usr/share/locale/dyu/LC_MESSAGES @dir usr/share/locale/ee/LC_MESSAGES @dir usr/share/locale/efi/LC_MESSAGES @dir usr/share/locale/egy/LC_MESSAGES @dir usr/share/locale/eka/LC_MESSAGES @dir usr/share/locale/el_GR/LC_MESSAGES @dir usr/share/locale/elx/LC_MESSAGES @dir usr/share/locale/en_AU/LC_MESSAGES @dir usr/share/locale/en_NZ/LC_MESSAGES @dir usr/share/locale/enm/LC_MESSAGES @dir usr/share/locale/es_AR/LC_MESSAGES @dir usr/share/locale/es_CL/LC_MESSAGES @dir usr/share/locale/es_CO/LC_MESSAGES @dir usr/share/locale/es_CR/LC_MESSAGES @dir usr/share/locale/es_DO/LC_MESSAGES @dir usr/share/locale/es_EC/LC_MESSAGES @dir usr/share/locale/es_ES/LC_MESSAGES @dir usr/share/locale/es_GT/LC_MESSAGES @dir usr/share/locale/es_HN/LC_MESSAGES @dir usr/share/locale/es_MX/LC_MESSAGES @dir usr/share/locale/es_NI/LC_MESSAGES @dir usr/share/locale/es_PA/LC_MESSAGES @dir usr/share/locale/es_PE/LC_MESSAGES @dir usr/share/locale/es_PR/LC_MESSAGES @dir usr/share/locale/es_SV/LC_MESSAGES @dir usr/share/locale/es_UY/LC_MESSAGES @dir usr/share/locale/es_VE/LC_MESSAGES @dir usr/share/locale/et_EE/LC_MESSAGES @dir usr/share/locale/eu_ES/LC_MESSAGES @dir usr/share/locale/ewo/LC_MESSAGES @dir usr/share/locale/fa_IR/LC_MESSAGES @dir usr/share/locale/fan/LC_MESSAGES @dir usr/share/locale/fat/LC_MESSAGES @dir usr/share/locale/ff/LC_MESSAGES @dir usr/share/locale/fi_FI/LC_MESSAGES @dir usr/share/locale/fil/LC_MESSAGES @dir usr/share/locale/fiu/LC_MESSAGES @dir usr/share/locale/fj/LC_MESSAGES @dir usr/share/locale/fo/LC_MESSAGES @dir usr/share/locale/fon/LC_MESSAGES @dir usr/share/locale/fr_BE/LC_MESSAGES @dir usr/share/locale/fr_CA/LC_MESSAGES @dir usr/share/locale/fr_CH/LC_MESSAGES @dir usr/share/locale/fr_FR/LC_MESSAGES @dir usr/share/locale/frm/LC_MESSAGES @dir usr/share/locale/fro/LC_MESSAGES @dir usr/share/locale/frr/LC_MESSAGES @dir usr/share/locale/frs/LC_MESSAGES @dir usr/share/locale/fur/LC_MESSAGES @dir usr/share/locale/fy/LC_MESSAGES @dir usr/share/locale/gaa/LC_MESSAGES @dir usr/share/locale/gay/LC_MESSAGES @dir usr/share/locale/gba/LC_MESSAGES @dir usr/share/locale/gd/LC_MESSAGES @dir usr/share/locale/gem/LC_MESSAGES @dir usr/share/locale/gez/LC_MESSAGES @dir usr/share/locale/gil/LC_MESSAGES @dir usr/share/locale/gl_ES/LC_MESSAGES @dir usr/share/locale/gmh/LC_MESSAGES @dir usr/share/locale/gn/LC_MESSAGES @dir usr/share/locale/goh/LC_MESSAGES @dir usr/share/locale/gon/LC_MESSAGES @dir usr/share/locale/gor/LC_MESSAGES @dir usr/share/locale/got/LC_MESSAGES @dir usr/share/locale/grb/LC_MESSAGES @dir usr/share/locale/grc/LC_MESSAGES @dir usr/share/locale/gsw/LC_MESSAGES @dir usr/share/locale/gv/LC_MESSAGES @dir usr/share/locale/gwi/LC_MESSAGES @dir usr/share/locale/ha/LC_MESSAGES @dir usr/share/locale/hai/LC_MESSAGES @dir usr/share/locale/haw/LC_MESSAGES @dir usr/share/locale/he_IL/LC_MESSAGES @dir usr/share/locale/hil/LC_MESSAGES @dir usr/share/locale/him/LC_MESSAGES @dir usr/share/locale/hit/LC_MESSAGES @dir usr/share/locale/hmn/LC_MESSAGES @dir usr/share/locale/ho/LC_MESSAGES @dir usr/share/locale/hr_HR/LC_MESSAGES @dir usr/share/locale/hsb/LC_MESSAGES @dir usr/share/locale/ht/LC_MESSAGES @dir usr/share/locale/hu_HU/LC_MESSAGES @dir usr/share/locale/hup/LC_MESSAGES @dir usr/share/locale/hz/LC_MESSAGES @dir usr/share/locale/ia/LC_MESSAGES @dir usr/share/locale/iba/LC_MESSAGES @dir usr/share/locale/ie/LC_MESSAGES @dir usr/share/locale/ig/LC_MESSAGES @dir usr/share/locale/ii/LC_MESSAGES @dir usr/share/locale/ijo/LC_MESSAGES @dir usr/share/locale/ik/LC_MESSAGES @dir usr/share/locale/ilo/LC_MESSAGES @dir usr/share/locale/inc/LC_MESSAGES @dir usr/share/locale/ine/LC_MESSAGES @dir usr/share/locale/inh/LC_MESSAGES @dir usr/share/locale/io/LC_MESSAGES @dir usr/share/locale/ira/LC_MESSAGES @dir usr/share/locale/iro/LC_MESSAGES @dir usr/share/locale/it_CH/LC_MESSAGES @dir usr/share/locale/it_IT/LC_MESSAGES @dir usr/share/locale/iu/LC_MESSAGES @dir usr/share/locale/ja_JP/LC_MESSAGES @dir usr/share/locale/jbo/LC_MESSAGES @dir usr/share/locale/jpr/LC_MESSAGES @dir usr/share/locale/jrb/LC_MESSAGES @dir usr/share/locale/jv/LC_MESSAGES @dir usr/share/locale/kaa/LC_MESSAGES @dir usr/share/locale/kab/LC_MESSAGES @dir usr/share/locale/kac/LC_MESSAGES @dir usr/share/locale/kam/LC_MESSAGES @dir usr/share/locale/kar/LC_MESSAGES @dir usr/share/locale/kaw/LC_MESSAGES @dir usr/share/locale/kbd/LC_MESSAGES @dir usr/share/locale/kg/LC_MESSAGES @dir usr/share/locale/kha/LC_MESSAGES @dir usr/share/locale/khi/LC_MESSAGES @dir usr/share/locale/kho/LC_MESSAGES @dir usr/share/locale/ki/LC_MESSAGES @dir usr/share/locale/kj/LC_MESSAGES @dir usr/share/locale/kl/LC_MESSAGES @dir usr/share/locale/km/LC_MESSAGES @dir usr/share/locale/kmb/LC_MESSAGES @dir usr/share/locale/ko_KR/LC_MESSAGES @dir usr/share/locale/kok/LC_MESSAGES @dir usr/share/locale/kos/LC_MESSAGES @dir usr/share/locale/kpe/LC_MESSAGES @dir usr/share/locale/kr/LC_MESSAGES @dir usr/share/locale/krc/LC_MESSAGES @dir usr/share/locale/krl/LC_MESSAGES @dir usr/share/locale/kro/LC_MESSAGES @dir usr/share/locale/kru/LC_MESSAGES @dir usr/share/locale/ks/LC_MESSAGES @dir usr/share/locale/ks@devanagari/LC_MESSAGES @dir usr/share/locale/kum/LC_MESSAGES @dir usr/share/locale/kut/LC_MESSAGES @dir usr/share/locale/kv/LC_MESSAGES @dir usr/share/locale/kw/LC_MESSAGES @dir usr/share/locale/la/LC_MESSAGES @dir usr/share/locale/lad/LC_MESSAGES @dir usr/share/locale/lah/LC_MESSAGES @dir usr/share/locale/lam/LC_MESSAGES @dir usr/share/locale/lb/LC_MESSAGES @dir usr/share/locale/lez/LC_MESSAGES @dir usr/share/locale/li/LC_MESSAGES @dir usr/share/locale/ln/LC_MESSAGES @dir usr/share/locale/lo/LC_MESSAGES @dir usr/share/locale/lol/LC_MESSAGES @dir usr/share/locale/loz/LC_MESSAGES @dir usr/share/locale/lu/LC_MESSAGES @dir usr/share/locale/lua/LC_MESSAGES @dir usr/share/locale/lui/LC_MESSAGES @dir usr/share/locale/lun/LC_MESSAGES @dir usr/share/locale/luo/LC_MESSAGES @dir usr/share/locale/lus/LC_MESSAGES @dir usr/share/locale/lv_LV/LC_MESSAGES @dir usr/share/locale/mad/LC_MESSAGES @dir usr/share/locale/mag/LC_MESSAGES @dir usr/share/locale/mak/LC_MESSAGES @dir usr/share/locale/man/LC_MESSAGES @dir usr/share/locale/map/LC_MESSAGES @dir usr/share/locale/mas/LC_MESSAGES @dir usr/share/locale/mdf/LC_MESSAGES @dir usr/share/locale/mdr/LC_MESSAGES @dir usr/share/locale/men/LC_MESSAGES @dir usr/share/locale/mga/LC_MESSAGES @dir usr/share/locale/mh/LC_MESSAGES @dir usr/share/locale/mi/LC_MESSAGES @dir usr/share/locale/mic/LC_MESSAGES @dir usr/share/locale/min/LC_MESSAGES @dir usr/share/locale/mis/LC_MESSAGES @dir usr/share/locale/mkh/LC_MESSAGES @dir usr/share/locale/mnc/LC_MESSAGES @dir usr/share/locale/mni/LC_MESSAGES @dir usr/share/locale/mno/LC_MESSAGES @dir usr/share/locale/mo/LC_MESSAGES @dir usr/share/locale/moh/LC_MESSAGES @dir usr/share/locale/mos/LC_MESSAGES @dir usr/share/locale/ms_MY/LC_MESSAGES @dir usr/share/locale/mt/LC_MESSAGES @dir usr/share/locale/mul/LC_MESSAGES @dir usr/share/locale/mun/LC_MESSAGES @dir usr/share/locale/mus/LC_MESSAGES @dir usr/share/locale/mwl/LC_MESSAGES @dir usr/share/locale/mwr/LC_MESSAGES @dir usr/share/locale/my/LC_MESSAGES @dir usr/share/locale/my_MM/LC_MESSAGES @dir usr/share/locale/myn/LC_MESSAGES @dir usr/share/locale/myv/LC_MESSAGES @dir usr/share/locale/na/LC_MESSAGES @dir usr/share/locale/nah/LC_MESSAGES @dir usr/share/locale/nai/LC_MESSAGES @dir usr/share/locale/nap/LC_MESSAGES @dir usr/share/locale/nb_NO/LC_MESSAGES @dir usr/share/locale/nd/LC_MESSAGES @dir usr/share/locale/nds@NFE/LC_MESSAGES @dir usr/share/locale/nds_DE/LC_MESSAGES @dir usr/share/locale/new/LC_MESSAGES @dir usr/share/locale/ng/LC_MESSAGES @dir usr/share/locale/nia/LC_MESSAGES @dir usr/share/locale/nic/LC_MESSAGES @dir usr/share/locale/niu/LC_MESSAGES @dir usr/share/locale/nl_BE/LC_MESSAGES @dir usr/share/locale/nl_NL/LC_MESSAGES @dir usr/share/locale/no/LC_MESSAGES @dir usr/share/locale/nog/LC_MESSAGES @dir usr/share/locale/non/LC_MESSAGES @dir usr/share/locale/nqo/LC_MESSAGES @dir usr/share/locale/nr/LC_MESSAGES @dir usr/share/locale/nso/LC_MESSAGES @dir usr/share/locale/nub/LC_MESSAGES @dir usr/share/locale/nv/LC_MESSAGES @dir usr/share/locale/nwc/LC_MESSAGES @dir usr/share/locale/ny/LC_MESSAGES @dir usr/share/locale/nym/LC_MESSAGES @dir usr/share/locale/nyn/LC_MESSAGES @dir usr/share/locale/nyo/LC_MESSAGES @dir usr/share/locale/nzi/LC_MESSAGES @dir usr/share/locale/oj/LC_MESSAGES @dir usr/share/locale/om/LC_MESSAGES @dir usr/share/locale/os/LC_MESSAGES @dir usr/share/locale/osa/LC_MESSAGES @dir usr/share/locale/ota/LC_MESSAGES @dir usr/share/locale/oto/LC_MESSAGES @dir usr/share/locale/paa/LC_MESSAGES @dir usr/share/locale/pag/LC_MESSAGES @dir usr/share/locale/pal/LC_MESSAGES @dir usr/share/locale/pam/LC_MESSAGES @dir usr/share/locale/pap/LC_MESSAGES @dir usr/share/locale/pau/LC_MESSAGES @dir usr/share/locale/peo/LC_MESSAGES @dir usr/share/locale/phi/LC_MESSAGES @dir usr/share/locale/phn/LC_MESSAGES @dir usr/share/locale/pi/LC_MESSAGES @dir usr/share/locale/pl_PL/LC_MESSAGES @dir usr/share/locale/pon/LC_MESSAGES @dir usr/share/locale/pra/LC_MESSAGES @dir usr/share/locale/pro/LC_MESSAGES @dir usr/share/locale/pt_PT/LC_MESSAGES @dir usr/share/locale/qaa-qtz/LC_MESSAGES @dir usr/share/locale/qu/LC_MESSAGES @dir usr/share/locale/raj/LC_MESSAGES @dir usr/share/locale/rap/LC_MESSAGES @dir usr/share/locale/rar/LC_MESSAGES @dir usr/share/locale/rm/LC_MESSAGES @dir usr/share/locale/rn/LC_MESSAGES @dir usr/share/locale/roa/LC_MESSAGES @dir usr/share/locale/rom/LC_MESSAGES @dir usr/share/locale/ru_RU/LC_MESSAGES @dir usr/share/locale/rup/LC_MESSAGES @dir usr/share/locale/sa/LC_MESSAGES @dir usr/share/locale/sad/LC_MESSAGES @dir usr/share/locale/sah/LC_MESSAGES @dir usr/share/locale/sai/LC_MESSAGES @dir usr/share/locale/sal/LC_MESSAGES @dir usr/share/locale/sam/LC_MESSAGES @dir usr/share/locale/sas/LC_MESSAGES @dir usr/share/locale/sat/LC_MESSAGES @dir usr/share/locale/sc/LC_MESSAGES @dir usr/share/locale/scn/LC_MESSAGES @dir usr/share/locale/sco/LC_MESSAGES @dir usr/share/locale/sd/LC_MESSAGES @dir usr/share/locale/se/LC_MESSAGES @dir usr/share/locale/sel/LC_MESSAGES @dir usr/share/locale/sem/LC_MESSAGES @dir usr/share/locale/sg/LC_MESSAGES @dir usr/share/locale/sga/LC_MESSAGES @dir usr/share/locale/sgn/LC_MESSAGES @dir usr/share/locale/shn/LC_MESSAGES @dir usr/share/locale/sid/LC_MESSAGES @dir usr/share/locale/sio/LC_MESSAGES @dir usr/share/locale/sit/LC_MESSAGES @dir usr/share/locale/sl_SI/LC_MESSAGES @dir usr/share/locale/sla/LC_MESSAGES @dir usr/share/locale/sm/LC_MESSAGES @dir usr/share/locale/sma/LC_MESSAGES @dir usr/share/locale/smi/LC_MESSAGES @dir usr/share/locale/smj/LC_MESSAGES @dir usr/share/locale/smn/LC_MESSAGES @dir usr/share/locale/sms/LC_MESSAGES @dir usr/share/locale/sn/LC_MESSAGES @dir usr/share/locale/snk/LC_MESSAGES @dir usr/share/locale/so/LC_MESSAGES @dir usr/share/locale/sog/LC_MESSAGES @dir usr/share/locale/son/LC_MESSAGES @dir usr/share/locale/sq_AL/LC_MESSAGES @dir usr/share/locale/sr@Latn/LC_MESSAGES @dir usr/share/locale/sr@ijekavian/LC_MESSAGES @dir usr/share/locale/sr@ijekavianlatin/LC_MESSAGES @dir usr/share/locale/sr_RS/LC_MESSAGES @dir usr/share/locale/srn/LC_MESSAGES @dir usr/share/locale/srr/LC_MESSAGES @dir usr/share/locale/ss/LC_MESSAGES @dir usr/share/locale/ssa/LC_MESSAGES @dir usr/share/locale/st/LC_MESSAGES @dir usr/share/locale/su/LC_MESSAGES @dir usr/share/locale/suk/LC_MESSAGES @dir usr/share/locale/sus/LC_MESSAGES @dir usr/share/locale/sux/LC_MESSAGES @dir usr/share/locale/sv_SE/LC_MESSAGES @dir usr/share/locale/sw/LC_MESSAGES @dir usr/share/locale/syc/LC_MESSAGES @dir usr/share/locale/syr/LC_MESSAGES @dir usr/share/locale/tai/LC_MESSAGES @dir usr/share/locale/tem/LC_MESSAGES @dir usr/share/locale/ter/LC_MESSAGES @dir usr/share/locale/tet/LC_MESSAGES @dir usr/share/locale/tg/LC_MESSAGES @dir usr/share/locale/ti/LC_MESSAGES @dir usr/share/locale/tig/LC_MESSAGES @dir usr/share/locale/tiv/LC_MESSAGES @dir usr/share/locale/tk/LC_MESSAGES @dir usr/share/locale/tkl/LC_MESSAGES @dir usr/share/locale/tlh/LC_MESSAGES @dir usr/share/locale/tli/LC_MESSAGES @dir usr/share/locale/tmh/LC_MESSAGES @dir usr/share/locale/tn/LC_MESSAGES @dir usr/share/locale/to/LC_MESSAGES @dir usr/share/locale/tog/LC_MESSAGES @dir usr/share/locale/tpi/LC_MESSAGES @dir usr/share/locale/ts/LC_MESSAGES @dir usr/share/locale/tsi/LC_MESSAGES @dir usr/share/locale/tum/LC_MESSAGES @dir usr/share/locale/tup/LC_MESSAGES @dir usr/share/locale/tut/LC_MESSAGES @dir usr/share/locale/tvl/LC_MESSAGES @dir usr/share/locale/tw/LC_MESSAGES @dir usr/share/locale/ty/LC_MESSAGES @dir usr/share/locale/tyv/LC_MESSAGES @dir usr/share/locale/udm/LC_MESSAGES @dir usr/share/locale/uga/LC_MESSAGES @dir usr/share/locale/uk_UA/LC_MESSAGES @dir usr/share/locale/umb/LC_MESSAGES @dir usr/share/locale/und/LC_MESSAGES @dir usr/share/locale/ur/LC_MESSAGES @dir usr/share/locale/ur_PK/LC_MESSAGES @dir usr/share/locale/uz/LC_MESSAGES @dir usr/share/locale/uz@Latn/LC_MESSAGES @dir usr/share/locale/uz@cyrillic/LC_MESSAGES @dir usr/share/locale/vai/LC_MESSAGES @dir usr/share/locale/ve/LC_MESSAGES @dir usr/share/locale/vo/LC_MESSAGES @dir usr/share/locale/vot/LC_MESSAGES @dir usr/share/locale/wak/LC_MESSAGES @dir usr/share/locale/wal/LC_MESSAGES @dir usr/share/locale/war/LC_MESSAGES @dir usr/share/locale/was/LC_MESSAGES @dir usr/share/locale/wen/LC_MESSAGES @dir usr/share/locale/wo/LC_MESSAGES @dir usr/share/locale/xal/LC_MESSAGES @dir usr/share/locale/yao/LC_MESSAGES @dir usr/share/locale/yap/LC_MESSAGES @dir usr/share/locale/yo/LC_MESSAGES @dir usr/share/locale/ypk/LC_MESSAGES @dir usr/share/locale/za/LC_MESSAGES @dir usr/share/locale/zap/LC_MESSAGES @dir usr/share/locale/zbl/LC_MESSAGES @dir usr/share/locale/zen/LC_MESSAGES @dir usr/share/locale/zh/LC_MESSAGES @dir usr/share/locale/zh_CN.GB2312/LC_MESSAGES @dir usr/share/locale/zh_TW.Big5/LC_MESSAGES @dir usr/share/locale/znd/LC_MESSAGES @dir usr/share/locale/zu/LC_MESSAGES @dir usr/share/locale/zun/LC_MESSAGES @dir usr/share/locale/zxx/LC_MESSAGES @dir usr/share/locale/zza/LC_MESSAGES @dir usr/share/man/man0p @dir usr/share/man/man1 @dir usr/share/man/man1p @dir usr/share/man/man1x @dir usr/share/man/man2 @dir usr/share/man/man2x @dir usr/share/man/man3 @dir usr/share/man/man3p @dir usr/share/man/man3x @dir usr/share/man/man4 @dir usr/share/man/man4x @dir usr/share/man/man5 @dir usr/share/man/man5x @dir usr/share/man/man6 @dir usr/share/man/man6x @dir usr/share/man/man7 @dir usr/share/man/man7x @dir usr/share/man/man8 @dir usr/share/man/man8x @dir usr/share/man/man9 @dir usr/share/man/man9x @dir usr/share/man/mann @dir usr/share/mime-info @dir usr/share/misc @dir usr/share/omf @dir usr/share/pixmaps @dir usr/share/sounds @dir usr/share/themes @dir usr/share/xsessions @dir usr/src/debug @dir usr/src/kernels @dir var/cache/ldconfig @dir var/db @dir var/empty @dir var/games @dir var/lib/games @dir var/lib/misc @dir var/local @dir var/lock/subsys @dir var/nis @dir var/opt @dir var/preserve @dir var/spool/lpd @dir var/spool/mail @dir var/yp Index: head/ftp/linux-c6-curl/Makefile =================================================================== --- head/ftp/linux-c6-curl/Makefile (revision 413167) +++ head/ftp/linux-c6-curl/Makefile (revision 413168) @@ -1,30 +1,30 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= curl PORTVERSION= 7.19.7 PORTREVISION= 5 CATEGORIES= ftp linux -DISTFILES= curl-${PORTVERSION}-${RPMVERSION}.${LINUX_RPM_ARCH}.rpm \ - libcurl-${PORTVERSION}-${RPMVERSION}.${LINUX_RPM_ARCH}.rpm +DISTFILES= curl-${PORTVERSION}-${RPMVERSION}.${LINUX_RPM_ARCH}.rpm +LIB_DISTFILES= libcurl-${PORTVERSION}-${RPMVERSION}.${LINUX_RPM_ARCH}.rpm MASTER_SITES= CENTOS_LINUX MAINTAINER= emulation@FreeBSD.org COMMENT= Command line tool for transferring files with URL syntax (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-curl-[0-9]* linux-f10-curl-[0-9]* ONLY_FOR_ARCHS= i386 amd64 USE_LINUX= c6 USE_LINUX_APPS= openldap libssh2 # cyrus-sasl2 -USE_LINUX_RPM= yes +USE_LINUX_RPM= nolib RPMVERSION= 46.el6 BRANDELF_FILES= usr/bin/curl USE_LDCONFIG= yes DOCSDIR= usr/share/doc/${PORTNAME}-${PORTVERSION} PORTDOCS= BUGS COPYING FEATURES README TODO CHANGES FAQ MANUAL RESOURCES TheArtOfHttpScripting DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr .include Index: head/ftp/linux-c6-curl/distinfo.x86_64 =================================================================== --- head/ftp/linux-c6-curl/distinfo.x86_64 (revision 413167) +++ head/ftp/linux-c6-curl/distinfo.x86_64 (revision 413168) @@ -1,6 +1,8 @@ SHA256 (rpm/x86_64/centos/6.7/curl-7.19.7-46.el6.x86_64.rpm) = 5995862f1c8c444c9a784f93be3732e556a94f78385a7e2e9ebc8a2739a01900 SIZE (rpm/x86_64/centos/6.7/curl-7.19.7-46.el6.x86_64.rpm) = 200684 SHA256 (rpm/x86_64/centos/6.7/libcurl-7.19.7-46.el6.x86_64.rpm) = aa2c65d7a4dc4976b41d19d39cf79683c801275339e7d2ddfe6a8a7cd138a70b SIZE (rpm/x86_64/centos/6.7/libcurl-7.19.7-46.el6.x86_64.rpm) = 172460 +SHA256 (rpm/x86_64/centos/6.7/libcurl-7.19.7-46.el6.i686.rpm) = 040feacd119f37c0c0aa4d70080320b51d228603b71cffb2645d2d5471aadafb +SIZE (rpm/x86_64/centos/6.7/libcurl-7.19.7-46.el6.i686.rpm) = 179440 SHA256 (rpm/x86_64/centos/6.7/curl-7.19.7-46.el6.src.rpm) = daa59e14fc71a089b31cf856b454513648b0b12b921b8c9418b31a5fd48a5986 SIZE (rpm/x86_64/centos/6.7/curl-7.19.7-46.el6.src.rpm) = 2160669 Index: head/ftp/linux-c6-curl/pkg-plist.x86_64 =================================================================== --- head/ftp/linux-c6-curl/pkg-plist.x86_64 (revision 413167) +++ head/ftp/linux-c6-curl/pkg-plist.x86_64 (revision 413168) @@ -1,4 +1,6 @@ usr/bin/curl +usr/lib/libcurl.so.4 +usr/lib/libcurl.so.4.1.1 usr/lib64/libcurl.so.4 usr/lib64/libcurl.so.4.1.1 usr/share/man/man1/curl.1.gz Property changes on: head/ftp/linux-c6-curl/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/graphics/linux-c6-cairo/distinfo.x86_64 =================================================================== --- head/graphics/linux-c6-cairo/distinfo.x86_64 (revision 413167) +++ head/graphics/linux-c6-cairo/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/cairo-1.8.8-6.el6_6.x86_64.rpm) = dcdfc02d7980ed7c97f04223e98919281e1a5bd21eb31dc6e60e36102bbec4ab SIZE (rpm/x86_64/centos/6.7/cairo-1.8.8-6.el6_6.x86_64.rpm) = 316108 +SHA256 (rpm/x86_64/centos/6.7/cairo-1.8.8-6.el6_6.i686.rpm) = 9275eb925636fd986d77b2bbc91745d053b94cf6d8fa8791b54a7c5e5cc3abee +SIZE (rpm/x86_64/centos/6.7/cairo-1.8.8-6.el6_6.i686.rpm) = 326752 SHA256 (rpm/x86_64/centos/6.7/cairo-1.8.8-6.el6_6.src.rpm) = 16844fe17f9da7685100214742f27d7ff47932c78f03be2c0981cfb29ce0d00c SIZE (rpm/x86_64/centos/6.7/cairo-1.8.8-6.el6_6.src.rpm) = 6662981 Index: head/graphics/linux-c6-cairo/pkg-plist.x86_64 =================================================================== --- head/graphics/linux-c6-cairo/pkg-plist.x86_64 (revision 413167) +++ head/graphics/linux-c6-cairo/pkg-plist.x86_64 (revision 413168) @@ -1,2 +1,4 @@ +usr/lib/libcairo.so.2 +usr/lib/libcairo.so.2.10800.8 usr/lib64/libcairo.so.2 usr/lib64/libcairo.so.2.10800.8 Property changes on: head/graphics/linux-c6-cairo/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/graphics/linux-c6-dri/Makefile =================================================================== --- head/graphics/linux-c6-dri/Makefile (revision 413167) +++ head/graphics/linux-c6-dri/Makefile (revision 413168) @@ -1,33 +1,34 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= dri PORTVERSION= 10.4.3 CATEGORIES= graphics linux -DISTFILES= mesa-libGL-10.4.3-1.el6.${LINUX_RPM_ARCH}.rpm \ +DISTFILES= # +LIB_DISTFILES= mesa-libGL-10.4.3-1.el6.${LINUX_RPM_ARCH}.rpm \ mesa-libGLU-10.4.3-1.el6.${LINUX_RPM_ARCH}.rpm \ mesa-dri-drivers-10.4.3-1.el6.${LINUX_RPM_ARCH}.rpm \ libdrm-2.4.59-2.el6.${LINUX_RPM_ARCH}.rpm \ freeglut-2.6.0-1.el6.${LINUX_RPM_ARCH}.rpm MAINTAINER= emulation@FreeBSD.org COMMENT= Mesa libGL runtime libraries (Linux CentOS ${LINUX_DIST_VER}) ALWAYS_KEEP_DISTFILES= YES CONFLICTS= linux_dri-[0-9]* linux_dri-devel-[0-9]* linux-f10-dri-[0-9]* linux-dri-[0-9]* ONLY_FOR_ARCHS= i386 amd64 .if defined(PACKAGE_BUILDING) SRC_DISTFILES= mesa-10.4.3-1.el6.src.rpm:SOURCE \ libdrm-2.4.59-2.el6.src.rpm:SOURCE \ freeglut-2.6.0-1.el6.src.rpm:SOURCE .endif USE_LINUX= c6 USE_LINUX_APPS= xorglibs USE_LINUX_RPM= yes USE_LDCONFIG= yes DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr .include Index: head/graphics/linux-c6-dri/distinfo.x86_64 =================================================================== --- head/graphics/linux-c6-dri/distinfo.x86_64 (revision 413167) +++ head/graphics/linux-c6-dri/distinfo.x86_64 (revision 413168) @@ -1,16 +1,26 @@ SHA256 (rpm/x86_64/centos/6.7/mesa-libGL-10.4.3-1.el6.x86_64.rpm) = 357485a99c3fd6a0541e40b6dc4d48eb3c105322faa2f90574bea9650492363f SIZE (rpm/x86_64/centos/6.7/mesa-libGL-10.4.3-1.el6.x86_64.rpm) = 149044 SHA256 (rpm/x86_64/centos/6.7/mesa-libGLU-10.4.3-1.el6.x86_64.rpm) = 49d3865cb194d7d3c77127991fd82cdc4e106fa371ee24728a68f9b7f1e88345 SIZE (rpm/x86_64/centos/6.7/mesa-libGLU-10.4.3-1.el6.x86_64.rpm) = 201608 SHA256 (rpm/x86_64/centos/6.7/mesa-dri-drivers-10.4.3-1.el6.x86_64.rpm) = af271d9eb58227e3bfd2990c628504680e8f428a6c875deac5a788ce5fdcca0e SIZE (rpm/x86_64/centos/6.7/mesa-dri-drivers-10.4.3-1.el6.x86_64.rpm) = 14406016 SHA256 (rpm/x86_64/centos/6.7/libdrm-2.4.59-2.el6.x86_64.rpm) = 5120b133713eae491d4a7843da4bad0df71ca02a033d5fb43c7f3a530e9cb254 SIZE (rpm/x86_64/centos/6.7/libdrm-2.4.59-2.el6.x86_64.rpm) = 127544 SHA256 (rpm/x86_64/centos/6.7/freeglut-2.6.0-1.el6.x86_64.rpm) = 5d4fd35678aae535319678f90b11c345ee9e1e415be2c2de05d8838adb8153bd SIZE (rpm/x86_64/centos/6.7/freeglut-2.6.0-1.el6.x86_64.rpm) = 175576 +SHA256 (rpm/x86_64/centos/6.7/mesa-libGL-10.4.3-1.el6.i686.rpm) = ca249ce2d7ed42089009f43fc975709f37d10c9f87575a0ef524dcfe12d12243 +SIZE (rpm/x86_64/centos/6.7/mesa-libGL-10.4.3-1.el6.i686.rpm) = 168296 +SHA256 (rpm/x86_64/centos/6.7/mesa-libGLU-10.4.3-1.el6.i686.rpm) = 96342b291392e8f67bbc4f0e4ec5dcbddb61ffd5b01d5781adb61470be0202b9 +SIZE (rpm/x86_64/centos/6.7/mesa-libGLU-10.4.3-1.el6.i686.rpm) = 198232 +SHA256 (rpm/x86_64/centos/6.7/mesa-dri-drivers-10.4.3-1.el6.i686.rpm) = 4f89527d063628307bd02034e92e279fc28d3d1334e5f127f7dd6b1d12fa4e53 +SIZE (rpm/x86_64/centos/6.7/mesa-dri-drivers-10.4.3-1.el6.i686.rpm) = 14544448 +SHA256 (rpm/x86_64/centos/6.7/libdrm-2.4.59-2.el6.i686.rpm) = 74c97381878c27b8d1a3ef158360fb81a6380b1851ffb06f08759298a63b33bb +SIZE (rpm/x86_64/centos/6.7/libdrm-2.4.59-2.el6.i686.rpm) = 129676 +SHA256 (rpm/x86_64/centos/6.7/freeglut-2.6.0-1.el6.i686.rpm) = fa6cb446baf0b4e02a68c7260e3a2186fc2bb208293d39ccb48dd8ed9c61b606 +SIZE (rpm/x86_64/centos/6.7/freeglut-2.6.0-1.el6.i686.rpm) = 170044 SHA256 (rpm/x86_64/centos/6.7/mesa-10.4.3-1.el6.src.rpm) = 4d591bd3cefe88d5c54f5eeb0ac685a46c9df9036c6111bcbd773f3823cbea09 SIZE (rpm/x86_64/centos/6.7/mesa-10.4.3-1.el6.src.rpm) = 24458958 SHA256 (rpm/x86_64/centos/6.7/libdrm-2.4.59-2.el6.src.rpm) = 901e4e5e124332ec995ac6e46d54a86130a03882767066f7f9a88d0bc643045b SIZE (rpm/x86_64/centos/6.7/libdrm-2.4.59-2.el6.src.rpm) = 634759 SHA256 (rpm/x86_64/centos/6.7/freeglut-2.6.0-1.el6.src.rpm) = 04ca4b3c4917110e7878df3d82f52639a76274ed3c0611ff72b86ea5e242d037 SIZE (rpm/x86_64/centos/6.7/freeglut-2.6.0-1.el6.src.rpm) = 2185780 Index: head/graphics/linux-c6-dri/pkg-plist.x86_64 =================================================================== --- head/graphics/linux-c6-dri/pkg-plist.x86_64 (revision 413167) +++ head/graphics/linux-c6-dri/pkg-plist.x86_64 (revision 413168) @@ -1,45 +1,72 @@ lib/udev/rules.d/91-drm-modeset.rules +usr/lib/dri/i915_dri.so +usr/lib/dri/i965_dri.so +usr/lib/dri/r200_dri.so +usr/lib/dri/r300_dri.so +usr/lib/dri/r600_dri.so +usr/lib/dri/radeon_dri.so +usr/lib/dri/radeonsi_dri.so +usr/lib/dri/swrast_dri.so +usr/lib/libGL.so.1 +usr/lib/libGL.so.1.2.0 +usr/lib/libGLU.so.1 +usr/lib/libGLU.so.1.3.1 +usr/lib/libdrm.so.2 +usr/lib/libdrm.so.2.4.0 +usr/lib/libdrm_intel.so.1 +usr/lib/libdrm_intel.so.1.0.0 +usr/lib/libdrm_nouveau.so.1 +usr/lib/libdrm_nouveau.so.1.0.0 +usr/lib/libdrm_nouveau2.so.2 +usr/lib/libdrm_nouveau2.so.2.0.0 +usr/lib/libdrm_radeon.so.1 +usr/lib/libdrm_radeon.so.1.0.1 +usr/lib/libglapi.so +usr/lib/libglapi.so.0 +usr/lib/libglapi.so.0.0.0 +usr/lib/libglut.so.3 +usr/lib/libglut.so.3.9.0 usr/lib64/dri/i915_dri.so usr/lib64/dri/i965_dri.so usr/lib64/dri/r200_dri.so usr/lib64/dri/r300_dri.so usr/lib64/dri/r600_dri.so usr/lib64/dri/radeon_dri.so usr/lib64/dri/radeonsi_dri.so usr/lib64/dri/swrast_dri.so usr/lib64/libGL.so.1 usr/lib64/libGL.so.1.2.0 usr/lib64/libGLU.so.1 usr/lib64/libGLU.so.1.3.1 usr/lib64/libdrm.so.2 usr/lib64/libdrm.so.2.4.0 usr/lib64/libdrm_intel.so.1 usr/lib64/libdrm_intel.so.1.0.0 usr/lib64/libdrm_nouveau.so.1 usr/lib64/libdrm_nouveau.so.1.0.0 usr/lib64/libdrm_nouveau2.so.2 usr/lib64/libdrm_nouveau2.so.2.0.0 usr/lib64/libdrm_radeon.so.1 usr/lib64/libdrm_radeon.so.1.0.1 usr/lib64/libglapi.so usr/lib64/libglapi.so.0 usr/lib64/libglapi.so.0.0.0 usr/lib64/libglut.so.3 usr/lib64/libglut.so.3.9.0 usr/share/doc/freeglut-2.6.0/AUTHORS usr/share/doc/freeglut-2.6.0/COPYING usr/share/doc/freeglut-2.6.0/ChangeLog usr/share/doc/freeglut-2.6.0/INSTALL usr/share/doc/freeglut-2.6.0/NEWS usr/share/doc/freeglut-2.6.0/README usr/share/doc/freeglut-2.6.0/TODO usr/share/doc/freeglut-2.6.0/download.html usr/share/doc/freeglut-2.6.0/freeglut.html usr/share/doc/freeglut-2.6.0/freeglut_logo.png usr/share/doc/freeglut-2.6.0/freeglut_user_interface.html usr/share/doc/freeglut-2.6.0/index.html usr/share/doc/freeglut-2.6.0/ogl_sm.png usr/share/doc/freeglut-2.6.0/progress.html usr/share/doc/freeglut-2.6.0/structure.html usr/share/doc/libdrm-2.4.59/README %%ETCDIR%%rc Index: head/graphics/linux-c6-dri-compat/distinfo.x86_64 =================================================================== --- head/graphics/linux-c6-dri-compat/distinfo.x86_64 (revision 413167) +++ head/graphics/linux-c6-dri-compat/distinfo.x86_64 (revision 413168) @@ -1,16 +1,26 @@ SHA256 (rpm/x86_64/centos/6.7/mesa-libGL-9.0-0.7.el6.x86_64.rpm) = 741aa6cdcbcef108396439d7d3da4bc2744c7f8140f8f0c30c88c7c3a101863e SIZE (rpm/x86_64/centos/6.7/mesa-libGL-9.0-0.7.el6.x86_64.rpm) = 165524 SHA256 (rpm/x86_64/centos/6.7/mesa-libGLU-9.0-0.7.el6.x86_64.rpm) = f74927e791d53c7e08db393c59d755ad840868555fae5e70cb0b3fc2a7b37124 SIZE (rpm/x86_64/centos/6.7/mesa-libGLU-9.0-0.7.el6.x86_64.rpm) = 230372 SHA256 (rpm/x86_64/centos/6.7/mesa-dri-drivers-9.0-0.7.el6.x86_64.rpm) = 42693dc0ed2633bbb0b7ce81bc7e6508a1b57208faf086268dba6cbeb7fa3697 SIZE (rpm/x86_64/centos/6.7/mesa-dri-drivers-9.0-0.7.el6.x86_64.rpm) = 4304200 SHA256 (rpm/x86_64/centos/6.7/libdrm-2.4.39-1.el6.x86_64.rpm) = ca88cd69ed0cfaf699dc9d4cf104ad632196cf709dad5a6325bb7be4e91c55d1 SIZE (rpm/x86_64/centos/6.7/libdrm-2.4.39-1.el6.x86_64.rpm) = 119368 SHA256 (rpm/x86_64/centos/6.7/freeglut-2.6.0-1.el6.x86_64.rpm) = 5d4fd35678aae535319678f90b11c345ee9e1e415be2c2de05d8838adb8153bd SIZE (rpm/x86_64/centos/6.7/freeglut-2.6.0-1.el6.x86_64.rpm) = 175576 +SHA256 (rpm/x86_64/centos/6.7/mesa-libGL-9.0-0.7.el6.i686.rpm) = d6118a637f7fd22307c6b781ab8571a4f08cb86d701a48c0b573f38efa123729 +SIZE (rpm/x86_64/centos/6.7/mesa-libGL-9.0-0.7.el6.i686.rpm) = 165176 +SHA256 (rpm/x86_64/centos/6.7/mesa-libGLU-9.0-0.7.el6.i686.rpm) = fafa5a79261ac4835dc6101857d86b095d13931937275ee662daf1777c9d4256 +SIZE (rpm/x86_64/centos/6.7/mesa-libGLU-9.0-0.7.el6.i686.rpm) = 226992 +SHA256 (rpm/x86_64/centos/6.7/mesa-dri-drivers-9.0-0.7.el6.i686.rpm) = f442e88fb435bce9111aeabdde9b7d0013cc4303e2ea97e2fc8e740c884bca01 +SIZE (rpm/x86_64/centos/6.7/mesa-dri-drivers-9.0-0.7.el6.i686.rpm) = 4271416 +SHA256 (rpm/x86_64/centos/6.7/libdrm-2.4.39-1.el6.i686.rpm) = 33c05516d07ca236394004b9c3fc62834d7057892fbe341f5ecee7258d49ef9b +SIZE (rpm/x86_64/centos/6.7/libdrm-2.4.39-1.el6.i686.rpm) = 121244 +SHA256 (rpm/x86_64/centos/6.7/freeglut-2.6.0-1.el6.i686.rpm) = fa6cb446baf0b4e02a68c7260e3a2186fc2bb208293d39ccb48dd8ed9c61b606 +SIZE (rpm/x86_64/centos/6.7/freeglut-2.6.0-1.el6.i686.rpm) = 170044 SHA256 (rpm/x86_64/centos/6.7/mesa-9.0-0.7.el6.src.rpm) = 83d0dde99dfc12eba3522e2edb7fde31d507c085cef9cd003b636a7c55a103f5 SIZE (rpm/x86_64/centos/6.7/mesa-9.0-0.7.el6.src.rpm) = 22910741 SHA256 (rpm/x86_64/centos/6.7/libdrm-2.4.39-1.el6.src.rpm) = ba866f47135cf1bbae8030bcc9325569a0d5d25e86ba818444a3f412ba12fc9f SIZE (rpm/x86_64/centos/6.7/libdrm-2.4.39-1.el6.src.rpm) = 533038 SHA256 (rpm/x86_64/centos/6.7/freeglut-2.6.0-1.el6.src.rpm) = 04ca4b3c4917110e7878df3d82f52639a76274ed3c0611ff72b86ea5e242d037 SIZE (rpm/x86_64/centos/6.7/freeglut-2.6.0-1.el6.src.rpm) = 2185780 Index: head/graphics/linux-c6-gdk-pixbuf2/distinfo.x86_64 =================================================================== --- head/graphics/linux-c6-gdk-pixbuf2/distinfo.x86_64 (revision 413167) +++ head/graphics/linux-c6-gdk-pixbuf2/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/gdk-pixbuf2-2.24.1-6.el6_7.x86_64.rpm) = 248633f4471b62666822d4c5da72f8995d36e6cf2e9e61b6eff73993709b793f SIZE (rpm/x86_64/centos/6.7/gdk-pixbuf2-2.24.1-6.el6_7.x86_64.rpm) = 512972 +SHA256 (rpm/x86_64/centos/6.7/gdk-pixbuf2-2.24.1-6.el6_7.i686.rpm) = 07b16ceca0ae64ba2f21b9fb2e87ecd4aeecec4fc603ef8294f89afc66480bcd +SIZE (rpm/x86_64/centos/6.7/gdk-pixbuf2-2.24.1-6.el6_7.i686.rpm) = 510288 SHA256 (rpm/x86_64/centos/6.7/gdk-pixbuf2-2.24.1-6.el6_7.src.rpm) = 56cb617816f942b83c1693e0dce4572fb432b9f8d1433fda187e39e7b764bce9 SIZE (rpm/x86_64/centos/6.7/gdk-pixbuf2-2.24.1-6.el6_7.src.rpm) = 1188220 Index: head/graphics/linux-c6-gdk-pixbuf2/pkg-plist.x86_64 =================================================================== --- head/graphics/linux-c6-gdk-pixbuf2/pkg-plist.x86_64 (revision 413167) +++ head/graphics/linux-c6-gdk-pixbuf2/pkg-plist.x86_64 (revision 413168) @@ -1,127 +1,148 @@ +usr/bin/gdk-pixbuf-query-loaders-32 usr/bin/gdk-pixbuf-query-loaders-64 usr/bin/update-gdk-pixbuf-loaders +usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-ani.so +usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-bmp.so +usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-gif.so +usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-icns.so +usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-ico.so +usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-jasper.so +usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-jpeg.so +usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-pcx.so +usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-pnm.so +usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-qtif.so +usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-ras.so +usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-tga.so +usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-tiff.so +usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-wbmp.so +usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-xbm.so +usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-xpm.so +usr/lib/libgdk_pixbuf-2.0.so.0 +usr/lib/libgdk_pixbuf-2.0.so.0.2400.1 +usr/lib/libgdk_pixbuf_xlib-2.0.so.0 +usr/lib/libgdk_pixbuf_xlib-2.0.so.0.2400.1 usr/lib64/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-ani.so usr/lib64/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-bmp.so usr/lib64/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-gif.so usr/lib64/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-icns.so usr/lib64/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-ico.so usr/lib64/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-jasper.so usr/lib64/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-jpeg.so usr/lib64/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-pcx.so usr/lib64/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-pnm.so usr/lib64/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-qtif.so usr/lib64/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-ras.so usr/lib64/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-tga.so usr/lib64/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-tiff.so usr/lib64/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-wbmp.so usr/lib64/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-xbm.so usr/lib64/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-xpm.so usr/lib64/libgdk_pixbuf-2.0.so.0 usr/lib64/libgdk_pixbuf-2.0.so.0.2400.1 usr/lib64/libgdk_pixbuf_xlib-2.0.so.0 usr/lib64/libgdk_pixbuf_xlib-2.0.so.0.2400.1 %%PORTDOCS%%usr/%%DOCSDIR%%-2.24.1/AUTHORS %%PORTDOCS%%usr/%%DOCSDIR%%-2.24.1/COPYING %%PORTDOCS%%usr/%%DOCSDIR%%-2.24.1/NEWS usr/share/locale/af/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/ang/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/ar/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/as/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/ast/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/az/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/be/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/be@latin/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/bg/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/bn/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/bn_IN/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/br/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/bs/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/ca/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/ca@valencia/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/crh/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/cs/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/cy/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/da/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/de/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/dz/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/el/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/en@shaw/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/en_CA/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/en_GB/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/eo/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/es/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/et/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/eu/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/fa/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/fi/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/fr/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/ga/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/gl/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/gu/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/he/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/hi/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/hr/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/hu/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/hy/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/ia/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/id/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/io/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/is/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/it/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/ja/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/ka/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/kn/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/ko/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/ku/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/li/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/lt/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/lv/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/mai/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/mi/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/mk/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/ml/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/mn/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/mr/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/ms/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/my/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/nb/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/nds/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/ne/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/nl/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/nn/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/nso/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/oc/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/or/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/pa/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/pl/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/ps/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/pt/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/pt_BR/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/ro/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/ru/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/si/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/sk/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/sl/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/sq/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/sr/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/sr@ije/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/sr@latin/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/sv/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/ta/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/te/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/th/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/tk/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/tr/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/tt/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/ug/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/uk/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/uz/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/uz@cyrillic/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/vi/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/wa/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/xh/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/yi/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/zh_CN/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/zh_HK/LC_MESSAGES/gdk-pixbuf.mo usr/share/locale/zh_TW/LC_MESSAGES/gdk-pixbuf.mo usr/share/man/man1/gdk-pixbuf-query-loaders.1.gz Property changes on: head/graphics/linux-c6-gdk-pixbuf2/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/graphics/linux-c6-glx-utils/Makefile =================================================================== --- head/graphics/linux-c6-glx-utils/Makefile (revision 413167) +++ head/graphics/linux-c6-glx-utils/Makefile (revision 413168) @@ -1,29 +1,29 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= glx-utils PORTVERSION= 10.4.3 CATEGORIES= graphics linux MAINTAINER= emulation@FreeBSD.org COMMENT= RPM of the GLX utils (Linux CentOS ${LINUX_DIST_VER}) DIST_SUBDIR= rpm/${LINUX_RPM_ARCH}/centos/${LINUX_DIST_VER} ONLY_FOR_ARCHS= i386 amd64 USE_LINUX= c6 -USE_LINUX_RPM= yes +USE_LINUX_RPM= nolib RPMVERSION= 1.el6 BRANDELF_DIRS= usr/bin USE_LDCONFIG= yes OPTIONS_DEFINE= NVIDIA_GL NVIDIA_GL_RUN_DEPENDS= ${LINUXBASE}/usr/lib/libGL.so.1:x11/nvidia-driver \ linux-c6-libGLU>0:graphics/linux-c6-libGLU NVIDIA_GL_USE_OFF= linux_apps=dri .if defined(PACKAGE_BUILDING) SRC_DISTFILES= mesa-${PORTVERSION}-${RPMVERSION}${SRC_SUFX}:SOURCE .endif .include Index: head/graphics/linux-c6-jpeg/Makefile =================================================================== --- head/graphics/linux-c6-jpeg/Makefile (revision 413167) +++ head/graphics/linux-c6-jpeg/Makefile (revision 413168) @@ -1,27 +1,25 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= jpeg PORTVERSION= 1.2.1 PORTREVISION= 1 CATEGORIES= graphics linux DISTNAME= lib${PORTNAME}-turbo-${PORTVERSION}-${RPMVERSION} MAINTAINER= emulation@FreeBSD.org COMMENT= RPM of the JPEG lib (Linux CentOS ${LINUX_DIST_VER}) -DIST_SUBDIR= rpm/${LINUX_RPM_ARCH}/centos/${LINUX_DIST_VER} - CONFLICTS= linux-jpeg-[0-9]* linux-f10-jpeg-[0-9]* ONLY_FOR_ARCHS= i386 amd64 USE_LINUX= c6 USE_LINUX_RPM= yes RPMVERSION= 3.el6_5 LINUX_NAME= lib${PORTNAME} BRANDELF_DIRS= usr/bin USE_LDCONFIG= yes DESCR= ${.CURDIR}/../jpeg/pkg-descr .include Index: head/graphics/linux-c6-jpeg/distinfo.x86_64 =================================================================== --- head/graphics/linux-c6-jpeg/distinfo.x86_64 (revision 413167) +++ head/graphics/linux-c6-jpeg/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/libjpeg-turbo-1.2.1-3.el6_5.x86_64.rpm) = c3dcce9a0f3cbcc5c618fd75ed57dd993b5b74bb4cb195800b5fedef501fc825 SIZE (rpm/x86_64/centos/6.7/libjpeg-turbo-1.2.1-3.el6_5.x86_64.rpm) = 178512 +SHA256 (rpm/x86_64/centos/6.7/libjpeg-turbo-1.2.1-3.el6_5.i686.rpm) = 1b2a598ac9baeccd782a2ea160f9e4d2da442577ee2c745d24f44da3fd275306 +SIZE (rpm/x86_64/centos/6.7/libjpeg-turbo-1.2.1-3.el6_5.i686.rpm) = 180776 SHA256 (rpm/x86_64/centos/6.7/libjpeg-turbo-1.2.1-3.el6_5.src.rpm) = e619abbdcebe1a4b2dacf7f3a3495380fa6d68919170c81378bead39ddbe5176 SIZE (rpm/x86_64/centos/6.7/libjpeg-turbo-1.2.1-3.el6_5.src.rpm) = 1759144 Index: head/graphics/linux-c6-jpeg/pkg-plist.x86_64 =================================================================== --- head/graphics/linux-c6-jpeg/pkg-plist.x86_64 (revision 413167) +++ head/graphics/linux-c6-jpeg/pkg-plist.x86_64 (revision 413168) @@ -1,18 +1,20 @@ usr/bin/cjpeg usr/bin/djpeg usr/bin/jpegtran usr/bin/rdjpgcom usr/bin/wrjpgcom +usr/lib/libjpeg.so.62 +usr/lib/libjpeg.so.62.0.0 usr/lib64/libjpeg.so.62 usr/lib64/libjpeg.so.62.0.0 usr/share/doc/libjpeg-turbo-1.2.1/ChangeLog.txt usr/share/doc/libjpeg-turbo-1.2.1/README usr/share/doc/libjpeg-turbo-1.2.1/README-turbo.txt usr/share/doc/libjpeg-turbo-1.2.1/change.log usr/share/doc/libjpeg-turbo-1.2.1/usage.txt usr/share/doc/libjpeg-turbo-1.2.1/wizard.txt usr/share/man/man1/cjpeg.1.gz usr/share/man/man1/djpeg.1.gz usr/share/man/man1/jpegtran.1.gz usr/share/man/man1/rdjpgcom.1.gz usr/share/man/man1/wrjpgcom.1.gz Property changes on: head/graphics/linux-c6-jpeg/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/graphics/linux-c6-libGLU/distinfo.x86_64 =================================================================== --- head/graphics/linux-c6-libGLU/distinfo.x86_64 (revision 413167) +++ head/graphics/linux-c6-libGLU/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/mesa-libGLU-10.4.3-1.el6.x86_64.rpm) = 49d3865cb194d7d3c77127991fd82cdc4e106fa371ee24728a68f9b7f1e88345 SIZE (rpm/x86_64/centos/6.7/mesa-libGLU-10.4.3-1.el6.x86_64.rpm) = 201608 +SHA256 (rpm/x86_64/centos/6.7/mesa-libGLU-10.4.3-1.el6.i686.rpm) = 96342b291392e8f67bbc4f0e4ec5dcbddb61ffd5b01d5781adb61470be0202b9 +SIZE (rpm/x86_64/centos/6.7/mesa-libGLU-10.4.3-1.el6.i686.rpm) = 198232 SHA256 (rpm/x86_64/centos/6.7/mesa-10.4.3-1.el6.src.rpm) = 4d591bd3cefe88d5c54f5eeb0ac685a46c9df9036c6111bcbd773f3823cbea09 SIZE (rpm/x86_64/centos/6.7/mesa-10.4.3-1.el6.src.rpm) = 24458958 Index: head/graphics/linux-c6-libGLU/pkg-plist.x86_64 =================================================================== --- head/graphics/linux-c6-libGLU/pkg-plist.x86_64 (revision 413167) +++ head/graphics/linux-c6-libGLU/pkg-plist.x86_64 (revision 413168) @@ -1,2 +1,4 @@ +usr/lib/libGLU.so.1 +usr/lib/libGLU.so.1.3.1 usr/lib64/libGLU.so.1 usr/lib64/libGLU.so.1.3.1 Property changes on: head/graphics/linux-c6-libGLU/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/graphics/linux-c6-png/distinfo.x86_64 =================================================================== --- head/graphics/linux-c6-png/distinfo.x86_64 (revision 413167) +++ head/graphics/linux-c6-png/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/libpng-1.2.49-1.el6_2.x86_64.rpm) = ea3aba4a2c5734accd67a3da4ba967168ad78d30cb744bc6379863878c594022 SIZE (rpm/x86_64/centos/6.7/libpng-1.2.49-1.el6_2.x86_64.rpm) = 186036 +SHA256 (rpm/x86_64/centos/6.7/libpng-1.2.49-1.el6_2.i686.rpm) = 88400ce6450fa3b320266d5896714a41a3eee2632c620e9375046d4bcdb452cc +SIZE (rpm/x86_64/centos/6.7/libpng-1.2.49-1.el6_2.i686.rpm) = 188124 SHA256 (rpm/x86_64/centos/6.7/libpng-1.2.49-1.el6_2.src.rpm) = 156fd77c25efa50bd7623011b14d0fae1a022442453d6bd2a0c69df13587dc65 SIZE (rpm/x86_64/centos/6.7/libpng-1.2.49-1.el6_2.src.rpm) = 688305 Index: head/graphics/linux-c6-png/pkg-plist.x86_64 =================================================================== --- head/graphics/linux-c6-png/pkg-plist.x86_64 (revision 413167) +++ head/graphics/linux-c6-png/pkg-plist.x86_64 (revision 413168) @@ -1,5 +1,9 @@ +usr/lib/libpng.so.3 +usr/lib/libpng.so.3.49.0 +usr/lib/libpng12.so.0 +usr/lib/libpng12.so.0.49.0 usr/lib64/libpng.so.3 usr/lib64/libpng.so.3.49.0 usr/lib64/libpng12.so.0 usr/lib64/libpng12.so.0.49.0 usr/share/man/man5/png.5.gz Property changes on: head/graphics/linux-c6-png/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/graphics/linux-c6-sdl_image/distinfo.x86_64 =================================================================== --- head/graphics/linux-c6-sdl_image/distinfo.x86_64 (revision 413167) +++ head/graphics/linux-c6-sdl_image/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/SDL_image-1.2.12-9.el6.x86_64.rpm) = 6cb51dc16a58966d272ab45451ba578795e2cbe388225198f87254ffb00afd36 SIZE (rpm/x86_64/centos/6.7/SDL_image-1.2.12-9.el6.x86_64.rpm) = 39748 +SHA256 (rpm/x86_64/centos/6.7/SDL_image-1.2.12-9.el6.i686.rpm) = 29b37b3bf7dee0ea1f5de4074b22b73b2cc656690ef310467e38361c4ea10410 +SIZE (rpm/x86_64/centos/6.7/SDL_image-1.2.12-9.el6.i686.rpm) = 39912 SHA256 (rpm/x86_64/centos/6.7/SDL_image-1.2.12-9.el6.src.rpm) = a652ecd656eb19ac0faf6806a0bf1df71ec94424e6e47b96143289c57736b7f4 SIZE (rpm/x86_64/centos/6.7/SDL_image-1.2.12-9.el6.src.rpm) = 2241505 Index: head/graphics/linux-c6-sdl_image/pkg-plist.x86_64 =================================================================== --- head/graphics/linux-c6-sdl_image/pkg-plist.x86_64 (revision 413167) +++ head/graphics/linux-c6-sdl_image/pkg-plist.x86_64 (revision 413168) @@ -1,3 +1,5 @@ usr/bin/showimage +usr/lib/libSDL_image-1.2.so.0 +usr/lib/libSDL_image-1.2.so.0.8.4 usr/lib64/libSDL_image-1.2.so.0 usr/lib64/libSDL_image-1.2.so.0.8.4 Property changes on: head/graphics/linux-c6-sdl_image/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/graphics/linux-c6-sdl_ttf/distinfo.x86_64 =================================================================== --- head/graphics/linux-c6-sdl_ttf/distinfo.x86_64 (revision 413167) +++ head/graphics/linux-c6-sdl_ttf/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/SDL_ttf-2.0.11-6.el6.x86_64.rpm) = e1661d0ffdf707118070fbbe5085144ab1d17b22e0c785373f5c6f59a1157f5c SIZE (rpm/x86_64/centos/6.7/SDL_ttf-2.0.11-6.el6.x86_64.rpm) = 21896 +SHA256 (rpm/x86_64/centos/6.7/SDL_ttf-2.0.11-6.el6.i686.rpm) = d6f344c7f3e50f6b072fb7fb39aa7882cdf621b6f1cee62ec9fa09647802b1a7 +SIZE (rpm/x86_64/centos/6.7/SDL_ttf-2.0.11-6.el6.i686.rpm) = 21752 SHA256 (rpm/x86_64/centos/6.7/SDL_ttf-2.0.11-6.el6.src.rpm) = 6c940edece8b714623f049cb2a4dd163f5fc8ef6c1b0d1778113df0bbbce004e SIZE (rpm/x86_64/centos/6.7/SDL_ttf-2.0.11-6.el6.src.rpm) = 4058837 Index: head/graphics/linux-c6-sdl_ttf/pkg-plist.x86_64 =================================================================== --- head/graphics/linux-c6-sdl_ttf/pkg-plist.x86_64 (revision 413167) +++ head/graphics/linux-c6-sdl_ttf/pkg-plist.x86_64 (revision 413168) @@ -1,2 +1,4 @@ +usr/lib/libSDL_ttf-2.0.so.0 +usr/lib/libSDL_ttf-2.0.so.0.10.1 usr/lib64/libSDL_ttf-2.0.so.0 usr/lib64/libSDL_ttf-2.0.so.0.10.1 Property changes on: head/graphics/linux-c6-sdl_ttf/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/graphics/linux-c6-tiff/distinfo.x86_64 =================================================================== --- head/graphics/linux-c6-tiff/distinfo.x86_64 (revision 413167) +++ head/graphics/linux-c6-tiff/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/libtiff-3.9.4-10.el6_5.x86_64.rpm) = 720e58adbb1f8a477c48d74ea35b5ed153e0daf8334402cf8c090497a6bd8b64 SIZE (rpm/x86_64/centos/6.7/libtiff-3.9.4-10.el6_5.x86_64.rpm) = 350816 +SHA256 (rpm/x86_64/centos/6.7/libtiff-3.9.4-10.el6_5.i686.rpm) = da3a998c6169d15e3db4280c64e7595a4a5e83c2afd106db8bcaba4c56430565 +SIZE (rpm/x86_64/centos/6.7/libtiff-3.9.4-10.el6_5.i686.rpm) = 347108 SHA256 (rpm/x86_64/centos/6.7/libtiff-3.9.4-10.el6_5.src.rpm) = f86c5ce4adf609108553cf772def54b27b1555eda290a8b40202a96f366e9c52 SIZE (rpm/x86_64/centos/6.7/libtiff-3.9.4-10.el6_5.src.rpm) = 1480097 Index: head/graphics/linux-c6-tiff/pkg-plist.x86_64 =================================================================== --- head/graphics/linux-c6-tiff/pkg-plist.x86_64 (revision 413167) +++ head/graphics/linux-c6-tiff/pkg-plist.x86_64 (revision 413168) @@ -1,56 +1,60 @@ @comment file listing usr/bin/bmp2tiff usr/bin/fax2ps usr/bin/fax2tiff usr/bin/gif2tiff usr/bin/pal2rgb usr/bin/ppm2tiff usr/bin/ras2tiff usr/bin/raw2tiff usr/bin/rgb2ycbcr usr/bin/thumbnail usr/bin/tiff2bw usr/bin/tiff2pdf usr/bin/tiff2ps usr/bin/tiff2rgba usr/bin/tiffcmp usr/bin/tiffcp usr/bin/tiffcrop usr/bin/tiffdither usr/bin/tiffdump usr/bin/tiffinfo usr/bin/tiffmedian usr/bin/tiffset usr/bin/tiffsplit +usr/lib/libtiff.so.3 +usr/lib/libtiff.so.3.9.4 +usr/lib/libtiffxx.so.3 +usr/lib/libtiffxx.so.3.9.4 usr/lib64/libtiff.so.3 usr/lib64/libtiff.so.3.9.4 usr/lib64/libtiffxx.so.3 usr/lib64/libtiffxx.so.3.9.4 usr/share/doc/libtiff-3.9.4/COPYRIGHT usr/share/doc/libtiff-3.9.4/README usr/share/doc/libtiff-3.9.4/RELEASE-DATE usr/share/doc/libtiff-3.9.4/VERSION usr/share/man/man1/bmp2tiff.1.gz usr/share/man/man1/fax2ps.1.gz usr/share/man/man1/fax2tiff.1.gz usr/share/man/man1/gif2tiff.1.gz usr/share/man/man1/pal2rgb.1.gz usr/share/man/man1/ppm2tiff.1.gz usr/share/man/man1/ras2tiff.1.gz usr/share/man/man1/raw2tiff.1.gz usr/share/man/man1/rgb2ycbcr.1.gz usr/share/man/man1/thumbnail.1.gz usr/share/man/man1/tiff2bw.1.gz usr/share/man/man1/tiffcrop.1.gz usr/share/man/man1/tiff2pdf.1.gz usr/share/man/man1/tiff2ps.1.gz usr/share/man/man1/tiff2rgba.1.gz usr/share/man/man1/tiffcmp.1.gz usr/share/man/man1/tiffcp.1.gz usr/share/man/man1/tiffdither.1.gz usr/share/man/man1/tiffdump.1.gz usr/share/man/man1/tiffinfo.1.gz usr/share/man/man1/tiffmedian.1.gz usr/share/man/man1/tiffset.1.gz usr/share/man/man1/tiffsplit.1.gz @comment non-empty directory listing in revers order Property changes on: head/graphics/linux-c6-tiff/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/lang/linux-c6-tcl85/distinfo.x86_64 =================================================================== --- head/lang/linux-c6-tcl85/distinfo.x86_64 (revision 413167) +++ head/lang/linux-c6-tcl85/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/tcl-8.5.7-6.el6.x86_64.rpm) = 4b5384f02b1c2641af9d20e15cc547027e945acc08d07ff939f7332d41affc14 SIZE (rpm/x86_64/centos/6.7/tcl-8.5.7-6.el6.x86_64.rpm) = 2007772 +SHA256 (rpm/x86_64/centos/6.7/tcl-8.5.7-6.el6.i686.rpm) = 2f1e77463e3875822811fc5cd972a1792e9c4b3c3ac8b92719698f1a8087a0cc +SIZE (rpm/x86_64/centos/6.7/tcl-8.5.7-6.el6.i686.rpm) = 2012712 SHA256 (rpm/x86_64/centos/6.7/tcl-8.5.7-6.el6.src.rpm) = cf38cc7fafeb8aaa69be738008a12e36812d5c297aadad51156116dd6531392b SIZE (rpm/x86_64/centos/6.7/tcl-8.5.7-6.el6.src.rpm) = 4417400 Index: head/lang/linux-c6-tcl85/pkg-plist.x86_64 =================================================================== --- head/lang/linux-c6-tcl85/pkg-plist.x86_64 (revision 413167) +++ head/lang/linux-c6-tcl85/pkg-plist.x86_64 (revision 413168) @@ -1,927 +1,929 @@ usr/bin/tclsh usr/bin/tclsh8.5 +usr/lib/libtcl8.5.so usr/lib64/libtcl8.5.so usr/share/doc/tcl-8.5.7/README usr/share/doc/tcl-8.5.7/changes usr/share/doc/tcl-8.5.7/license.terms usr/share/man/man1/tclsh.1.gz usr/share/man/man3/TCL_MEM_DEBUG.3.gz usr/share/man/man3/Tcl_Access.3.gz usr/share/man/man3/Tcl_AddErrorInfo.3.gz usr/share/man/man3/Tcl_AddObjErrorInfo.3.gz usr/share/man/man3/Tcl_AlertNotifier.3.gz usr/share/man/man3/Tcl_Alloc.3.gz usr/share/man/man3/Tcl_AllocStatBuf.3.gz usr/share/man/man3/Tcl_AllowExceptions.3.gz usr/share/man/man3/Tcl_AppInit.3.gz usr/share/man/man3/Tcl_AppendAllObjTypes.3.gz usr/share/man/man3/Tcl_AppendElement.3.gz usr/share/man/man3/Tcl_AppendExportList.3.gz usr/share/man/man3/Tcl_AppendFormatToObj.3.gz usr/share/man/man3/Tcl_AppendLimitedToObj.3.gz usr/share/man/man3/Tcl_AppendObjToErrorInfo.3.gz usr/share/man/man3/Tcl_AppendObjToObj.3.gz usr/share/man/man3/Tcl_AppendPrintfToObj.3.gz usr/share/man/man3/Tcl_AppendResult.3.gz usr/share/man/man3/Tcl_AppendResultVA.3.gz usr/share/man/man3/Tcl_AppendStringsToObj.3.gz usr/share/man/man3/Tcl_AppendStringsToObjVA.3.gz usr/share/man/man3/Tcl_AppendToObj.3.gz usr/share/man/man3/Tcl_AppendUnicodeToObj.3.gz usr/share/man/man3/Tcl_AsyncCreate.3.gz usr/share/man/man3/Tcl_AsyncDelete.3.gz usr/share/man/man3/Tcl_AsyncInvoke.3.gz usr/share/man/man3/Tcl_AsyncMark.3.gz usr/share/man/man3/Tcl_AsyncReady.3.gz usr/share/man/man3/Tcl_AttemptAlloc.3.gz usr/share/man/man3/Tcl_AttemptRealloc.3.gz usr/share/man/man3/Tcl_AttemptSetObjLength.3.gz usr/share/man/man3/Tcl_BackgroundError.3.gz usr/share/man/man3/Tcl_Backslash.3.gz usr/share/man/man3/Tcl_BadChannelOption.3.gz usr/share/man/man3/Tcl_CallWhenDeleted.3.gz usr/share/man/man3/Tcl_CancelIdleCall.3.gz usr/share/man/man3/Tcl_ChannelBlockModeProc.3.gz usr/share/man/man3/Tcl_ChannelBuffered.3.gz usr/share/man/man3/Tcl_ChannelClose2Proc.3.gz usr/share/man/man3/Tcl_ChannelCloseProc.3.gz usr/share/man/man3/Tcl_ChannelFlushProc.3.gz usr/share/man/man3/Tcl_ChannelGetHandleProc.3.gz usr/share/man/man3/Tcl_ChannelGetOptionProc.3.gz usr/share/man/man3/Tcl_ChannelHandlerProc.3.gz usr/share/man/man3/Tcl_ChannelInputProc.3.gz usr/share/man/man3/Tcl_ChannelName.3.gz usr/share/man/man3/Tcl_ChannelOutputProc.3.gz usr/share/man/man3/Tcl_ChannelSeekProc.3.gz usr/share/man/man3/Tcl_ChannelSetOptionProc.3.gz usr/share/man/man3/Tcl_ChannelThreadActionProc.3.gz usr/share/man/man3/Tcl_ChannelTruncateProc.3.gz usr/share/man/man3/Tcl_ChannelVersion.3.gz usr/share/man/man3/Tcl_ChannelWatchProc.3.gz usr/share/man/man3/Tcl_ChannelWideSeekProc.3.gz usr/share/man/man3/Tcl_Chdir.3.gz usr/share/man/man3/Tcl_ClearChannelHandlers.3.gz usr/share/man/man3/Tcl_Close.3.gz usr/share/man/man3/Tcl_CommandComplete.3.gz usr/share/man/man3/Tcl_CommandTraceInfo.3.gz usr/share/man/man3/Tcl_Concat.3.gz usr/share/man/man3/Tcl_ConcatObj.3.gz usr/share/man/man3/Tcl_ConditionFinalize.3.gz usr/share/man/man3/Tcl_ConditionNotify.3.gz usr/share/man/man3/Tcl_ConditionWait.3.gz usr/share/man/man3/Tcl_ConvertCountedElement.3.gz usr/share/man/man3/Tcl_ConvertElement.3.gz usr/share/man/man3/Tcl_ConvertToType.3.gz usr/share/man/man3/Tcl_CreateAlias.3.gz usr/share/man/man3/Tcl_CreateAliasObj.3.gz usr/share/man/man3/Tcl_CreateChannel.3.gz usr/share/man/man3/Tcl_CreateChannelHandler.3.gz usr/share/man/man3/Tcl_CreateCloseHandler.3.gz usr/share/man/man3/Tcl_CreateCommand.3.gz usr/share/man/man3/Tcl_CreateEncoding.3.gz usr/share/man/man3/Tcl_CreateEnsemble.3.gz usr/share/man/man3/Tcl_CreateEventSource.3.gz usr/share/man/man3/Tcl_CreateExitHandler.3.gz usr/share/man/man3/Tcl_CreateFileHandler.3.gz usr/share/man/man3/Tcl_CreateHashEntry.3.gz usr/share/man/man3/Tcl_CreateInterp.3.gz usr/share/man/man3/Tcl_CreateMathFunc.3.gz usr/share/man/man3/Tcl_CreateNamespace.3.gz usr/share/man/man3/Tcl_CreateObjCommand.3.gz usr/share/man/man3/Tcl_CreateObjTrace.3.gz usr/share/man/man3/Tcl_CreateSlave.3.gz usr/share/man/man3/Tcl_CreateThread.3.gz usr/share/man/man3/Tcl_CreateThreadExitHandler.3.gz usr/share/man/man3/Tcl_CreateTimerHandler.3.gz usr/share/man/man3/Tcl_CreateTrace.3.gz usr/share/man/man3/Tcl_CutChannel.3.gz usr/share/man/man3/Tcl_DStringAppend.3.gz usr/share/man/man3/Tcl_DStringAppendElement.3.gz usr/share/man/man3/Tcl_DStringEndSublist.3.gz usr/share/man/man3/Tcl_DStringFree.3.gz usr/share/man/man3/Tcl_DStringGetResult.3.gz usr/share/man/man3/Tcl_DStringInit.3.gz usr/share/man/man3/Tcl_DStringLength.3.gz usr/share/man/man3/Tcl_DStringResult.3.gz usr/share/man/man3/Tcl_DStringSetLength.3.gz usr/share/man/man3/Tcl_DStringStartSublist.3.gz usr/share/man/man3/Tcl_DStringTrunc.3.gz usr/share/man/man3/Tcl_DStringValue.3.gz usr/share/man/man3/Tcl_DecrRefCount.3.gz usr/share/man/man3/Tcl_DeleteAssocData.3.gz usr/share/man/man3/Tcl_DeleteChannelHandler.3.gz usr/share/man/man3/Tcl_DeleteCloseHandler.3.gz usr/share/man/man3/Tcl_DeleteCommand.3.gz usr/share/man/man3/Tcl_DeleteCommandFromToken.3.gz usr/share/man/man3/Tcl_DeleteEventSource.3.gz usr/share/man/man3/Tcl_DeleteEvents.3.gz usr/share/man/man3/Tcl_DeleteExitHandler.3.gz usr/share/man/man3/Tcl_DeleteFileHandler.3.gz usr/share/man/man3/Tcl_DeleteHashEntry.3.gz usr/share/man/man3/Tcl_DeleteHashTable.3.gz usr/share/man/man3/Tcl_DeleteInterp.3.gz usr/share/man/man3/Tcl_DeleteNamespace.3.gz usr/share/man/man3/Tcl_DeleteThreadExitHandler.3.gz usr/share/man/man3/Tcl_DeleteTimerHandler.3.gz usr/share/man/man3/Tcl_DeleteTrace.3.gz usr/share/man/man3/Tcl_DetachChannel.3.gz usr/share/man/man3/Tcl_DetachPids.3.gz usr/share/man/man3/Tcl_DictObjDone.3.gz usr/share/man/man3/Tcl_DictObjFirst.3.gz usr/share/man/man3/Tcl_DictObjGet.3.gz usr/share/man/man3/Tcl_DictObjNext.3.gz usr/share/man/man3/Tcl_DictObjPut.3.gz usr/share/man/man3/Tcl_DictObjPutKeyList.3.gz usr/share/man/man3/Tcl_DictObjRemove.3.gz usr/share/man/man3/Tcl_DictObjRemoveKeyList.3.gz usr/share/man/man3/Tcl_DictObjSize.3.gz usr/share/man/man3/Tcl_DiscardInterpState.3.gz usr/share/man/man3/Tcl_DiscardResult.3.gz usr/share/man/man3/Tcl_DoOneEvent.3.gz usr/share/man/man3/Tcl_DoWhenIdle.3.gz usr/share/man/man3/Tcl_DontCallWhenDeleted.3.gz usr/share/man/man3/Tcl_DumpActiveMemory.3.gz usr/share/man/man3/Tcl_DuplicateObj.3.gz usr/share/man/man3/Tcl_Eof.3.gz usr/share/man/man3/Tcl_ErrnoId.3.gz usr/share/man/man3/Tcl_ErrnoMsg.3.gz usr/share/man/man3/Tcl_Eval.3.gz usr/share/man/man3/Tcl_EvalEx.3.gz usr/share/man/man3/Tcl_EvalFile.3.gz usr/share/man/man3/Tcl_EvalObjEx.3.gz usr/share/man/man3/Tcl_EvalObjv.3.gz usr/share/man/man3/Tcl_EvalTokens.3.gz usr/share/man/man3/Tcl_EvalTokensStandard.3.gz usr/share/man/man3/Tcl_EventuallyFree.3.gz usr/share/man/man3/Tcl_Exit.3.gz usr/share/man/man3/Tcl_ExitThread.3.gz usr/share/man/man3/Tcl_Export.3.gz usr/share/man/man3/Tcl_ExposeCommand.3.gz usr/share/man/man3/Tcl_ExprBoolean.3.gz usr/share/man/man3/Tcl_ExprBooleanObj.3.gz usr/share/man/man3/Tcl_ExprDouble.3.gz usr/share/man/man3/Tcl_ExprDoubleObj.3.gz usr/share/man/man3/Tcl_ExprLong.3.gz usr/share/man/man3/Tcl_ExprLongObj.3.gz usr/share/man/man3/Tcl_ExprObj.3.gz usr/share/man/man3/Tcl_ExprString.3.gz usr/share/man/man3/Tcl_ExternalToUtf.3.gz usr/share/man/man3/Tcl_ExternalToUtfDString.3.gz usr/share/man/man3/Tcl_FSAccess.3.gz usr/share/man/man3/Tcl_FSChdir.3.gz usr/share/man/man3/Tcl_FSConvertToPathType.3.gz usr/share/man/man3/Tcl_FSCopyDirectory.3.gz usr/share/man/man3/Tcl_FSCopyFile.3.gz usr/share/man/man3/Tcl_FSCreateDirectory.3.gz usr/share/man/man3/Tcl_FSData.3.gz usr/share/man/man3/Tcl_FSDeleteFile.3.gz usr/share/man/man3/Tcl_FSEqualPaths.3.gz usr/share/man/man3/Tcl_FSEvalFile.3.gz usr/share/man/man3/Tcl_FSEvalFileEx.3.gz usr/share/man/man3/Tcl_FSFileAttrStrings.3.gz usr/share/man/man3/Tcl_FSFileAttrsGet.3.gz usr/share/man/man3/Tcl_FSFileAttrsSet.3.gz usr/share/man/man3/Tcl_FSFileSystemInfo.3.gz usr/share/man/man3/Tcl_FSGetCwd.3.gz usr/share/man/man3/Tcl_FSGetFileSystemForPath.3.gz usr/share/man/man3/Tcl_FSGetInternalRep.3.gz usr/share/man/man3/Tcl_FSGetNativePath.3.gz usr/share/man/man3/Tcl_FSGetNormalizedPath.3.gz usr/share/man/man3/Tcl_FSGetPathType.3.gz usr/share/man/man3/Tcl_FSGetTranslatedPath.3.gz usr/share/man/man3/Tcl_FSGetTranslatedStringPath.3.gz usr/share/man/man3/Tcl_FSJoinPath.3.gz usr/share/man/man3/Tcl_FSJoinToPath.3.gz usr/share/man/man3/Tcl_FSLink.3.gz usr/share/man/man3/Tcl_FSListVolumes.3.gz usr/share/man/man3/Tcl_FSLoadFile.3.gz usr/share/man/man3/Tcl_FSLstat.3.gz usr/share/man/man3/Tcl_FSMatchInDirectory.3.gz usr/share/man/man3/Tcl_FSMountsChanged.3.gz usr/share/man/man3/Tcl_FSNewNativePath.3.gz usr/share/man/man3/Tcl_FSOpenFileChannel.3.gz usr/share/man/man3/Tcl_FSPathSeparator.3.gz usr/share/man/man3/Tcl_FSRegister.3.gz usr/share/man/man3/Tcl_FSRemoveDirectory.3.gz usr/share/man/man3/Tcl_FSRenameFile.3.gz usr/share/man/man3/Tcl_FSSplitPath.3.gz usr/share/man/man3/Tcl_FSStat.3.gz usr/share/man/man3/Tcl_FSUnregister.3.gz usr/share/man/man3/Tcl_FSUtime.3.gz usr/share/man/man3/Tcl_Finalize.3.gz usr/share/man/man3/Tcl_FinalizeNotifier.3.gz usr/share/man/man3/Tcl_FinalizeThread.3.gz usr/share/man/man3/Tcl_FindCommand.3.gz usr/share/man/man3/Tcl_FindEnsemble.3.gz usr/share/man/man3/Tcl_FindExecutable.3.gz usr/share/man/man3/Tcl_FindHashEntry.3.gz usr/share/man/man3/Tcl_FindNamespace.3.gz usr/share/man/man3/Tcl_FirstHashEntry.3.gz usr/share/man/man3/Tcl_Flush.3.gz usr/share/man/man3/Tcl_ForgetImport.3.gz usr/share/man/man3/Tcl_Format.3.gz usr/share/man/man3/Tcl_Free.3.gz usr/share/man/man3/Tcl_FreeEncoding.3.gz usr/share/man/man3/Tcl_FreeParse.3.gz usr/share/man/man3/Tcl_FreeResult.3.gz usr/share/man/man3/Tcl_GetAlias.3.gz usr/share/man/man3/Tcl_GetAliasObj.3.gz usr/share/man/man3/Tcl_GetAssocData.3.gz usr/share/man/man3/Tcl_GetBignumFromObj.3.gz usr/share/man/man3/Tcl_GetBoolean.3.gz usr/share/man/man3/Tcl_GetBooleanFromObj.3.gz usr/share/man/man3/Tcl_GetByteArrayFromObj.3.gz usr/share/man/man3/Tcl_GetChannel.3.gz usr/share/man/man3/Tcl_GetChannelBufferSize.3.gz usr/share/man/man3/Tcl_GetChannelError.3.gz usr/share/man/man3/Tcl_GetChannelErrorInterp.3.gz usr/share/man/man3/Tcl_GetChannelHandle.3.gz usr/share/man/man3/Tcl_GetChannelInstanceData.3.gz usr/share/man/man3/Tcl_GetChannelMode.3.gz usr/share/man/man3/Tcl_GetChannelName.3.gz usr/share/man/man3/Tcl_GetChannelNames.3.gz usr/share/man/man3/Tcl_GetChannelNamesEx.3.gz usr/share/man/man3/Tcl_GetChannelOption.3.gz usr/share/man/man3/Tcl_GetChannelThread.3.gz usr/share/man/man3/Tcl_GetChannelType.3.gz usr/share/man/man3/Tcl_GetCharLength.3.gz usr/share/man/man3/Tcl_GetCommandFromObj.3.gz usr/share/man/man3/Tcl_GetCommandFullName.3.gz usr/share/man/man3/Tcl_GetCommandInfo.3.gz usr/share/man/man3/Tcl_GetCommandInfoFromToken.3.gz usr/share/man/man3/Tcl_GetCommandName.3.gz usr/share/man/man3/Tcl_GetCurrentNamespace.3.gz usr/share/man/man3/Tcl_GetCurrentThread.3.gz usr/share/man/man3/Tcl_GetCwd.3.gz usr/share/man/man3/Tcl_GetDefaultEncodingDir.3.gz usr/share/man/man3/Tcl_GetDouble.3.gz usr/share/man/man3/Tcl_GetDoubleFromObj.3.gz usr/share/man/man3/Tcl_GetEncoding.3.gz usr/share/man/man3/Tcl_GetEncodingFromObj.3.gz usr/share/man/man3/Tcl_GetEncodingName.3.gz usr/share/man/man3/Tcl_GetEncodingNameFromEnvironment.3.gz usr/share/man/man3/Tcl_GetEncodingNames.3.gz usr/share/man/man3/Tcl_GetEncodingSearchPath.3.gz usr/share/man/man3/Tcl_GetEnsembleFlags.3.gz usr/share/man/man3/Tcl_GetEnsembleMappingDict.3.gz usr/share/man/man3/Tcl_GetEnsembleNamespace.3.gz usr/share/man/man3/Tcl_GetEnsembleSubcommandList.3.gz usr/share/man/man3/Tcl_GetEnsembleUnknownHandler.3.gz usr/share/man/man3/Tcl_GetErrno.3.gz usr/share/man/man3/Tcl_GetGlobalNamespace.3.gz usr/share/man/man3/Tcl_GetHashKey.3.gz usr/share/man/man3/Tcl_GetHashValue.3.gz usr/share/man/man3/Tcl_GetHostName.3.gz usr/share/man/man3/Tcl_GetIndexFromObj.3.gz usr/share/man/man3/Tcl_GetIndexFromObjStruct.3.gz usr/share/man/man3/Tcl_GetInt.3.gz usr/share/man/man3/Tcl_GetIntFromObj.3.gz usr/share/man/man3/Tcl_GetInterpPath.3.gz usr/share/man/man3/Tcl_GetLongFromObj.3.gz usr/share/man/man3/Tcl_GetMaster.3.gz usr/share/man/man3/Tcl_GetMathFuncInfo.3.gz usr/share/man/man3/Tcl_GetNameOfExecutable.3.gz usr/share/man/man3/Tcl_GetNamespaceUnknownHandler.3.gz usr/share/man/man3/Tcl_GetObjResult.3.gz usr/share/man/man3/Tcl_GetObjType.3.gz usr/share/man/man3/Tcl_GetOpenFile.3.gz usr/share/man/man3/Tcl_GetPathType.3.gz usr/share/man/man3/Tcl_GetRange.3.gz usr/share/man/man3/Tcl_GetRegExpFromObj.3.gz usr/share/man/man3/Tcl_GetReturnOptions.3.gz usr/share/man/man3/Tcl_GetServiceMode.3.gz usr/share/man/man3/Tcl_GetSlave.3.gz usr/share/man/man3/Tcl_GetStackedChannel.3.gz usr/share/man/man3/Tcl_GetStdChannel.3.gz usr/share/man/man3/Tcl_GetString.3.gz usr/share/man/man3/Tcl_GetStringFromObj.3.gz usr/share/man/man3/Tcl_GetStringResult.3.gz usr/share/man/man3/Tcl_GetThreadData.3.gz usr/share/man/man3/Tcl_GetTime.3.gz usr/share/man/man3/Tcl_GetTopChannel.3.gz usr/share/man/man3/Tcl_GetUniChar.3.gz usr/share/man/man3/Tcl_GetUnicode.3.gz usr/share/man/man3/Tcl_GetUnicodeFromObj.3.gz usr/share/man/man3/Tcl_GetVar.3.gz usr/share/man/man3/Tcl_GetVar2.3.gz usr/share/man/man3/Tcl_GetVar2Ex.3.gz usr/share/man/man3/Tcl_GetVersion.3.gz usr/share/man/man3/Tcl_GetWideIntFromObj.3.gz usr/share/man/man3/Tcl_Gets.3.gz usr/share/man/man3/Tcl_GetsObj.3.gz usr/share/man/man3/Tcl_GlobalEval.3.gz usr/share/man/man3/Tcl_GlobalEvalObj.3.gz usr/share/man/man3/Tcl_HashStats.3.gz usr/share/man/man3/Tcl_HideCommand.3.gz usr/share/man/man3/Tcl_Import.3.gz usr/share/man/man3/Tcl_IncrRefCount.3.gz usr/share/man/man3/Tcl_Init.3.gz usr/share/man/man3/Tcl_InitCustomHashTable.3.gz usr/share/man/man3/Tcl_InitHashTable.3.gz usr/share/man/man3/Tcl_InitMemory.3.gz usr/share/man/man3/Tcl_InitNotifier.3.gz usr/share/man/man3/Tcl_InitObjHashTable.3.gz usr/share/man/man3/Tcl_InitStubs.3.gz usr/share/man/man3/Tcl_InputBlocked.3.gz usr/share/man/man3/Tcl_InputBuffered.3.gz usr/share/man/man3/Tcl_Interp.3.gz usr/share/man/man3/Tcl_InterpDeleted.3.gz usr/share/man/man3/Tcl_InvalidateStringRep.3.gz usr/share/man/man3/Tcl_IsChannelExisting.3.gz usr/share/man/man3/Tcl_IsChannelRegistered.3.gz usr/share/man/man3/Tcl_IsChannelShared.3.gz usr/share/man/man3/Tcl_IsEnsemble.3.gz usr/share/man/man3/Tcl_IsSafe.3.gz usr/share/man/man3/Tcl_IsShared.3.gz usr/share/man/man3/Tcl_IsStandardChannel.3.gz usr/share/man/man3/Tcl_JoinPath.3.gz usr/share/man/man3/Tcl_JoinThread.3.gz usr/share/man/man3/Tcl_LimitAddHandler.3.gz usr/share/man/man3/Tcl_LimitCheck.3.gz usr/share/man/man3/Tcl_LimitExceeded.3.gz usr/share/man/man3/Tcl_LimitGetCommands.3.gz usr/share/man/man3/Tcl_LimitGetGranularity.3.gz usr/share/man/man3/Tcl_LimitGetTime.3.gz usr/share/man/man3/Tcl_LimitReady.3.gz usr/share/man/man3/Tcl_LimitRemoveHandler.3.gz usr/share/man/man3/Tcl_LimitSetCommands.3.gz usr/share/man/man3/Tcl_LimitSetGranularity.3.gz usr/share/man/man3/Tcl_LimitSetTime.3.gz usr/share/man/man3/Tcl_LimitTypeEnabled.3.gz usr/share/man/man3/Tcl_LimitTypeExceeded.3.gz usr/share/man/man3/Tcl_LimitTypeReset.3.gz usr/share/man/man3/Tcl_LimitTypeSet.3.gz usr/share/man/man3/Tcl_LinkVar.3.gz usr/share/man/man3/Tcl_ListMathFuncs.3.gz usr/share/man/man3/Tcl_ListObjAppendElement.3.gz usr/share/man/man3/Tcl_ListObjAppendList.3.gz usr/share/man/man3/Tcl_ListObjGetElements.3.gz usr/share/man/man3/Tcl_ListObjIndex.3.gz usr/share/man/man3/Tcl_ListObjLength.3.gz usr/share/man/man3/Tcl_ListObjReplace.3.gz usr/share/man/man3/Tcl_LogCommandInfo.3.gz usr/share/man/man3/Tcl_Main.3.gz usr/share/man/man3/Tcl_MakeFileChannel.3.gz usr/share/man/man3/Tcl_MakeSafe.3.gz usr/share/man/man3/Tcl_MakeTcpClientChannel.3.gz usr/share/man/man3/Tcl_Merge.3.gz usr/share/man/man3/Tcl_MutexFinalize.3.gz usr/share/man/man3/Tcl_MutexLock.3.gz usr/share/man/man3/Tcl_MutexUnlock.3.gz usr/share/man/man3/Tcl_NewBignumObj.3.gz usr/share/man/man3/Tcl_NewBooleanObj.3.gz usr/share/man/man3/Tcl_NewByteArrayObj.3.gz usr/share/man/man3/Tcl_NewDictObj.3.gz usr/share/man/man3/Tcl_NewDoubleObj.3.gz usr/share/man/man3/Tcl_NewIntObj.3.gz usr/share/man/man3/Tcl_NewListObj.3.gz usr/share/man/man3/Tcl_NewLongObj.3.gz usr/share/man/man3/Tcl_NewObj.3.gz usr/share/man/man3/Tcl_NewStringObj.3.gz usr/share/man/man3/Tcl_NewUnicodeObj.3.gz usr/share/man/man3/Tcl_NewWideIntObj.3.gz usr/share/man/man3/Tcl_NextHashEntry.3.gz usr/share/man/man3/Tcl_NotifyChannel.3.gz usr/share/man/man3/Tcl_NumUtfChars.3.gz usr/share/man/man3/Tcl_ObjGetVar2.3.gz usr/share/man/man3/Tcl_ObjPrintf.3.gz usr/share/man/man3/Tcl_ObjSetVar2.3.gz usr/share/man/man3/Tcl_OpenCommandChannel.3.gz usr/share/man/man3/Tcl_OpenFileChannel.3.gz usr/share/man/man3/Tcl_OpenTcpClient.3.gz usr/share/man/man3/Tcl_OpenTcpServer.3.gz usr/share/man/man3/Tcl_OutputBuffered.3.gz usr/share/man/man3/Tcl_Panic.3.gz usr/share/man/man3/Tcl_PanicVA.3.gz usr/share/man/man3/Tcl_ParseBraces.3.gz usr/share/man/man3/Tcl_ParseCommand.3.gz usr/share/man/man3/Tcl_ParseExpr.3.gz usr/share/man/man3/Tcl_ParseQuotedString.3.gz usr/share/man/man3/Tcl_ParseVar.3.gz usr/share/man/man3/Tcl_ParseVarName.3.gz usr/share/man/man3/Tcl_PkgPresent.3.gz usr/share/man/man3/Tcl_PkgPresentEx.3.gz usr/share/man/man3/Tcl_PkgProvide.3.gz usr/share/man/man3/Tcl_PkgProvideEx.3.gz usr/share/man/man3/Tcl_PkgRequire.3.gz usr/share/man/man3/Tcl_PkgRequireEx.3.gz usr/share/man/man3/Tcl_PkgRequireProc.3.gz usr/share/man/man3/Tcl_PosixError.3.gz usr/share/man/man3/Tcl_Preserve.3.gz usr/share/man/man3/Tcl_PrintDouble.3.gz usr/share/man/man3/Tcl_PutEnv.3.gz usr/share/man/man3/Tcl_QueryTimeProc.3.gz usr/share/man/man3/Tcl_QueueEvent.3.gz usr/share/man/man3/Tcl_Read.3.gz usr/share/man/man3/Tcl_ReadChars.3.gz usr/share/man/man3/Tcl_ReadRaw.3.gz usr/share/man/man3/Tcl_Realloc.3.gz usr/share/man/man3/Tcl_ReapDetachedProcs.3.gz usr/share/man/man3/Tcl_RecordAndEval.3.gz usr/share/man/man3/Tcl_RecordAndEvalObj.3.gz usr/share/man/man3/Tcl_RegExpCompile.3.gz usr/share/man/man3/Tcl_RegExpExec.3.gz usr/share/man/man3/Tcl_RegExpExecObj.3.gz usr/share/man/man3/Tcl_RegExpGetInfo.3.gz usr/share/man/man3/Tcl_RegExpMatch.3.gz usr/share/man/man3/Tcl_RegExpMatchObj.3.gz usr/share/man/man3/Tcl_RegExpRange.3.gz usr/share/man/man3/Tcl_RegisterChannel.3.gz usr/share/man/man3/Tcl_RegisterConfig.3.gz usr/share/man/man3/Tcl_RegisterObjType.3.gz usr/share/man/man3/Tcl_Release.3.gz usr/share/man/man3/Tcl_ResetResult.3.gz usr/share/man/man3/Tcl_RestoreInterpState.3.gz usr/share/man/man3/Tcl_RestoreResult.3.gz usr/share/man/man3/Tcl_SaveInterpState.3.gz usr/share/man/man3/Tcl_SaveResult.3.gz usr/share/man/man3/Tcl_ScanCountedElement.3.gz usr/share/man/man3/Tcl_ScanElement.3.gz usr/share/man/man3/Tcl_Seek.3.gz usr/share/man/man3/Tcl_ServiceAll.3.gz usr/share/man/man3/Tcl_ServiceEvent.3.gz usr/share/man/man3/Tcl_SetAssocData.3.gz usr/share/man/man3/Tcl_SetBignumObj.3.gz usr/share/man/man3/Tcl_SetBooleanObj.3.gz usr/share/man/man3/Tcl_SetByteArrayLength.3.gz usr/share/man/man3/Tcl_SetByteArrayObj.3.gz usr/share/man/man3/Tcl_SetChannelBufferSize.3.gz usr/share/man/man3/Tcl_SetChannelError.3.gz usr/share/man/man3/Tcl_SetChannelErrorInterp.3.gz usr/share/man/man3/Tcl_SetChannelOption.3.gz usr/share/man/man3/Tcl_SetCommandInfo.3.gz usr/share/man/man3/Tcl_SetCommandInfoFromToken.3.gz usr/share/man/man3/Tcl_SetDefaultEncodingDir.3.gz usr/share/man/man3/Tcl_SetDoubleObj.3.gz usr/share/man/man3/Tcl_SetEncodingSearchPath.3.gz usr/share/man/man3/Tcl_SetEnsembleFlags.3.gz usr/share/man/man3/Tcl_SetEnsembleMappingDict.3.gz usr/share/man/man3/Tcl_SetEnsembleSubcommandList.3.gz usr/share/man/man3/Tcl_SetEnsembleUnknownHandler.3.gz usr/share/man/man3/Tcl_SetErrno.3.gz usr/share/man/man3/Tcl_SetErrorCode.3.gz usr/share/man/man3/Tcl_SetErrorCodeVA.3.gz usr/share/man/man3/Tcl_SetExitProc.3.gz usr/share/man/man3/Tcl_SetHashValue.3.gz usr/share/man/man3/Tcl_SetIntObj.3.gz usr/share/man/man3/Tcl_SetListObj.3.gz usr/share/man/man3/Tcl_SetLongObj.3.gz usr/share/man/man3/Tcl_SetMainLoop.3.gz usr/share/man/man3/Tcl_SetMaxBlockTime.3.gz usr/share/man/man3/Tcl_SetNamespaceUnknownHandler.3.gz usr/share/man/man3/Tcl_SetObjErrorCode.3.gz usr/share/man/man3/Tcl_SetObjLength.3.gz usr/share/man/man3/Tcl_SetObjResult.3.gz usr/share/man/man3/Tcl_SetPanicProc.3.gz usr/share/man/man3/Tcl_SetRecursionLimit.3.gz usr/share/man/man3/Tcl_SetResult.3.gz usr/share/man/man3/Tcl_SetReturnOptions.3.gz usr/share/man/man3/Tcl_SetServiceMode.3.gz usr/share/man/man3/Tcl_SetStdChannel.3.gz usr/share/man/man3/Tcl_SetStringObj.3.gz usr/share/man/man3/Tcl_SetSystemEncoding.3.gz usr/share/man/man3/Tcl_SetTimeProc.3.gz usr/share/man/man3/Tcl_SetTimer.3.gz usr/share/man/man3/Tcl_SetUnicodeObj.3.gz usr/share/man/man3/Tcl_SetVar.3.gz usr/share/man/man3/Tcl_SetVar2.3.gz usr/share/man/man3/Tcl_SetVar2Ex.3.gz usr/share/man/man3/Tcl_SetWideIntObj.3.gz usr/share/man/man3/Tcl_SignalId.3.gz usr/share/man/man3/Tcl_SignalMsg.3.gz usr/share/man/man3/Tcl_Sleep.3.gz usr/share/man/man3/Tcl_SourceRCFile.3.gz usr/share/man/man3/Tcl_SpliceChannel.3.gz usr/share/man/man3/Tcl_SplitList.3.gz usr/share/man/man3/Tcl_SplitPath.3.gz usr/share/man/man3/Tcl_StackChannel.3.gz usr/share/man/man3/Tcl_StandardChannels.3.gz usr/share/man/man3/Tcl_Stat.3.gz usr/share/man/man3/Tcl_StaticPackage.3.gz usr/share/man/man3/Tcl_StringCaseMatch.3.gz usr/share/man/man3/Tcl_StringMatch.3.gz usr/share/man/man3/Tcl_SubstObj.3.gz usr/share/man/man3/Tcl_TakeBignumFromObj.3.gz usr/share/man/man3/Tcl_Tell.3.gz usr/share/man/man3/Tcl_ThreadAlert.3.gz usr/share/man/man3/Tcl_ThreadQueueEvent.3.gz usr/share/man/man3/Tcl_TraceCommand.3.gz usr/share/man/man3/Tcl_TraceVar.3.gz usr/share/man/man3/Tcl_TraceVar2.3.gz usr/share/man/man3/Tcl_TranslateFileName.3.gz usr/share/man/man3/Tcl_TruncateChannel.3.gz usr/share/man/man3/Tcl_Ungets.3.gz usr/share/man/man3/Tcl_UniChar.3.gz usr/share/man/man3/Tcl_UniCharAtIndex.3.gz usr/share/man/man3/Tcl_UniCharCaseMatch.3.gz usr/share/man/man3/Tcl_UniCharIsAlnum.3.gz usr/share/man/man3/Tcl_UniCharIsAlpha.3.gz usr/share/man/man3/Tcl_UniCharIsControl.3.gz usr/share/man/man3/Tcl_UniCharIsDigit.3.gz usr/share/man/man3/Tcl_UniCharIsGraph.3.gz usr/share/man/man3/Tcl_UniCharIsLower.3.gz usr/share/man/man3/Tcl_UniCharIsPrint.3.gz usr/share/man/man3/Tcl_UniCharIsPunct.3.gz usr/share/man/man3/Tcl_UniCharIsSpace.3.gz usr/share/man/man3/Tcl_UniCharIsUpper.3.gz usr/share/man/man3/Tcl_UniCharIsWordChar.3.gz usr/share/man/man3/Tcl_UniCharLen.3.gz usr/share/man/man3/Tcl_UniCharNcasecmp.3.gz usr/share/man/man3/Tcl_UniCharNcmp.3.gz usr/share/man/man3/Tcl_UniCharToLower.3.gz usr/share/man/man3/Tcl_UniCharToTitle.3.gz usr/share/man/man3/Tcl_UniCharToUpper.3.gz usr/share/man/man3/Tcl_UniCharToUtf.3.gz usr/share/man/man3/Tcl_UniCharToUtfDString.3.gz usr/share/man/man3/Tcl_UnlinkVar.3.gz usr/share/man/man3/Tcl_UnregisterChannel.3.gz usr/share/man/man3/Tcl_UnsetVar.3.gz usr/share/man/man3/Tcl_UnsetVar2.3.gz usr/share/man/man3/Tcl_UnstackChannel.3.gz usr/share/man/man3/Tcl_UntraceCommand.3.gz usr/share/man/man3/Tcl_UntraceVar.3.gz usr/share/man/man3/Tcl_UntraceVar2.3.gz usr/share/man/man3/Tcl_UpVar.3.gz usr/share/man/man3/Tcl_UpVar2.3.gz usr/share/man/man3/Tcl_UpdateLinkedVar.3.gz usr/share/man/man3/Tcl_UtfAtIndex.3.gz usr/share/man/man3/Tcl_UtfBackslash.3.gz usr/share/man/man3/Tcl_UtfCharComplete.3.gz usr/share/man/man3/Tcl_UtfFindFirst.3.gz usr/share/man/man3/Tcl_UtfFindLast.3.gz usr/share/man/man3/Tcl_UtfNext.3.gz usr/share/man/man3/Tcl_UtfPrev.3.gz usr/share/man/man3/Tcl_UtfToExternal.3.gz usr/share/man/man3/Tcl_UtfToExternalDString.3.gz usr/share/man/man3/Tcl_UtfToLower.3.gz usr/share/man/man3/Tcl_UtfToTitle.3.gz usr/share/man/man3/Tcl_UtfToUniChar.3.gz usr/share/man/man3/Tcl_UtfToUniCharDString.3.gz usr/share/man/man3/Tcl_UtfToUpper.3.gz usr/share/man/man3/Tcl_ValidateAllMemory.3.gz usr/share/man/man3/Tcl_VarEval.3.gz usr/share/man/man3/Tcl_VarEvalVA.3.gz usr/share/man/man3/Tcl_VarTraceInfo.3.gz usr/share/man/man3/Tcl_VarTraceInfo2.3.gz usr/share/man/man3/Tcl_WaitForEvent.3.gz usr/share/man/man3/Tcl_WaitPid.3.gz usr/share/man/man3/Tcl_WinTCharToUtf.3.gz usr/share/man/man3/Tcl_WinUtfToTChar.3.gz usr/share/man/man3/Tcl_Write.3.gz usr/share/man/man3/Tcl_WriteChars.3.gz usr/share/man/man3/Tcl_WriteObj.3.gz usr/share/man/man3/Tcl_WriteRaw.3.gz usr/share/man/man3/Tcl_WrongNumArgs.3.gz usr/share/man/man3/attemptckalloc.3.gz usr/share/man/man3/attemptckrealloc.3.gz usr/share/man/man3/ckalloc.3.gz usr/share/man/man3/ckfree.3.gz usr/share/man/man3/ckrealloc.3.gz usr/share/man/mann/SafeBase.n.gz usr/share/man/mann/Tcl.n.gz usr/share/man/mann/after.n.gz usr/share/man/mann/append.n.gz usr/share/man/mann/apply.n.gz usr/share/man/mann/array.n.gz usr/share/man/mann/auto_execok.n.gz usr/share/man/mann/auto_import.n.gz usr/share/man/mann/auto_load.n.gz usr/share/man/mann/auto_mkindex.n.gz usr/share/man/mann/auto_mkindex_old.n.gz usr/share/man/mann/auto_qualify.n.gz usr/share/man/mann/auto_reset.n.gz usr/share/man/mann/bgerror.n.gz usr/share/man/mann/binary.n.gz usr/share/man/mann/break.n.gz usr/share/man/mann/case.n.gz usr/share/man/mann/catch.n.gz usr/share/man/mann/cd.n.gz usr/share/man/mann/chan.n.gz usr/share/man/mann/clock.n.gz usr/share/man/mann/close.n.gz usr/share/man/mann/concat.n.gz usr/share/man/mann/continue.n.gz usr/share/man/mann/dde.n.gz usr/share/man/mann/dict.n.gz usr/share/man/mann/encoding.n.gz usr/share/man/mann/eof.n.gz usr/share/man/mann/error.n.gz usr/share/man/mann/eval.n.gz usr/share/man/mann/exec.n.gz usr/share/man/mann/exit.n.gz usr/share/man/mann/expr.n.gz usr/share/man/mann/fblocked.n.gz usr/share/man/mann/fconfigure.n.gz usr/share/man/mann/fcopy.n.gz usr/share/man/mann/file.n.gz usr/share/man/mann/fileevent.n.gz usr/share/man/mann/filename.n.gz usr/share/man/mann/flush.n.gz usr/share/man/mann/for.n.gz usr/share/man/mann/foreach.n.gz usr/share/man/mann/format.n.gz usr/share/man/mann/gets.n.gz usr/share/man/mann/glob.n.gz usr/share/man/mann/global.n.gz usr/share/man/mann/history.n.gz usr/share/man/mann/http.n.gz usr/share/man/mann/if.n.gz usr/share/man/mann/incr.n.gz usr/share/man/mann/info.n.gz usr/share/man/mann/interp.n.gz usr/share/man/mann/join.n.gz usr/share/man/mann/lappend.n.gz usr/share/man/mann/lassign.n.gz usr/share/man/mann/lindex.n.gz usr/share/man/mann/linsert.n.gz usr/share/man/mann/list.n.gz usr/share/man/mann/llength.n.gz usr/share/man/mann/load.n.gz usr/share/man/mann/lrange.n.gz usr/share/man/mann/lrepeat.n.gz usr/share/man/mann/lreplace.n.gz usr/share/man/mann/lreverse.n.gz usr/share/man/mann/lsearch.n.gz usr/share/man/mann/lset.n.gz usr/share/man/mann/lsort.n.gz usr/share/man/mann/mathfunc.n.gz usr/share/man/mann/mathop.n.gz usr/share/man/mann/memory.n.gz usr/share/man/mann/msgcat.n.gz usr/share/man/mann/namespace.n.gz usr/share/man/mann/open.n.gz usr/share/man/mann/package.n.gz usr/share/man/mann/parray.n.gz usr/share/man/mann/pid.n.gz usr/share/man/mann/pkg::create.n.gz usr/share/man/mann/pkg_mkIndex.n.gz usr/share/man/mann/platform.n.gz usr/share/man/mann/platform::shell.n.gz usr/share/man/mann/proc.n.gz usr/share/man/mann/puts.n.gz usr/share/man/mann/pwd.n.gz usr/share/man/mann/re_syntax.n.gz usr/share/man/mann/read.n.gz usr/share/man/mann/refchan.n.gz usr/share/man/mann/regexp.n.gz usr/share/man/mann/registry.n.gz usr/share/man/mann/regsub.n.gz usr/share/man/mann/rename.n.gz usr/share/man/mann/return.n.gz usr/share/man/mann/scan.n.gz usr/share/man/mann/seek.n.gz usr/share/man/mann/set.n.gz usr/share/man/mann/socket.n.gz usr/share/man/mann/source.n.gz usr/share/man/mann/split.n.gz usr/share/man/mann/string.n.gz usr/share/man/mann/subst.n.gz usr/share/man/mann/switch.n.gz usr/share/man/mann/tcl_endOfWord.n.gz usr/share/man/mann/tcl_findLibrary.n.gz usr/share/man/mann/tcl_startOfNextWord.n.gz usr/share/man/mann/tcl_startOfPreviousWord.n.gz usr/share/man/mann/tcl_wordBreakAfter.n.gz usr/share/man/mann/tcl_wordBreakBefore.n.gz usr/share/man/mann/tcltest.n.gz usr/share/man/mann/tclvars.n.gz usr/share/man/mann/tell.n.gz usr/share/man/mann/time.n.gz usr/share/man/mann/tm.n.gz usr/share/man/mann/trace.n.gz usr/share/man/mann/unknown.n.gz usr/share/man/mann/unload.n.gz usr/share/man/mann/unset.n.gz usr/share/man/mann/update.n.gz usr/share/man/mann/uplevel.n.gz usr/share/man/mann/upvar.n.gz usr/share/man/mann/variable.n.gz usr/share/man/mann/vwait.n.gz usr/share/man/mann/while.n.gz usr/%%DATADIR%%8.5/auto.tcl usr/%%DATADIR%%8.5/clock.tcl usr/%%DATADIR%%8.5/encoding/ascii.enc usr/%%DATADIR%%8.5/encoding/big5.enc usr/%%DATADIR%%8.5/encoding/cp1250.enc usr/%%DATADIR%%8.5/encoding/cp1251.enc usr/%%DATADIR%%8.5/encoding/cp1252.enc usr/%%DATADIR%%8.5/encoding/cp1253.enc usr/%%DATADIR%%8.5/encoding/cp1254.enc usr/%%DATADIR%%8.5/encoding/cp1255.enc usr/%%DATADIR%%8.5/encoding/cp1256.enc usr/%%DATADIR%%8.5/encoding/cp1257.enc usr/%%DATADIR%%8.5/encoding/cp1258.enc usr/%%DATADIR%%8.5/encoding/cp437.enc usr/%%DATADIR%%8.5/encoding/cp737.enc usr/%%DATADIR%%8.5/encoding/cp775.enc usr/%%DATADIR%%8.5/encoding/cp850.enc usr/%%DATADIR%%8.5/encoding/cp852.enc usr/%%DATADIR%%8.5/encoding/cp855.enc usr/%%DATADIR%%8.5/encoding/cp857.enc usr/%%DATADIR%%8.5/encoding/cp860.enc usr/%%DATADIR%%8.5/encoding/cp861.enc usr/%%DATADIR%%8.5/encoding/cp862.enc usr/%%DATADIR%%8.5/encoding/cp863.enc usr/%%DATADIR%%8.5/encoding/cp864.enc usr/%%DATADIR%%8.5/encoding/cp865.enc usr/%%DATADIR%%8.5/encoding/cp866.enc usr/%%DATADIR%%8.5/encoding/cp869.enc usr/%%DATADIR%%8.5/encoding/cp874.enc usr/%%DATADIR%%8.5/encoding/cp932.enc usr/%%DATADIR%%8.5/encoding/cp936.enc usr/%%DATADIR%%8.5/encoding/cp949.enc usr/%%DATADIR%%8.5/encoding/cp950.enc usr/%%DATADIR%%8.5/encoding/dingbats.enc usr/%%DATADIR%%8.5/encoding/ebcdic.enc usr/%%DATADIR%%8.5/encoding/euc-cn.enc usr/%%DATADIR%%8.5/encoding/euc-jp.enc usr/%%DATADIR%%8.5/encoding/euc-kr.enc usr/%%DATADIR%%8.5/encoding/gb12345.enc usr/%%DATADIR%%8.5/encoding/gb1988.enc usr/%%DATADIR%%8.5/encoding/gb2312-raw.enc usr/%%DATADIR%%8.5/encoding/gb2312.enc usr/%%DATADIR%%8.5/encoding/iso2022-jp.enc usr/%%DATADIR%%8.5/encoding/iso2022-kr.enc usr/%%DATADIR%%8.5/encoding/iso2022.enc usr/%%DATADIR%%8.5/encoding/iso8859-1.enc usr/%%DATADIR%%8.5/encoding/iso8859-10.enc usr/%%DATADIR%%8.5/encoding/iso8859-13.enc usr/%%DATADIR%%8.5/encoding/iso8859-14.enc usr/%%DATADIR%%8.5/encoding/iso8859-15.enc usr/%%DATADIR%%8.5/encoding/iso8859-16.enc usr/%%DATADIR%%8.5/encoding/iso8859-2.enc usr/%%DATADIR%%8.5/encoding/iso8859-3.enc usr/%%DATADIR%%8.5/encoding/iso8859-4.enc usr/%%DATADIR%%8.5/encoding/iso8859-5.enc usr/%%DATADIR%%8.5/encoding/iso8859-6.enc usr/%%DATADIR%%8.5/encoding/iso8859-7.enc usr/%%DATADIR%%8.5/encoding/iso8859-8.enc usr/%%DATADIR%%8.5/encoding/iso8859-9.enc usr/%%DATADIR%%8.5/encoding/jis0201.enc usr/%%DATADIR%%8.5/encoding/jis0208.enc usr/%%DATADIR%%8.5/encoding/jis0212.enc usr/%%DATADIR%%8.5/encoding/koi8-r.enc usr/%%DATADIR%%8.5/encoding/koi8-u.enc usr/%%DATADIR%%8.5/encoding/ksc5601.enc usr/%%DATADIR%%8.5/encoding/macCentEuro.enc usr/%%DATADIR%%8.5/encoding/macCroatian.enc usr/%%DATADIR%%8.5/encoding/macCyrillic.enc usr/%%DATADIR%%8.5/encoding/macDingbats.enc usr/%%DATADIR%%8.5/encoding/macGreek.enc usr/%%DATADIR%%8.5/encoding/macIceland.enc usr/%%DATADIR%%8.5/encoding/macJapan.enc usr/%%DATADIR%%8.5/encoding/macRoman.enc usr/%%DATADIR%%8.5/encoding/macRomania.enc usr/%%DATADIR%%8.5/encoding/macThai.enc usr/%%DATADIR%%8.5/encoding/macTurkish.enc usr/%%DATADIR%%8.5/encoding/macUkraine.enc usr/%%DATADIR%%8.5/encoding/shiftjis.enc usr/%%DATADIR%%8.5/encoding/symbol.enc usr/%%DATADIR%%8.5/encoding/tis-620.enc usr/%%DATADIR%%8.5/history.tcl usr/%%DATADIR%%8.5/http1.0/http.tcl usr/%%DATADIR%%8.5/http1.0/pkgIndex.tcl usr/%%DATADIR%%8.5/init.tcl usr/%%DATADIR%%8.5/msgs/af.msg usr/%%DATADIR%%8.5/msgs/af_za.msg usr/%%DATADIR%%8.5/msgs/ar.msg usr/%%DATADIR%%8.5/msgs/ar_in.msg usr/%%DATADIR%%8.5/msgs/ar_jo.msg usr/%%DATADIR%%8.5/msgs/ar_lb.msg usr/%%DATADIR%%8.5/msgs/ar_sy.msg usr/%%DATADIR%%8.5/msgs/be.msg usr/%%DATADIR%%8.5/msgs/bg.msg usr/%%DATADIR%%8.5/msgs/bn.msg usr/%%DATADIR%%8.5/msgs/bn_in.msg usr/%%DATADIR%%8.5/msgs/ca.msg usr/%%DATADIR%%8.5/msgs/cs.msg usr/%%DATADIR%%8.5/msgs/da.msg usr/%%DATADIR%%8.5/msgs/de.msg usr/%%DATADIR%%8.5/msgs/de_at.msg usr/%%DATADIR%%8.5/msgs/de_be.msg usr/%%DATADIR%%8.5/msgs/el.msg usr/%%DATADIR%%8.5/msgs/en_au.msg usr/%%DATADIR%%8.5/msgs/en_be.msg usr/%%DATADIR%%8.5/msgs/en_bw.msg usr/%%DATADIR%%8.5/msgs/en_ca.msg usr/%%DATADIR%%8.5/msgs/en_gb.msg usr/%%DATADIR%%8.5/msgs/en_hk.msg usr/%%DATADIR%%8.5/msgs/en_ie.msg usr/%%DATADIR%%8.5/msgs/en_in.msg usr/%%DATADIR%%8.5/msgs/en_nz.msg usr/%%DATADIR%%8.5/msgs/en_ph.msg usr/%%DATADIR%%8.5/msgs/en_sg.msg usr/%%DATADIR%%8.5/msgs/en_za.msg usr/%%DATADIR%%8.5/msgs/en_zw.msg usr/%%DATADIR%%8.5/msgs/eo.msg usr/%%DATADIR%%8.5/msgs/es.msg usr/%%DATADIR%%8.5/msgs/es_ar.msg usr/%%DATADIR%%8.5/msgs/es_bo.msg usr/%%DATADIR%%8.5/msgs/es_cl.msg usr/%%DATADIR%%8.5/msgs/es_co.msg usr/%%DATADIR%%8.5/msgs/es_cr.msg usr/%%DATADIR%%8.5/msgs/es_do.msg usr/%%DATADIR%%8.5/msgs/es_ec.msg usr/%%DATADIR%%8.5/msgs/es_gt.msg usr/%%DATADIR%%8.5/msgs/es_hn.msg usr/%%DATADIR%%8.5/msgs/es_mx.msg usr/%%DATADIR%%8.5/msgs/es_ni.msg usr/%%DATADIR%%8.5/msgs/es_pa.msg usr/%%DATADIR%%8.5/msgs/es_pe.msg usr/%%DATADIR%%8.5/msgs/es_pr.msg usr/%%DATADIR%%8.5/msgs/es_py.msg usr/%%DATADIR%%8.5/msgs/es_sv.msg usr/%%DATADIR%%8.5/msgs/es_uy.msg usr/%%DATADIR%%8.5/msgs/es_ve.msg usr/%%DATADIR%%8.5/msgs/et.msg usr/%%DATADIR%%8.5/msgs/eu.msg usr/%%DATADIR%%8.5/msgs/eu_es.msg usr/%%DATADIR%%8.5/msgs/fa.msg usr/%%DATADIR%%8.5/msgs/fa_in.msg usr/%%DATADIR%%8.5/msgs/fa_ir.msg usr/%%DATADIR%%8.5/msgs/fi.msg usr/%%DATADIR%%8.5/msgs/fo.msg usr/%%DATADIR%%8.5/msgs/fo_fo.msg usr/%%DATADIR%%8.5/msgs/fr.msg usr/%%DATADIR%%8.5/msgs/fr_be.msg usr/%%DATADIR%%8.5/msgs/fr_ca.msg usr/%%DATADIR%%8.5/msgs/fr_ch.msg usr/%%DATADIR%%8.5/msgs/ga.msg usr/%%DATADIR%%8.5/msgs/ga_ie.msg usr/%%DATADIR%%8.5/msgs/gl.msg usr/%%DATADIR%%8.5/msgs/gl_es.msg usr/%%DATADIR%%8.5/msgs/gv.msg usr/%%DATADIR%%8.5/msgs/gv_gb.msg usr/%%DATADIR%%8.5/msgs/he.msg usr/%%DATADIR%%8.5/msgs/hi.msg usr/%%DATADIR%%8.5/msgs/hi_in.msg usr/%%DATADIR%%8.5/msgs/hr.msg usr/%%DATADIR%%8.5/msgs/hu.msg usr/%%DATADIR%%8.5/msgs/id.msg usr/%%DATADIR%%8.5/msgs/id_id.msg usr/%%DATADIR%%8.5/msgs/is.msg usr/%%DATADIR%%8.5/msgs/it.msg usr/%%DATADIR%%8.5/msgs/it_ch.msg usr/%%DATADIR%%8.5/msgs/ja.msg usr/%%DATADIR%%8.5/msgs/kl.msg usr/%%DATADIR%%8.5/msgs/kl_gl.msg usr/%%DATADIR%%8.5/msgs/ko.msg usr/%%DATADIR%%8.5/msgs/ko_kr.msg usr/%%DATADIR%%8.5/msgs/kok.msg usr/%%DATADIR%%8.5/msgs/kok_in.msg usr/%%DATADIR%%8.5/msgs/kw.msg usr/%%DATADIR%%8.5/msgs/kw_gb.msg usr/%%DATADIR%%8.5/msgs/lt.msg usr/%%DATADIR%%8.5/msgs/lv.msg usr/%%DATADIR%%8.5/msgs/mk.msg usr/%%DATADIR%%8.5/msgs/mr.msg usr/%%DATADIR%%8.5/msgs/mr_in.msg usr/%%DATADIR%%8.5/msgs/ms.msg usr/%%DATADIR%%8.5/msgs/ms_my.msg usr/%%DATADIR%%8.5/msgs/mt.msg usr/%%DATADIR%%8.5/msgs/nb.msg usr/%%DATADIR%%8.5/msgs/nl.msg usr/%%DATADIR%%8.5/msgs/nl_be.msg usr/%%DATADIR%%8.5/msgs/nn.msg usr/%%DATADIR%%8.5/msgs/pl.msg usr/%%DATADIR%%8.5/msgs/pt.msg usr/%%DATADIR%%8.5/msgs/pt_br.msg usr/%%DATADIR%%8.5/msgs/ro.msg usr/%%DATADIR%%8.5/msgs/ru.msg usr/%%DATADIR%%8.5/msgs/ru_ua.msg usr/%%DATADIR%%8.5/msgs/sh.msg usr/%%DATADIR%%8.5/msgs/sk.msg usr/%%DATADIR%%8.5/msgs/sl.msg usr/%%DATADIR%%8.5/msgs/sq.msg usr/%%DATADIR%%8.5/msgs/sr.msg usr/%%DATADIR%%8.5/msgs/sv.msg usr/%%DATADIR%%8.5/msgs/sw.msg usr/%%DATADIR%%8.5/msgs/ta.msg usr/%%DATADIR%%8.5/msgs/ta_in.msg usr/%%DATADIR%%8.5/msgs/te.msg usr/%%DATADIR%%8.5/msgs/te_in.msg usr/%%DATADIR%%8.5/msgs/th.msg usr/%%DATADIR%%8.5/msgs/tr.msg usr/%%DATADIR%%8.5/msgs/uk.msg usr/%%DATADIR%%8.5/msgs/vi.msg usr/%%DATADIR%%8.5/msgs/zh.msg usr/%%DATADIR%%8.5/msgs/zh_cn.msg usr/%%DATADIR%%8.5/msgs/zh_hk.msg usr/%%DATADIR%%8.5/msgs/zh_sg.msg usr/%%DATADIR%%8.5/msgs/zh_tw.msg usr/%%DATADIR%%8.5/opt0.4/optparse.tcl usr/%%DATADIR%%8.5/opt0.4/pkgIndex.tcl usr/%%DATADIR%%8.5/package.tcl usr/%%DATADIR%%8.5/parray.tcl usr/%%DATADIR%%8.5/safe.tcl usr/%%DATADIR%%8.5/tclDTrace.d usr/%%DATADIR%%8.5/tclIndex usr/%%DATADIR%%8.5/tm.tcl usr/%%DATADIR%%8.5/word.tcl usr/%%DATADIR%%8/8.4/http-2.7.3.tm usr/%%DATADIR%%8/8.4/platform-1.0.4.tm usr/%%DATADIR%%8/8.4/platform/shell-1.1.4.tm usr/%%DATADIR%%8/8.5/msgcat-1.4.2.tm usr/%%DATADIR%%8/8.5/tcltest-2.3.1.tm +@dir usr/lib/tcl8.5 @dir usr/lib64/tcl8.5 @dir usr/%%DATADIR%%8/8.3 Property changes on: head/lang/linux-c6-tcl85/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/multimedia/linux-c6-libtheora/distinfo.x86_64 =================================================================== --- head/multimedia/linux-c6-libtheora/distinfo.x86_64 (revision 413167) +++ head/multimedia/linux-c6-libtheora/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/libtheora-1.1.0-2.el6.x86_64.rpm) = 942e4bb9415f0aaec7924f70f91aa923946f245ff8fed271e70991eedb6416ad SIZE (rpm/x86_64/centos/6.7/libtheora-1.1.0-2.el6.x86_64.rpm) = 131752 +SHA256 (rpm/x86_64/centos/6.7/libtheora-1.1.0-2.el6.i686.rpm) = 0d7e7b9daa9d0d4d1dc52bb00e3022f11e1b3401ca7c646f5538c0042c3a29b7 +SIZE (rpm/x86_64/centos/6.7/libtheora-1.1.0-2.el6.i686.rpm) = 134564 SHA256 (rpm/x86_64/centos/6.7/libtheora-1.1.0-2.el6.src.rpm) = 2f903b66160f5f5f19684a8cbe96c8c746c9fd77e8d93da15ac4fbbc67c2a16b SIZE (rpm/x86_64/centos/6.7/libtheora-1.1.0-2.el6.src.rpm) = 1381855 Index: head/multimedia/linux-c6-libtheora/pkg-plist.x86_64 =================================================================== --- head/multimedia/linux-c6-libtheora/pkg-plist.x86_64 (revision 413167) +++ head/multimedia/linux-c6-libtheora/pkg-plist.x86_64 (revision 413168) @@ -1,6 +1,12 @@ +usr/lib/libtheora.so.0 +usr/lib/libtheora.so.0.3.9 +usr/lib/libtheoradec.so.1 +usr/lib/libtheoradec.so.1.1.3 +usr/lib/libtheoraenc.so.1 +usr/lib/libtheoraenc.so.1.1.2 usr/lib64/libtheora.so.0 usr/lib64/libtheora.so.0.3.9 usr/lib64/libtheoradec.so.1 usr/lib64/libtheoradec.so.1.1.3 usr/lib64/libtheoraenc.so.1 usr/lib64/libtheoraenc.so.1.1.2 Property changes on: head/multimedia/linux-c6-libtheora/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/multimedia/linux-c6-libv4l/distinfo.x86_64 =================================================================== --- head/multimedia/linux-c6-libv4l/distinfo.x86_64 (revision 413167) +++ head/multimedia/linux-c6-libv4l/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/libv4l-0.6.3-2.el6.x86_64.rpm) = 988d6a7666a26add6dd9d56e28204199c740c79989c06ee5fe97f11570efb38d SIZE (rpm/x86_64/centos/6.7/libv4l-0.6.3-2.el6.x86_64.rpm) = 105424 +SHA256 (rpm/x86_64/centos/6.7/libv4l-0.6.3-2.el6.i686.rpm) = 44b8430a7f5dfb37dd57868f7f33e06194bb5ae4584592e9726417158e0cba5e +SIZE (rpm/x86_64/centos/6.7/libv4l-0.6.3-2.el6.i686.rpm) = 103848 SHA256 (rpm/x86_64/centos/6.7/libv4l-0.6.3-2.el6.src.rpm) = 4dffde0aeeb35b9ea30c2ebb04cb60fd73d3eb89cd2530b92fbe1c2d6907a24c SIZE (rpm/x86_64/centos/6.7/libv4l-0.6.3-2.el6.src.rpm) = 138961 Index: head/multimedia/linux-c6-libv4l/pkg-plist.x86_64 =================================================================== --- head/multimedia/linux-c6-libv4l/pkg-plist.x86_64 (revision 413167) +++ head/multimedia/linux-c6-libv4l/pkg-plist.x86_64 (revision 413168) @@ -1,12 +1,19 @@ @comment file listing +usr/lib/libv4l/ov511-decomp +usr/lib/libv4l/ov518-decomp +usr/lib/libv4l/v4l1compat.so +usr/lib/libv4l/v4l2convert.so +usr/lib/libv4l1.so.0 +usr/lib/libv4l2.so.0 +usr/lib/libv4lconvert.so.0 usr/lib64/libv4l/ov511-decomp usr/lib64/libv4l/ov518-decomp usr/lib64/libv4l/v4l1compat.so usr/lib64/libv4l/v4l2convert.so usr/lib64/libv4l1.so.0 usr/lib64/libv4l2.so.0 usr/lib64/libv4lconvert.so.0 usr/share/doc/libv4l-%%PORTVERSION%%/COPYING.LIB usr/share/doc/libv4l-%%PORTVERSION%%/ChangeLog usr/share/doc/libv4l-%%PORTVERSION%%/README usr/share/doc/libv4l-%%PORTVERSION%%/TODO Property changes on: head/multimedia/linux-c6-libv4l/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/net/linux-c6-avahi-libs/distinfo.x86_64 =================================================================== --- head/net/linux-c6-avahi-libs/distinfo.x86_64 (revision 413167) +++ head/net/linux-c6-avahi-libs/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/avahi-libs-0.6.25-15.el6.x86_64.rpm) = a8ef064f4c382bf39ee2c17f646ef01afc17067eb7a0d3a591130da90e6eefb6 SIZE (rpm/x86_64/centos/6.7/avahi-libs-0.6.25-15.el6.x86_64.rpm) = 55948 +SHA256 (rpm/x86_64/centos/6.7/avahi-libs-0.6.25-15.el6.i686.rpm) = 9a51cb6d9fd7f109e220906f923365e42c5b6ec0c850638194e9ac5a9f15619e +SIZE (rpm/x86_64/centos/6.7/avahi-libs-0.6.25-15.el6.i686.rpm) = 55916 SHA256 (rpm/x86_64/centos/6.7/avahi-0.6.25-15.el6.src.rpm) = d274512f9456da9742d38ee3fbfbc483719cfc9f9918987d385c8ee89179263b SIZE (rpm/x86_64/centos/6.7/avahi-0.6.25-15.el6.src.rpm) = 1138822 Index: head/net/linux-c6-avahi-libs/pkg-plist.x86_64 =================================================================== --- head/net/linux-c6-avahi-libs/pkg-plist.x86_64 (revision 413167) +++ head/net/linux-c6-avahi-libs/pkg-plist.x86_64 (revision 413168) @@ -1,4 +1,8 @@ +usr/lib/libavahi-client.so.3 +usr/lib/libavahi-client.so.3.2.5 +usr/lib/libavahi-common.so.3 +usr/lib/libavahi-common.so.3.5.1 usr/lib64/libavahi-client.so.3 usr/lib64/libavahi-client.so.3.2.5 usr/lib64/libavahi-common.so.3 usr/lib64/libavahi-common.so.3.5.1 Property changes on: head/net/linux-c6-avahi-libs/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/net/linux-c6-openldap/distinfo.x86_64 =================================================================== --- head/net/linux-c6-openldap/distinfo.x86_64 (revision 413167) +++ head/net/linux-c6-openldap/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/openldap-2.4.40-7.el6_7.x86_64.rpm) = 8d5902b0192b32fbcde9f64fe17c53ca30da97b53ca875ed1ab8005ab827ac87 SIZE (rpm/x86_64/centos/6.7/openldap-2.4.40-7.el6_7.x86_64.rpm) = 288716 +SHA256 (rpm/x86_64/centos/6.7/openldap-2.4.40-7.el6_7.i686.rpm) = c482efc3e7304de3d38cf2f0d0d61206532deb196fdb9751f10b6b3ee174ddf4 +SIZE (rpm/x86_64/centos/6.7/openldap-2.4.40-7.el6_7.i686.rpm) = 291024 SHA256 (rpm/x86_64/centos/6.7/openldap-2.4.40-7.el6_7.src.rpm) = 3ac265f0454c7a8e35d0d5e77f013431d3f072232c7dd3aa08aea61523437759 SIZE (rpm/x86_64/centos/6.7/openldap-2.4.40-7.el6_7.src.rpm) = 5724648 Index: head/net/linux-c6-openldap/pkg-plist.x86_64 =================================================================== --- head/net/linux-c6-openldap/pkg-plist.x86_64 (revision 413167) +++ head/net/linux-c6-openldap/pkg-plist.x86_64 (revision 413168) @@ -1,12 +1,20 @@ %%ETCDIR%% +lib/liblber-2.4.so.2 +lib/liblber-2.4.so.2.10.3 +lib/libldap-2.4.so.2 +lib/libldap-2.4.so.2.10.3 +lib/libldap_r-2.4.so.2 +lib/libldap_r-2.4.so.2.10.3 +lib/libldif-2.4.so.2 +lib/libldif-2.4.so.2.10.3 lib64/liblber-2.4.so.2 lib64/liblber-2.4.so.2.10.3 lib64/libldap-2.4.so.2 lib64/libldap-2.4.so.2.10.3 lib64/libldap_r-2.4.so.2 lib64/libldap_r-2.4.so.2.10.3 lib64/libldif-2.4.so.2 lib64/libldif-2.4.so.2.10.3 usr/libexec/openldap/create-certdb.sh usr/share/man/man5/ldap.conf.5.gz usr/share/man/man5/ldif.5.gz Index: head/net/linux-c6-tcp_wrappers-libs/distinfo.x86_64 =================================================================== --- head/net/linux-c6-tcp_wrappers-libs/distinfo.x86_64 (revision 413167) +++ head/net/linux-c6-tcp_wrappers-libs/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/tcp_wrappers-libs-7.6-57.el6.x86_64.rpm) = a76713ff2e476970a507e2491369b92424b59e6e1418ea47f1a754cd8b63f144 SIZE (rpm/x86_64/centos/6.7/tcp_wrappers-libs-7.6-57.el6.x86_64.rpm) = 63484 +SHA256 (rpm/x86_64/centos/6.7/tcp_wrappers-libs-7.6-57.el6.i686.rpm) = 0af672d37c071d898a6207b36f98afa70544531d958138a7a98f897703b0bd00 +SIZE (rpm/x86_64/centos/6.7/tcp_wrappers-libs-7.6-57.el6.i686.rpm) = 63364 SHA256 (rpm/x86_64/centos/6.7/tcp_wrappers-7.6-57.el6.src.rpm) = b5dc9f2893acf4fbbe7e727273793d21cfdd932c66ddb18ef4d0394f13b12988 SIZE (rpm/x86_64/centos/6.7/tcp_wrappers-7.6-57.el6.src.rpm) = 140453 Index: head/net/linux-c6-tcp_wrappers-libs/pkg-plist.x86_64 =================================================================== --- head/net/linux-c6-tcp_wrappers-libs/pkg-plist.x86_64 (revision 413167) +++ head/net/linux-c6-tcp_wrappers-libs/pkg-plist.x86_64 (revision 413168) @@ -1,13 +1,15 @@ +lib/libwrap.so.0 +lib/libwrap.so.0.7.6 lib64/libwrap.so.0 lib64/libwrap.so.0.7.6 usr/share/doc/tcp_wrappers-libs-7.6/BLURB usr/share/doc/tcp_wrappers-libs-7.6/Banners.Makefile usr/share/doc/tcp_wrappers-libs-7.6/CHANGES usr/share/doc/tcp_wrappers-libs-7.6/DISCLAIMER usr/share/doc/tcp_wrappers-libs-7.6/README usr/share/doc/tcp_wrappers-libs-7.6/README.IRIX usr/share/doc/tcp_wrappers-libs-7.6/README.NIS usr/share/man/man5/hosts.allow.5.gz usr/share/man/man5/hosts.deny.5.gz usr/share/man/man5/hosts_access.5.gz usr/share/man/man5/hosts_options.5.gz Index: head/print/linux-c6-cups-libs/distinfo.x86_64 =================================================================== --- head/print/linux-c6-cups-libs/distinfo.x86_64 (revision 413167) +++ head/print/linux-c6-cups-libs/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/cups-libs-1.4.2-72.el6.x86_64.rpm) = d2a5e61c191622f5978db2cc3932380850a13add6b7306ff186cd5b12efcea1b SIZE (rpm/x86_64/centos/6.7/cups-libs-1.4.2-72.el6.x86_64.rpm) = 328876 +SHA256 (rpm/x86_64/centos/6.7/cups-libs-1.4.2-72.el6.i686.rpm) = 11f947418eee7bf2d1f2a1abe93f5b7e9afa71daf8d77a18e2e5affb72930282 +SIZE (rpm/x86_64/centos/6.7/cups-libs-1.4.2-72.el6.i686.rpm) = 338940 SHA256 (rpm/x86_64/centos/6.7/cups-1.4.2-72.el6.src.rpm) = f53d045a61aa27b55a62595e766d1d01e311f27fb913ef8286994595cd503983 SIZE (rpm/x86_64/centos/6.7/cups-1.4.2-72.el6.src.rpm) = 4678197 Index: head/print/linux-c6-cups-libs/pkg-plist.x86_64 =================================================================== --- head/print/linux-c6-cups-libs/pkg-plist.x86_64 (revision 413167) +++ head/print/linux-c6-cups-libs/pkg-plist.x86_64 (revision 413168) @@ -1,6 +1,12 @@ +usr/lib/libcups.so.2 +usr/lib/libcupscgi.so.1 +usr/lib/libcupsdriver.so.1 +usr/lib/libcupsimage.so.2 +usr/lib/libcupsmime.so.1 +usr/lib/libcupsppdc.so.1 usr/lib64/libcups.so.2 usr/lib64/libcupscgi.so.1 usr/lib64/libcupsdriver.so.1 usr/lib64/libcupsimage.so.2 usr/lib64/libcupsmime.so.1 usr/lib64/libcupsppdc.so.1 Property changes on: head/print/linux-c6-cups-libs/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/security/linux-c6-cyrus-sasl2/Makefile =================================================================== --- head/security/linux-c6-cyrus-sasl2/Makefile (revision 413167) +++ head/security/linux-c6-cyrus-sasl2/Makefile (revision 413168) @@ -1,29 +1,26 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= cyrus-sasl2 PORTVERSION= 2.1.23 PORTREVISION= 3 CATEGORIES= security linux DISTNAME= cyrus-sasl-lib-${PORTVERSION}-${RPMVERSION} -MASTER_SITES= CENTOS_LINUX MAINTAINER= emulation@FreeBSD.org COMMENT= RFC 2222 SASL (Simple Authentication and Security Layer) (Linux CentOS ${LINUX_DIST_VER}) ONLY_FOR_ARCHS= i386 amd64 -.if defined(PACKAGE_BUILDING) SRC_DISTFILES= cyrus-sasl-${PORTVERSION}-${RPMVERSION}${SRC_SUFX}:SOURCE -.endif USE_LINUX= c6 USE_LINUX_RPM= yes RPMVERSION= 15.el6_6.2 USE_LDCONFIG= yes BRANDELF_FILES= usr/sbin/sasldblistusers2 usr/sbin/saslpasswd2 DESCR= ${.CURDIR}/../cyrus-sasl2/pkg-descr DOCSDIR= usr/share/doc/cyrus-sasl-lib-${PORTVERSION} .include Index: head/security/linux-c6-cyrus-sasl2/distinfo.x86_64 =================================================================== --- head/security/linux-c6-cyrus-sasl2/distinfo.x86_64 (revision 413167) +++ head/security/linux-c6-cyrus-sasl2/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/cyrus-sasl-lib-2.1.23-15.el6_6.2.x86_64.rpm) = 92bf37f8fba52b15726f6cade5bcf35c18acd305a3c472cb9360fedd515965bf SIZE (rpm/x86_64/centos/6.7/cyrus-sasl-lib-2.1.23-15.el6_6.2.x86_64.rpm) = 139644 +SHA256 (rpm/x86_64/centos/6.7/cyrus-sasl-lib-2.1.23-15.el6_6.2.i686.rpm) = fdff3dbb8d482d9c49d84abdb8421a622344eff4acb047aeeca8fea51823160a +SIZE (rpm/x86_64/centos/6.7/cyrus-sasl-lib-2.1.23-15.el6_6.2.i686.rpm) = 139208 SHA256 (rpm/x86_64/centos/6.7/cyrus-sasl-2.1.23-15.el6_6.2.src.rpm) = a12449366385bb4ad18c1639c79e8999013e9e5cbd90474dfcc3c9269d8554ee SIZE (rpm/x86_64/centos/6.7/cyrus-sasl-2.1.23-15.el6_6.2.src.rpm) = 1671069 Index: head/security/linux-c6-cyrus-sasl2/pkg-plist.x86_64 =================================================================== --- head/security/linux-c6-cyrus-sasl2/pkg-plist.x86_64 (revision 413167) +++ head/security/linux-c6-cyrus-sasl2/pkg-plist.x86_64 (revision 413168) @@ -1,30 +1,38 @@ +usr/lib/libsasl2.so.2 +usr/lib/libsasl2.so.2.0.23 +usr/lib/sasl2/libanonymous.so +usr/lib/sasl2/libanonymous.so.2 +usr/lib/sasl2/libanonymous.so.2.0.23 +usr/lib/sasl2/libsasldb.so +usr/lib/sasl2/libsasldb.so.2 +usr/lib/sasl2/libsasldb.so.2.0.23 usr/lib64/libsasl2.so.2 usr/lib64/libsasl2.so.2.0.23 usr/lib64/sasl2/libanonymous.so usr/lib64/sasl2/libanonymous.so.2 usr/lib64/sasl2/libanonymous.so.2.0.23 usr/lib64/sasl2/libsasldb.so usr/lib64/sasl2/libsasldb.so.2 usr/lib64/sasl2/libsasldb.so.2.0.23 usr/sbin/sasldblistusers2 usr/sbin/saslpasswd2 %%PORTDOCS%%%%DOCSDIR%%/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/COPYING %%PORTDOCS%%%%DOCSDIR%%/NEWS %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/advanced.html %%PORTDOCS%%%%DOCSDIR%%/appconvert.html %%PORTDOCS%%%%DOCSDIR%%/components.html %%PORTDOCS%%%%DOCSDIR%%/gssapi.html %%PORTDOCS%%%%DOCSDIR%%/index.html %%PORTDOCS%%%%DOCSDIR%%/install.html %%PORTDOCS%%%%DOCSDIR%%/macosx.html %%PORTDOCS%%%%DOCSDIR%%/mechanisms.html %%PORTDOCS%%%%DOCSDIR%%/options.html %%PORTDOCS%%%%DOCSDIR%%/plugprog.html %%PORTDOCS%%%%DOCSDIR%%/programming.html %%PORTDOCS%%%%DOCSDIR%%/readme.html %%PORTDOCS%%%%DOCSDIR%%/sysadmin.html %%PORTDOCS%%%%DOCSDIR%%/upgrading.html %%PORTDOCS%%%%DOCSDIR%%/windows.html @dir etc/sasl2 Property changes on: head/security/linux-c6-cyrus-sasl2/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/security/linux-c6-gnutls/distinfo.x86_64 =================================================================== --- head/security/linux-c6-gnutls/distinfo.x86_64 (revision 413167) +++ head/security/linux-c6-gnutls/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/gnutls-2.8.5-18.el6.x86_64.rpm) = cab4e1d03500f85296e0f46203e6ac009b89aca5fdeca717a2955954b3acec92 SIZE (rpm/x86_64/centos/6.7/gnutls-2.8.5-18.el6.x86_64.rpm) = 355380 +SHA256 (rpm/x86_64/centos/6.7/gnutls-2.8.5-18.el6.i686.rpm) = 8b349c15aa647ff247d657cc2a97990d87a702aa728adc78f60b791e49dee5f5 +SIZE (rpm/x86_64/centos/6.7/gnutls-2.8.5-18.el6.i686.rpm) = 349588 SHA256 (rpm/x86_64/centos/6.7/gnutls-2.8.5-18.el6.src.rpm) = 1b2911b1a6716d382dd5aaafc17d87035de618a689d0a47eed2f91ed457299b7 SIZE (rpm/x86_64/centos/6.7/gnutls-2.8.5-18.el6.src.rpm) = 6329737 Index: head/security/linux-c6-gnutls/pkg-plist.x86_64 =================================================================== --- head/security/linux-c6-gnutls/pkg-plist.x86_64 (revision 413167) +++ head/security/linux-c6-gnutls/pkg-plist.x86_64 (revision 413168) @@ -1,20 +1,26 @@ +usr/lib/libgnutls-extra.so.26.14.12 +usr/lib/libgnutls-extra.so.26 +usr/lib/libgnutls.so.26.14.12 +usr/lib/libgnutls.so.26 +usr/lib/libgnutlsxx.so.26.14.12 +usr/lib/libgnutlsxx.so.26 usr/lib64/libgnutls-extra.so.26.14.12 usr/lib64/libgnutls-extra.so.26 usr/lib64/libgnutls.so.26.14.12 usr/lib64/libgnutls.so.26 usr/lib64/libgnutlsxx.so.26.14.12 usr/lib64/libgnutlsxx.so.26 usr/share/doc/gnutls-%%PORTVERSION%%/AUTHORS usr/share/doc/gnutls-%%PORTVERSION%%/COPYING usr/share/doc/gnutls-%%PORTVERSION%%/COPYING.LIB usr/share/doc/gnutls-%%PORTVERSION%%/README usr/share/locale/cs/LC_MESSAGES/libgnutls.mo usr/share/locale/de/LC_MESSAGES/libgnutls.mo usr/share/locale/en@boldquot/LC_MESSAGES/libgnutls.mo usr/share/locale/en@quot/LC_MESSAGES/libgnutls.mo usr/share/locale/fr/LC_MESSAGES/libgnutls.mo usr/share/locale/ms/LC_MESSAGES/libgnutls.mo usr/share/locale/nl/LC_MESSAGES/libgnutls.mo usr/share/locale/pl/LC_MESSAGES/libgnutls.mo usr/share/locale/sv/LC_MESSAGES/libgnutls.mo usr/share/locale/vi/LC_MESSAGES/libgnutls.mo Property changes on: head/security/linux-c6-gnutls/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/security/linux-c6-libgcrypt/distinfo.x86_64 =================================================================== --- head/security/linux-c6-libgcrypt/distinfo.x86_64 (revision 413167) +++ head/security/linux-c6-libgcrypt/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/libgcrypt-1.4.5-11.el6_4.x86_64.rpm) = bdda38f5a6dbfe6a1d07dd6d5f38aace66ff0a19c4575c834a6fdb0f8a226c01 SIZE (rpm/x86_64/centos/6.7/libgcrypt-1.4.5-11.el6_4.x86_64.rpm) = 234008 +SHA256 (rpm/x86_64/centos/6.7/libgcrypt-1.4.5-11.el6_4.i686.rpm) = 800d11a507a330b28e59d300bf7383b19c95b5a857863b1501b8aa1f0b9388dc +SIZE (rpm/x86_64/centos/6.7/libgcrypt-1.4.5-11.el6_4.i686.rpm) = 233684 SHA256 (rpm/x86_64/centos/6.7/libgcrypt-1.4.5-11.el6_4.src.rpm) = c963b5bf4c84d5798d987e86b4e600ce3c7ae03e035096d88982385a81dcdbbc SIZE (rpm/x86_64/centos/6.7/libgcrypt-1.4.5-11.el6_4.src.rpm) = 1257444 Index: head/security/linux-c6-libgcrypt/pkg-plist.x86_64 =================================================================== --- head/security/linux-c6-libgcrypt/pkg-plist.x86_64 (revision 413167) +++ head/security/linux-c6-libgcrypt/pkg-plist.x86_64 (revision 413168) @@ -1,4 +1,7 @@ +lib/.libgcrypt.so.11.hmac +lib/libgcrypt.so.11 +lib/libgcrypt.so.11.5.3 lib64/.libgcrypt.so.11.hmac lib64/libgcrypt.so.11 lib64/libgcrypt.so.11.5.3 @dir etc/gcrypt Property changes on: head/security/linux-c6-libgcrypt/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/security/linux-c6-libgpg-error/distinfo.x86_64 =================================================================== --- head/security/linux-c6-libgpg-error/distinfo.x86_64 (revision 413167) +++ head/security/linux-c6-libgpg-error/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/libgpg-error-1.7-4.el6.x86_64.rpm) = cb494b9932409f9b592d213b8cf8f3ef2ca9a7af16b9cdfcca7998e33a20674a SIZE (rpm/x86_64/centos/6.7/libgpg-error-1.7-4.el6.x86_64.rpm) = 60628 +SHA256 (rpm/x86_64/centos/6.7/libgpg-error-1.7-4.el6.i686.rpm) = ee1e0dfaa0e6bf4e06b1d6f1f3ce7da90abe8b1d1d46fe61bc1fe79e3227c4ad +SIZE (rpm/x86_64/centos/6.7/libgpg-error-1.7-4.el6.i686.rpm) = 60532 SHA256 (rpm/x86_64/centos/6.7/libgpg-error-1.7-4.el6.src.rpm) = 955d0a4d5aaa3539c7a58d94cef41ef09a0d8cc08c0aeb5b0986c623aebd53be SIZE (rpm/x86_64/centos/6.7/libgpg-error-1.7-4.el6.src.rpm) = 413579 Index: head/security/linux-c6-libgpg-error/pkg-plist.x86_64 =================================================================== --- head/security/linux-c6-libgpg-error/pkg-plist.x86_64 (revision 413167) +++ head/security/linux-c6-libgpg-error/pkg-plist.x86_64 (revision 413168) @@ -1,15 +1,17 @@ +lib/libgpg-error.so.0 +lib/libgpg-error.so.0.5.0 lib64/libgpg-error.so.0 lib64/libgpg-error.so.0.5.0 usr/bin/gpg-error usr/share/doc/libgpg-error-1.7/AUTHORS usr/share/doc/libgpg-error-1.7/COPYING usr/share/doc/libgpg-error-1.7/COPYING.LIB usr/share/doc/libgpg-error-1.7/ChangeLog usr/share/doc/libgpg-error-1.7/NEWS usr/share/doc/libgpg-error-1.7/README usr/share/locale/de/LC_MESSAGES/libgpg-error.mo usr/share/locale/fr/LC_MESSAGES/libgpg-error.mo usr/share/locale/pl/LC_MESSAGES/libgpg-error.mo usr/share/locale/ro/LC_MESSAGES/libgpg-error.mo usr/share/locale/sv/LC_MESSAGES/libgpg-error.mo usr/share/locale/vi/LC_MESSAGES/libgpg-error.mo Property changes on: head/security/linux-c6-libgpg-error/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/security/linux-c6-libssh2/distinfo.x86_64 =================================================================== --- head/security/linux-c6-libssh2/distinfo.x86_64 (revision 413167) +++ head/security/linux-c6-libssh2/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/libssh2-1.4.2-1.el6_6.1.x86_64.rpm) = 2e07438d7789237523d415dd3a92d99215867b7641ad267b424880b0dca9c89c SIZE (rpm/x86_64/centos/6.7/libssh2-1.4.2-1.el6_6.1.x86_64.rpm) = 125616 +SHA256 (rpm/x86_64/centos/6.7/libssh2-1.4.2-1.el6_6.1.i686.rpm) = 28ab4d79c33a10d055b6eed05dc0c2051e9abb5932a69889cb2f70bb2172a7b7 +SIZE (rpm/x86_64/centos/6.7/libssh2-1.4.2-1.el6_6.1.i686.rpm) = 127032 SHA256 (rpm/x86_64/centos/6.7/libssh2-1.4.2-1.el6_6.1.src.rpm) = 10684ae17a697ab8cce1cfca1dcd8915c0a7d2a5f4e84f568bf52dabe97c1c6c SIZE (rpm/x86_64/centos/6.7/libssh2-1.4.2-1.el6_6.1.src.rpm) = 693407 Index: head/security/linux-c6-libssh2/pkg-plist.x86_64 =================================================================== --- head/security/linux-c6-libssh2/pkg-plist.x86_64 (revision 413167) +++ head/security/linux-c6-libssh2/pkg-plist.x86_64 (revision 413168) @@ -1,2 +1,4 @@ +usr/lib/libssh2.so.1 +usr/lib/libssh2.so.1.0.1 usr/lib64/libssh2.so.1 usr/lib64/libssh2.so.1.0.1 Property changes on: head/security/linux-c6-libssh2/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/security/linux-c6-libtasn1/distinfo.x86_64 =================================================================== --- head/security/linux-c6-libtasn1/distinfo.x86_64 (revision 413167) +++ head/security/linux-c6-libtasn1/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/libtasn1-2.3-6.el6_5.x86_64.rpm) = ee516dac9b0d36fbee5f77e443be13a7e4ca60c3f3105bdc50e112c7ae834780 SIZE (rpm/x86_64/centos/6.7/libtasn1-2.3-6.el6_5.x86_64.rpm) = 243868 +SHA256 (rpm/x86_64/centos/6.7/libtasn1-2.3-6.el6_5.i686.rpm) = 159a21c14eec8ba904bb9940116d1e43ea73c164522f5665c0556bf478e23ca4 +SIZE (rpm/x86_64/centos/6.7/libtasn1-2.3-6.el6_5.i686.rpm) = 245140 SHA256 (rpm/x86_64/centos/6.7/libtasn1-2.3-6.el6_5.src.rpm) = 24fe6cafdf3ed4c45d49395bdfd7a73e1a4b8c7fab9503fea801a6b68234b199 SIZE (rpm/x86_64/centos/6.7/libtasn1-2.3-6.el6_5.src.rpm) = 1501312 Index: head/security/linux-c6-libtasn1/pkg-plist.x86_64 =================================================================== --- head/security/linux-c6-libtasn1/pkg-plist.x86_64 (revision 413167) +++ head/security/linux-c6-libtasn1/pkg-plist.x86_64 (revision 413168) @@ -1,2 +1,4 @@ +usr/lib/libtasn1.so.3 +usr/lib/libtasn1.so.3.1.6 usr/lib64/libtasn1.so.3 usr/lib64/libtasn1.so.3.1.6 Property changes on: head/security/linux-c6-libtasn1/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/security/linux-c6-nss/Makefile =================================================================== --- head/security/linux-c6-nss/Makefile (revision 413167) +++ head/security/linux-c6-nss/Makefile (revision 413168) @@ -1,32 +1,33 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= nss PORTVERSION= 3.19.1 CATEGORIES= security linux MASTER_SITES= CENTOS_LINUX CENTOS_LINUX_UPDATES -DISTFILES= ${PORTNAME}-${PORTVERSION}-${RPMVERSION}.${LINUX_RPM_ARCH}.rpm \ +DISTFILES= # +LIB_DISTFILES= ${PORTNAME}-${PORTVERSION}-${RPMVERSION}.${LINUX_RPM_ARCH}.rpm \ nss-util-3.19.1-2.el6_7.${LINUX_RPM_ARCH}.rpm \ nss-softokn-3.14.3-23.el6_7.${LINUX_RPM_ARCH}.rpm \ nss-softokn-freebl-3.14.3-23.el6_7.${LINUX_RPM_ARCH}.rpm MAINTAINER= emulation@FreeBSD.org COMMENT= Network Security Services (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-f10-nss-[0-9]* ONLY_FOR_ARCHS= i386 amd64 RPMVERSION= 5.el6_7 USE_LINUX= c6 USE_LINUX_APPS= nspr sqlite3 USE_LINUX_RPM= yes USE_LDCONFIG= yes SRC_DISTFILES= ${PORTNAME}-${PORTVERSION}-${RPMVERSION}${SRC_SUFX}:SOURCE \ nss-util-3.19.1-2.el6_7.src.rpm:SOURCE \ nss-softokn-3.14.3-23.el6_7.src.rpm:SOURCE DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr .include Index: head/security/linux-c6-nss/distinfo.x86_64 =================================================================== --- head/security/linux-c6-nss/distinfo.x86_64 (revision 413167) +++ head/security/linux-c6-nss/distinfo.x86_64 (revision 413168) @@ -1,14 +1,22 @@ SHA256 (rpm/x86_64/centos/6.7/nss-3.19.1-5.el6_7.x86_64.rpm) = 1e26eb517f2c9ef4ea97906fac1a9b919feb69c202b2c8a455605138a8d28981 SIZE (rpm/x86_64/centos/6.7/nss-3.19.1-5.el6_7.x86_64.rpm) = 877136 SHA256 (rpm/x86_64/centos/6.7/nss-util-3.19.1-2.el6_7.x86_64.rpm) = 3050110e0f9737ecb291a6a3b5a4889454eb05785c6408ec8ab674e5491c2fd4 SIZE (rpm/x86_64/centos/6.7/nss-util-3.19.1-2.el6_7.x86_64.rpm) = 68016 SHA256 (rpm/x86_64/centos/6.7/nss-softokn-3.14.3-23.el6_7.x86_64.rpm) = 4b01afc8e522112ad555a9ff8055f612690f36278a5ffe0a9758384616c975aa SIZE (rpm/x86_64/centos/6.7/nss-softokn-3.14.3-23.el6_7.x86_64.rpm) = 268256 SHA256 (rpm/x86_64/centos/6.7/nss-softokn-freebl-3.14.3-23.el6_7.x86_64.rpm) = 21daeb0da2a7bfdbad5eec9af53bd5544519fb3408a4e5ca639a87f083d647bd SIZE (rpm/x86_64/centos/6.7/nss-softokn-freebl-3.14.3-23.el6_7.x86_64.rpm) = 171236 +SHA256 (rpm/x86_64/centos/6.7/nss-3.19.1-5.el6_7.i686.rpm) = e393b4dd10cbe47688991416f534c60cb02aac06c8e3e498a29ef773e05845ee +SIZE (rpm/x86_64/centos/6.7/nss-3.19.1-5.el6_7.i686.rpm) = 880772 +SHA256 (rpm/x86_64/centos/6.7/nss-util-3.19.1-2.el6_7.i686.rpm) = 2244ada80af9a50e7159f2b15d583c95d52a8fcf64bf24741a9ef43cae60ba7c +SIZE (rpm/x86_64/centos/6.7/nss-util-3.19.1-2.el6_7.i686.rpm) = 67524 +SHA256 (rpm/x86_64/centos/6.7/nss-softokn-3.14.3-23.el6_7.i686.rpm) = 5fcfe60107924f132e329a7c3106262b67498960c167f311770257670f955394 +SIZE (rpm/x86_64/centos/6.7/nss-softokn-3.14.3-23.el6_7.i686.rpm) = 276044 +SHA256 (rpm/x86_64/centos/6.7/nss-softokn-freebl-3.14.3-23.el6_7.i686.rpm) = e18491a0502de2be4bec0921f7d781e18e175b6c8ad81ca0c164ea75132b5fc3 +SIZE (rpm/x86_64/centos/6.7/nss-softokn-freebl-3.14.3-23.el6_7.i686.rpm) = 160752 SHA256 (rpm/x86_64/centos/6.7/nss-3.19.1-5.el6_7.src.rpm) = 95999daa348612d669a0fc66981e9cccc8dd64021b5bd558a84d351fb9204fc0 SIZE (rpm/x86_64/centos/6.7/nss-3.19.1-5.el6_7.src.rpm) = 5605341 SHA256 (rpm/x86_64/centos/6.7/nss-util-3.19.1-2.el6_7.src.rpm) = 29270259046ca34f5c7039c0ca5160e02a2877f1a074bf05d0060b56e5a1461b SIZE (rpm/x86_64/centos/6.7/nss-util-3.19.1-2.el6_7.src.rpm) = 753607 SHA256 (rpm/x86_64/centos/6.7/nss-softokn-3.14.3-23.el6_7.src.rpm) = 9a102fb89f11aace8fd00ee6d96a4306e55096600e949b71439c4a8c79554a91 SIZE (rpm/x86_64/centos/6.7/nss-softokn-3.14.3-23.el6_7.src.rpm) = 1303804 Index: head/security/linux-c6-nss/pkg-plist.x86_64 =================================================================== --- head/security/linux-c6-nss/pkg-plist.x86_64 (revision 413167) +++ head/security/linux-c6-nss/pkg-plist.x86_64 (revision 413168) @@ -1,27 +1,49 @@ +etc/prelink.conf.d/nss-softokn-prelink.conf etc/pki/nssdb/cert8.db etc/pki/nssdb/key3.db etc/pki/nssdb/secmod.db -etc/prelink.conf.d/nss-softokn-prelink.conf +lib/libfreebl3.chk +lib/libfreebl3.so +lib/libfreeblpriv3.chk +lib/libfreeblpriv3.so lib64/libfreebl3.chk lib64/libfreebl3.so lib64/libfreeblpriv3.chk lib64/libfreeblpriv3.so +usr/lib/libfreebl3.chk +usr/lib/libfreebl3.so +usr/lib/libfreeblpriv3.chk +usr/lib/libfreeblpriv3.so +usr/lib/libnss3.so +usr/lib/nss/libnssckbi.so +usr/lib/libnssdbm3.chk +usr/lib/libnssdbm3.so +usr/lib/libnsspem.so +usr/lib/libnssutil3.so +usr/lib/libsmime3.so +usr/lib/libssl3.so +usr/lib/libsoftokn3.chk +usr/lib/libsoftokn3.so +usr/lib/nss/unsupported-tools/shlibsign +usr/lib/nss/unsupported-tools/bltest +usr/lib/nss/unsupported-tools/fipstest usr/lib64/libfreebl3.chk usr/lib64/libfreebl3.so usr/lib64/libfreeblpriv3.chk usr/lib64/libfreeblpriv3.so usr/lib64/libnss3.so usr/lib64/nss/libnssckbi.so usr/lib64/libnssdbm3.chk usr/lib64/libnssdbm3.so usr/lib64/libnsspem.so usr/lib64/libnssutil3.so usr/lib64/libsmime3.so usr/lib64/libssl3.so usr/lib64/libsoftokn3.chk usr/lib64/libsoftokn3.so usr/lib64/nss/unsupported-tools/shlibsign usr/lib64/nss/unsupported-tools/bltest usr/lib64/nss/unsupported-tools/fipstest usr/share/dracut/modules.d/05nss-softokn/install +@dir usr/lib/nss/saved @dir usr/lib64/nss/saved Index: head/security/linux-c6-openssl/Makefile =================================================================== --- head/security/linux-c6-openssl/Makefile (revision 413167) +++ head/security/linux-c6-openssl/Makefile (revision 413168) @@ -1,25 +1,25 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= openssl PORTVERSION= 1.0.1e -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= security linux -MASTER_SITES= CENTOS_LINUX +MASTER_SITES= CENTOS_LINUX CENTOS_LINUX_UPDATES MAINTAINER= emulation@FreeBSD.org COMMENT= OpenSSL toolkit (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-openssl-[0-9]* linux-f8-openssl-[0-9]* linux-f10-openssl-[0-9]* ONLY_FOR_ARCHS= i386 amd64 USE_LINUX= c6 USE_LINUX_RPM= yes -RPMVERSION= 42.el6 +RPMVERSION= 42.el6_7.2 BRANDELF_FILES= usr/bin/openssl USE_LDCONFIG= yes PLIST_SUB+= PORTVERSION="${PORTVERSION}" DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr .include Index: head/security/linux-c6-openssl/distinfo.i686 =================================================================== --- head/security/linux-c6-openssl/distinfo.i686 (revision 413167) +++ head/security/linux-c6-openssl/distinfo.i686 (revision 413168) @@ -1,4 +1,4 @@ -SHA256 (rpm/i686/centos/6.7/openssl-1.0.1e-42.el6.i686.rpm) = c20617b88c1e2e24f21b3cdc8b0a31cd4892684d645081deb7e442d5a3473404 -SIZE (rpm/i686/centos/6.7/openssl-1.0.1e-42.el6.i686.rpm) = 1587540 -SHA256 (rpm/i686/centos/6.7/openssl-1.0.1e-42.el6.src.rpm) = de0f0f199b1ad14b927a2f1a16efc0c1cca383ade5734ce391b1138bcc00fae6 -SIZE (rpm/i686/centos/6.7/openssl-1.0.1e-42.el6.src.rpm) = 3210415 +SHA256 (rpm/i686/centos/6.7/openssl-1.0.1e-42.el6_7.2.i686.rpm) = 294dd4d262e0e6ced0ea46ec41556780a73ed6be5e2f163b1a1dd046e6426b11 +SIZE (rpm/i686/centos/6.7/openssl-1.0.1e-42.el6_7.2.i686.rpm) = 1587664 +SHA256 (rpm/i686/centos/6.7/openssl-1.0.1e-42.el6_7.2.src.rpm) = 71b15225d25f43a7ffbfc07d2704adcdab4b832cf8a893d656e0cdb9608d0181 +SIZE (rpm/i686/centos/6.7/openssl-1.0.1e-42.el6_7.2.src.rpm) = 3213048 Index: head/security/linux-c6-openssl/distinfo.x86_64 =================================================================== --- head/security/linux-c6-openssl/distinfo.x86_64 (revision 413167) +++ head/security/linux-c6-openssl/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ -SHA256 (rpm/x86_64/centos/6.7/openssl-1.0.1e-42.el6.x86_64.rpm) = 77efd96ec477969f9d9173a43d9e56b0cd4bb305477de861701dd0821291aef6 -SIZE (rpm/x86_64/centos/6.7/openssl-1.0.1e-42.el6.x86_64.rpm) = 1593932 -SHA256 (rpm/x86_64/centos/6.7/openssl-1.0.1e-42.el6.src.rpm) = de0f0f199b1ad14b927a2f1a16efc0c1cca383ade5734ce391b1138bcc00fae6 -SIZE (rpm/x86_64/centos/6.7/openssl-1.0.1e-42.el6.src.rpm) = 3210415 +SHA256 (rpm/x86_64/centos/6.7/openssl-1.0.1e-42.el6_7.2.x86_64.rpm) = c401f48ad5c6ea107b03da9282f0add66b1b61be8ed20191d8b0c8a17f32096d +SIZE (rpm/x86_64/centos/6.7/openssl-1.0.1e-42.el6_7.2.x86_64.rpm) = 1594104 +SHA256 (rpm/x86_64/centos/6.7/openssl-1.0.1e-42.el6_7.2.i686.rpm) = 294dd4d262e0e6ced0ea46ec41556780a73ed6be5e2f163b1a1dd046e6426b11 +SIZE (rpm/x86_64/centos/6.7/openssl-1.0.1e-42.el6_7.2.i686.rpm) = 1587664 +SHA256 (rpm/x86_64/centos/6.7/openssl-1.0.1e-42.el6_7.2.src.rpm) = 71b15225d25f43a7ffbfc07d2704adcdab4b832cf8a893d656e0cdb9608d0181 +SIZE (rpm/x86_64/centos/6.7/openssl-1.0.1e-42.el6_7.2.src.rpm) = 3213048 Index: head/security/linux-c6-openssl/pkg-plist.x86_64 =================================================================== --- head/security/linux-c6-openssl/pkg-plist.x86_64 (revision 413167) +++ head/security/linux-c6-openssl/pkg-plist.x86_64 (revision 413168) @@ -1,101 +1,119 @@ -@comment file listing etc/pki/tls/certs/Makefile etc/pki/tls/certs/make-dummy-cert etc/pki/tls/certs/renew-dummy-cert etc/pki/tls/misc/CA etc/pki/tls/misc/c_hash etc/pki/tls/misc/c_info etc/pki/tls/misc/c_issuer etc/pki/tls/misc/c_name etc/pki/tls/openssl.cnf -usr/lib64/libcrypto.so.%%PORTVERSION%% -usr/lib64/libcrypto.so.10 -usr/lib64/libssl.so.%%PORTVERSION%% -usr/lib64/libssl.so.10 +usr/bin/openssl +usr/lib/.libcrypto.so.%%PORTVERSION%%.hmac +usr/lib/.libcrypto.so.10.hmac +usr/lib/.libssl.so.%%PORTVERSION%%.hmac +usr/lib/.libssl.so.10.hmac +usr/lib/libcrypto.so.%%PORTVERSION%% +usr/lib/libcrypto.so.10 +usr/lib/libssl.so.%%PORTVERSION%% +usr/lib/libssl.so.10 +usr/lib/openssl/engines/lib4758cca.so +usr/lib/openssl/engines/libaep.so +usr/lib/openssl/engines/libatalla.so +usr/lib/openssl/engines/libcapi.so +usr/lib/openssl/engines/libchil.so +usr/lib/openssl/engines/libcswift.so +usr/lib/openssl/engines/libgmp.so +usr/lib/openssl/engines/libnuron.so +usr/lib/openssl/engines/libpadlock.so +usr/lib/openssl/engines/libsureware.so +usr/lib/openssl/engines/libubsec.so usr/lib64/.libcrypto.so.%%PORTVERSION%%.hmac usr/lib64/.libcrypto.so.10.hmac usr/lib64/.libssl.so.%%PORTVERSION%%.hmac usr/lib64/.libssl.so.10.hmac -usr/bin/openssl +usr/lib64/libcrypto.so.%%PORTVERSION%% +usr/lib64/libcrypto.so.10 +usr/lib64/libssl.so.%%PORTVERSION%% +usr/lib64/libssl.so.10 usr/lib64/openssl/engines/lib4758cca.so usr/lib64/openssl/engines/libaep.so usr/lib64/openssl/engines/libatalla.so usr/lib64/openssl/engines/libcapi.so usr/lib64/openssl/engines/libchil.so usr/lib64/openssl/engines/libcswift.so usr/lib64/openssl/engines/libgmp.so usr/lib64/openssl/engines/libnuron.so usr/lib64/openssl/engines/libpadlock.so usr/lib64/openssl/engines/libsureware.so usr/lib64/openssl/engines/libubsec.so -usr/share/doc/openssl-%%PORTVERSION%%/CHANGES -usr/share/doc/openssl-%%PORTVERSION%%/FAQ -usr/share/doc/openssl-%%PORTVERSION%%/INSTALL -usr/share/doc/openssl-%%PORTVERSION%%/LICENSE -usr/share/doc/openssl-%%PORTVERSION%%/NEWS -usr/share/doc/openssl-%%PORTVERSION%%/README -usr/share/doc/openssl-%%PORTVERSION%%/README.FIPS -usr/share/doc/openssl-%%PORTVERSION%%/c-indentation.el -usr/share/doc/openssl-%%PORTVERSION%%/openssl.txt -usr/share/doc/openssl-%%PORTVERSION%%/openssl_button.gif -usr/share/doc/openssl-%%PORTVERSION%%/openssl_button.html -usr/share/doc/openssl-%%PORTVERSION%%/ssleay.txt +%%PORTDOCS%%usr/%%DOCSDIR%%-%%PORTVERSION%%/CHANGES +%%PORTDOCS%%usr/%%DOCSDIR%%-%%PORTVERSION%%/FAQ +%%PORTDOCS%%usr/%%DOCSDIR%%-%%PORTVERSION%%/INSTALL +%%PORTDOCS%%usr/%%DOCSDIR%%-%%PORTVERSION%%/LICENSE +%%PORTDOCS%%usr/%%DOCSDIR%%-%%PORTVERSION%%/NEWS +%%PORTDOCS%%usr/%%DOCSDIR%%-%%PORTVERSION%%/README +%%PORTDOCS%%usr/%%DOCSDIR%%-%%PORTVERSION%%/README.FIPS +%%PORTDOCS%%usr/%%DOCSDIR%%-%%PORTVERSION%%/c-indentation.el +%%PORTDOCS%%usr/%%DOCSDIR%%-%%PORTVERSION%%/openssl.txt +%%PORTDOCS%%usr/%%DOCSDIR%%-%%PORTVERSION%%/openssl_button.gif +%%PORTDOCS%%usr/%%DOCSDIR%%-%%PORTVERSION%%/openssl_button.html +%%PORTDOCS%%usr/%%DOCSDIR%%-%%PORTVERSION%%/ssleay.txt usr/share/man/man1/asn1parse.1ssl.gz usr/share/man/man1/ca.1ssl.gz usr/share/man/man1/ciphers.1ssl.gz -usr/share/man/man1/crl.1ssl.gz usr/share/man/man1/cms.1ssl.gz -usr/share/man/man1/genpkey.1ssl.gz -usr/share/man/man1/pkey.1ssl.gz -usr/share/man/man1/pkeyparam.1ssl.gz -usr/share/man/man1/pkeyutl.1ssl.gz -usr/share/man/man1/ts.1ssl.gz -usr/share/man/man1/tsget.1ssl.gz +usr/share/man/man1/crl.1ssl.gz usr/share/man/man1/crl2pkcs7.1ssl.gz usr/share/man/man1/dgst.1ssl.gz usr/share/man/man1/dhparam.1ssl.gz usr/share/man/man1/dsa.1ssl.gz usr/share/man/man1/dsaparam.1ssl.gz usr/share/man/man1/ec.1ssl.gz usr/share/man/man1/ecparam.1ssl.gz usr/share/man/man1/enc.1ssl.gz usr/share/man/man1/errstr.1ssl.gz usr/share/man/man1/gendsa.1ssl.gz +usr/share/man/man1/genpkey.1ssl.gz usr/share/man/man1/genrsa.1ssl.gz usr/share/man/man1/md2.1ssl.gz usr/share/man/man1/md4.1ssl.gz usr/share/man/man1/md5.1ssl.gz usr/share/man/man1/mdc2.1ssl.gz usr/share/man/man1/nseq.1ssl.gz usr/share/man/man1/ocsp.1ssl.gz usr/share/man/man1/openssl.1ssl.gz usr/share/man/man1/pkcs12.1ssl.gz usr/share/man/man1/pkcs7.1ssl.gz usr/share/man/man1/pkcs8.1ssl.gz +usr/share/man/man1/pkey.1ssl.gz +usr/share/man/man1/pkeyparam.1ssl.gz +usr/share/man/man1/pkeyutl.1ssl.gz usr/share/man/man1/req.1ssl.gz usr/share/man/man1/ripemd160.1ssl.gz usr/share/man/man1/rsa.1ssl.gz usr/share/man/man1/rsautl.1ssl.gz usr/share/man/man1/s_client.1ssl.gz usr/share/man/man1/s_server.1ssl.gz usr/share/man/man1/s_time.1ssl.gz usr/share/man/man1/sess_id.1ssl.gz usr/share/man/man1/sha.1ssl.gz usr/share/man/man1/sha1.1ssl.gz usr/share/man/man1/smime.1ssl.gz usr/share/man/man1/speed.1ssl.gz usr/share/man/man1/spkac.1ssl.gz usr/share/man/man1/sslpasswd.1ssl.gz usr/share/man/man1/sslrand.1ssl.gz +usr/share/man/man1/ts.1ssl.gz +usr/share/man/man1/tsget.1ssl.gz usr/share/man/man1/verify.1ssl.gz usr/share/man/man1/version.1ssl.gz usr/share/man/man1/x509.1ssl.gz usr/share/man/man5/config.5ssl.gz usr/share/man/man5/openssl.cnf.5ssl.gz usr/share/man/man5/x509v3_config.5ssl.gz usr/share/man/man7/des_modes.7ssl.gz -@dir etc/pki/CA/private @dir etc/pki/CA/certs @dir etc/pki/CA/crl @dir etc/pki/CA/newcerts +@dir etc/pki/CA/private @dir etc/pki/tls/private Property changes on: head/security/linux-c6-openssl/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/security/linux-c6-openssl-compat/distinfo.x86_64 =================================================================== --- head/security/linux-c6-openssl-compat/distinfo.x86_64 (revision 413167) +++ head/security/linux-c6-openssl-compat/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/openssl098e-0.9.8e-18.el6_5.2.x86_64.rpm) = 5da4e81c728ae6199597cdd1107e244b7920e1d3425828db435bff7b22c62509 SIZE (rpm/x86_64/centos/6.7/openssl098e-0.9.8e-18.el6_5.2.x86_64.rpm) = 779620 +SHA256 (rpm/x86_64/centos/6.7/openssl098e-0.9.8e-18.el6_5.2.i686.rpm) = 4911acddf50a3f48cc5d2ce6f4011193a06112142a2d93e7e9f36aa7fd44e1bd +SIZE (rpm/x86_64/centos/6.7/openssl098e-0.9.8e-18.el6_5.2.i686.rpm) = 791692 SHA256 (rpm/x86_64/centos/6.7/openssl098e-0.9.8e-18.el6_5.2.src.rpm) = 25cdd2928d00f8aec7e84cd5937ecf9ad869256c980634a9c7132e75cfeccce2 SIZE (rpm/x86_64/centos/6.7/openssl098e-0.9.8e-18.el6_5.2.src.rpm) = 3101400 Index: head/security/linux-c6-openssl-compat/pkg-plist.x86_64 =================================================================== --- head/security/linux-c6-openssl-compat/pkg-plist.x86_64 (revision 413167) +++ head/security/linux-c6-openssl-compat/pkg-plist.x86_64 (revision 413168) @@ -1,26 +1,42 @@ -@comment file listing -usr/lib64/.libcrypto.so.0.9.8e.hmac +usr/lib/.libcrypto.so.%%PORTVERSION%%.hmac +usr/lib/.libcrypto.so.6.hmac +usr/lib/.libssl.so.%%PORTVERSION%%.hmac +usr/lib/.libssl.so.6.hmac +usr/lib/libcrypto.so.%%PORTVERSION%% +usr/lib/libcrypto.so.6 +usr/lib/libssl.so.%%PORTVERSION%% +usr/lib/libssl.so.6 +usr/lib/openssl098e/engines/lib4758cca.so +usr/lib/openssl098e/engines/libaep.so +usr/lib/openssl098e/engines/libatalla.so +usr/lib/openssl098e/engines/libchil.so +usr/lib/openssl098e/engines/libcswift.so +usr/lib/openssl098e/engines/libgmp.so +usr/lib/openssl098e/engines/libnuron.so +usr/lib/openssl098e/engines/libsureware.so +usr/lib/openssl098e/engines/libubsec.so +usr/lib64/.libcrypto.so.%%PORTVERSION%%.hmac usr/lib64/.libcrypto.so.6.hmac -usr/lib64/.libssl.so.0.9.8e.hmac +usr/lib64/.libssl.so.%%PORTVERSION%%.hmac usr/lib64/.libssl.so.6.hmac -usr/lib64/libcrypto.so.0.9.8e +usr/lib64/libcrypto.so.%%PORTVERSION%% usr/lib64/libcrypto.so.6 -usr/lib64/libssl.so.0.9.8e +usr/lib64/libssl.so.%%PORTVERSION%% usr/lib64/libssl.so.6 usr/lib64/libssl.so.7 usr/lib64/openssl098e/engines/lib4758cca.so usr/lib64/openssl098e/engines/libaep.so usr/lib64/openssl098e/engines/libatalla.so usr/lib64/openssl098e/engines/libchil.so usr/lib64/openssl098e/engines/libcswift.so usr/lib64/openssl098e/engines/libgmp.so usr/lib64/openssl098e/engines/libnuron.so usr/lib64/openssl098e/engines/libsureware.so usr/lib64/openssl098e/engines/libubsec.so -usr/share/doc/openssl098e-0.9.8e/CHANGES -usr/share/doc/openssl098e-0.9.8e/FAQ -usr/share/doc/openssl098e-0.9.8e/INSTALL -usr/share/doc/openssl098e-0.9.8e/LICENSE -usr/share/doc/openssl098e-0.9.8e/NEWS -usr/share/doc/openssl098e-0.9.8e/README -usr/share/doc/openssl098e-0.9.8e/README.FIPS +usr/share/doc/openssl098e-%%PORTVERSION%%/CHANGES +usr/share/doc/openssl098e-%%PORTVERSION%%/FAQ +usr/share/doc/openssl098e-%%PORTVERSION%%/INSTALL +usr/share/doc/openssl098e-%%PORTVERSION%%/LICENSE +usr/share/doc/openssl098e-%%PORTVERSION%%/NEWS +usr/share/doc/openssl098e-%%PORTVERSION%%/README +usr/share/doc/openssl098e-%%PORTVERSION%%/README.FIPS Property changes on: head/security/linux-c6-openssl-compat/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/textproc/linux-c6-aspell/distinfo.x86_64 =================================================================== --- head/textproc/linux-c6-aspell/distinfo.x86_64 (revision 413167) +++ head/textproc/linux-c6-aspell/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/aspell-0.60.6-12.el6.x86_64.rpm) = 1fced5d3306d2e015033dfcb2b0fe40442472652106dc462104d82a041636586 SIZE (rpm/x86_64/centos/6.7/aspell-0.60.6-12.el6.x86_64.rpm) = 663640 +SHA256 (rpm/x86_64/centos/6.7/aspell-0.60.6-12.el6.i686.rpm) = 499329444b80698880b4c71d98addcf3fe7f7d1ed421c6d2e55a5cf4ebab6af2 +SIZE (rpm/x86_64/centos/6.7/aspell-0.60.6-12.el6.i686.rpm) = 644304 SHA256 (rpm/x86_64/centos/6.7/aspell-0.60.6-12.el6.src.rpm) = 2806d7c0b3a9a3d81f543b225429303164c542cbf9a4835e5ccd6a0f73bc5eb2 SIZE (rpm/x86_64/centos/6.7/aspell-0.60.6-12.el6.src.rpm) = 1776695 Index: head/textproc/linux-c6-aspell/pkg-plist.x86_64 =================================================================== --- head/textproc/linux-c6-aspell/pkg-plist.x86_64 (revision 413167) +++ head/textproc/linux-c6-aspell/pkg-plist.x86_64 (revision 413168) @@ -1,126 +1,209 @@ usr/bin/aspell usr/bin/ispell usr/bin/precat usr/bin/preunzip usr/bin/prezip usr/bin/prezip-bin usr/bin/run-with-aspell usr/bin/spell usr/bin/word-list-compress +usr/lib/aspell-0.60/ccpp.amf +usr/lib/aspell-0.60/comment.amf +usr/lib/aspell-0.60/context-filter.info +usr/lib/aspell-0.60/context-filter.so +usr/lib/aspell-0.60/cp1250.cmap +usr/lib/aspell-0.60/cp1250.cset +usr/lib/aspell-0.60/cp1251.cmap +usr/lib/aspell-0.60/cp1251.cset +usr/lib/aspell-0.60/cp1252.cmap +usr/lib/aspell-0.60/cp1252.cset +usr/lib/aspell-0.60/cp1253.cmap +usr/lib/aspell-0.60/cp1253.cset +usr/lib/aspell-0.60/cp1254.cmap +usr/lib/aspell-0.60/cp1254.cset +usr/lib/aspell-0.60/cp1255.cmap +usr/lib/aspell-0.60/cp1255.cset +usr/lib/aspell-0.60/cp1256.cmap +usr/lib/aspell-0.60/cp1256.cset +usr/lib/aspell-0.60/cp1257.cmap +usr/lib/aspell-0.60/cp1257.cset +usr/lib/aspell-0.60/cp1258.cmap +usr/lib/aspell-0.60/cp1258.cset +usr/lib/aspell-0.60/dvorak.kbd +usr/lib/aspell-0.60/email-filter.info +usr/lib/aspell-0.60/email-filter.so +usr/lib/aspell-0.60/email.amf +usr/lib/aspell-0.60/html-filter.info +usr/lib/aspell-0.60/html.amf +usr/lib/aspell-0.60/iso-8859-1.cmap +usr/lib/aspell-0.60/iso-8859-1.cset +usr/lib/aspell-0.60/iso-8859-10.cmap +usr/lib/aspell-0.60/iso-8859-10.cset +usr/lib/aspell-0.60/iso-8859-11.cmap +usr/lib/aspell-0.60/iso-8859-11.cset +usr/lib/aspell-0.60/iso-8859-13.cmap +usr/lib/aspell-0.60/iso-8859-13.cset +usr/lib/aspell-0.60/iso-8859-14.cmap +usr/lib/aspell-0.60/iso-8859-14.cset +usr/lib/aspell-0.60/iso-8859-15.cmap +usr/lib/aspell-0.60/iso-8859-15.cset +usr/lib/aspell-0.60/iso-8859-16.cmap +usr/lib/aspell-0.60/iso-8859-16.cset +usr/lib/aspell-0.60/iso-8859-2.cmap +usr/lib/aspell-0.60/iso-8859-2.cset +usr/lib/aspell-0.60/iso-8859-3.cmap +usr/lib/aspell-0.60/iso-8859-3.cset +usr/lib/aspell-0.60/iso-8859-4.cmap +usr/lib/aspell-0.60/iso-8859-4.cset +usr/lib/aspell-0.60/iso-8859-5.cmap +usr/lib/aspell-0.60/iso-8859-5.cset +usr/lib/aspell-0.60/iso-8859-6.cmap +usr/lib/aspell-0.60/iso-8859-6.cset +usr/lib/aspell-0.60/iso-8859-7.cmap +usr/lib/aspell-0.60/iso-8859-7.cset +usr/lib/aspell-0.60/iso-8859-8.cmap +usr/lib/aspell-0.60/iso-8859-8.cset +usr/lib/aspell-0.60/iso-8859-9.cmap +usr/lib/aspell-0.60/iso-8859-9.cset +usr/lib/aspell-0.60/koi8-r.cmap +usr/lib/aspell-0.60/koi8-r.cset +usr/lib/aspell-0.60/koi8-u.cmap +usr/lib/aspell-0.60/koi8-u.cset +usr/lib/aspell-0.60/none.amf +usr/lib/aspell-0.60/nroff-filter.info +usr/lib/aspell-0.60/nroff-filter.so +usr/lib/aspell-0.60/nroff.amf +usr/lib/aspell-0.60/perl.amf +usr/lib/aspell-0.60/sgml-filter.info +usr/lib/aspell-0.60/sgml-filter.so +usr/lib/aspell-0.60/sgml.amf +usr/lib/aspell-0.60/split.kbd +usr/lib/aspell-0.60/standard.kbd +usr/lib/aspell-0.60/tex-filter.info +usr/lib/aspell-0.60/tex-filter.so +usr/lib/aspell-0.60/tex.amf +usr/lib/aspell-0.60/texinfo-filter.info +usr/lib/aspell-0.60/texinfo-filter.so +usr/lib/aspell-0.60/texinfo.amf +usr/lib/aspell-0.60/url.amf +usr/lib/libaspell.so.15 +usr/lib/libaspell.so.15.1.4 +usr/lib/libpspell.so.15 +usr/lib/libpspell.so.15.1.4 usr/lib64/aspell-0.60/ccpp.amf usr/lib64/aspell-0.60/comment.amf usr/lib64/aspell-0.60/context-filter.info usr/lib64/aspell-0.60/context-filter.so usr/lib64/aspell-0.60/cp1250.cmap usr/lib64/aspell-0.60/cp1250.cset usr/lib64/aspell-0.60/cp1251.cmap usr/lib64/aspell-0.60/cp1251.cset usr/lib64/aspell-0.60/cp1252.cmap usr/lib64/aspell-0.60/cp1252.cset usr/lib64/aspell-0.60/cp1253.cmap usr/lib64/aspell-0.60/cp1253.cset usr/lib64/aspell-0.60/cp1254.cmap usr/lib64/aspell-0.60/cp1254.cset usr/lib64/aspell-0.60/cp1255.cmap usr/lib64/aspell-0.60/cp1255.cset usr/lib64/aspell-0.60/cp1256.cmap usr/lib64/aspell-0.60/cp1256.cset usr/lib64/aspell-0.60/cp1257.cmap usr/lib64/aspell-0.60/cp1257.cset usr/lib64/aspell-0.60/cp1258.cmap usr/lib64/aspell-0.60/cp1258.cset usr/lib64/aspell-0.60/dvorak.kbd usr/lib64/aspell-0.60/email-filter.info usr/lib64/aspell-0.60/email-filter.so usr/lib64/aspell-0.60/email.amf usr/lib64/aspell-0.60/html-filter.info usr/lib64/aspell-0.60/html.amf usr/lib64/aspell-0.60/iso-8859-1.cmap usr/lib64/aspell-0.60/iso-8859-1.cset usr/lib64/aspell-0.60/iso-8859-10.cmap usr/lib64/aspell-0.60/iso-8859-10.cset usr/lib64/aspell-0.60/iso-8859-11.cmap usr/lib64/aspell-0.60/iso-8859-11.cset usr/lib64/aspell-0.60/iso-8859-13.cmap usr/lib64/aspell-0.60/iso-8859-13.cset usr/lib64/aspell-0.60/iso-8859-14.cmap usr/lib64/aspell-0.60/iso-8859-14.cset usr/lib64/aspell-0.60/iso-8859-15.cmap usr/lib64/aspell-0.60/iso-8859-15.cset usr/lib64/aspell-0.60/iso-8859-16.cmap usr/lib64/aspell-0.60/iso-8859-16.cset usr/lib64/aspell-0.60/iso-8859-2.cmap usr/lib64/aspell-0.60/iso-8859-2.cset usr/lib64/aspell-0.60/iso-8859-3.cmap usr/lib64/aspell-0.60/iso-8859-3.cset usr/lib64/aspell-0.60/iso-8859-4.cmap usr/lib64/aspell-0.60/iso-8859-4.cset usr/lib64/aspell-0.60/iso-8859-5.cmap usr/lib64/aspell-0.60/iso-8859-5.cset usr/lib64/aspell-0.60/iso-8859-6.cmap usr/lib64/aspell-0.60/iso-8859-6.cset usr/lib64/aspell-0.60/iso-8859-7.cmap usr/lib64/aspell-0.60/iso-8859-7.cset usr/lib64/aspell-0.60/iso-8859-8.cmap usr/lib64/aspell-0.60/iso-8859-8.cset usr/lib64/aspell-0.60/iso-8859-9.cmap usr/lib64/aspell-0.60/iso-8859-9.cset usr/lib64/aspell-0.60/koi8-r.cmap usr/lib64/aspell-0.60/koi8-r.cset usr/lib64/aspell-0.60/koi8-u.cmap usr/lib64/aspell-0.60/koi8-u.cset usr/lib64/aspell-0.60/none.amf usr/lib64/aspell-0.60/nroff-filter.info usr/lib64/aspell-0.60/nroff-filter.so usr/lib64/aspell-0.60/nroff.amf usr/lib64/aspell-0.60/perl.amf usr/lib64/aspell-0.60/sgml-filter.info usr/lib64/aspell-0.60/sgml-filter.so usr/lib64/aspell-0.60/sgml.amf usr/lib64/aspell-0.60/split.kbd usr/lib64/aspell-0.60/standard.kbd usr/lib64/aspell-0.60/tex-filter.info usr/lib64/aspell-0.60/tex-filter.so usr/lib64/aspell-0.60/tex.amf usr/lib64/aspell-0.60/texinfo-filter.info usr/lib64/aspell-0.60/texinfo-filter.so usr/lib64/aspell-0.60/texinfo.amf usr/lib64/aspell-0.60/url.amf usr/lib64/libaspell.so.15 usr/lib64/libaspell.so.15.1.4 usr/lib64/libpspell.so.15 usr/lib64/libpspell.so.15.1.4 usr/share/doc/aspell-0.60.6/COPYING usr/share/doc/aspell-0.60.6/README usr/share/doc/aspell-0.60.6/TODO usr/share/doc/aspell-0.60.6/aspell-import usr/share/doc/aspell-0.60.6/aspell-import.1 usr/share/info/aspell.info.gz usr/share/locale/be/LC_MESSAGES/aspell.mo usr/share/locale/ca/LC_MESSAGES/aspell.mo usr/share/locale/cs/LC_MESSAGES/aspell.mo usr/share/locale/da/LC_MESSAGES/aspell.mo usr/share/locale/de/LC_MESSAGES/aspell.mo usr/share/locale/en_GB/LC_MESSAGES/aspell.mo usr/share/locale/es/LC_MESSAGES/aspell.mo usr/share/locale/fr/LC_MESSAGES/aspell.mo usr/share/locale/ga/LC_MESSAGES/aspell.mo usr/share/locale/it/LC_MESSAGES/aspell.mo usr/share/locale/mn/LC_MESSAGES/aspell.mo usr/share/locale/nl/LC_MESSAGES/aspell.mo usr/share/locale/pt_BR/LC_MESSAGES/aspell.mo usr/share/locale/ro/LC_MESSAGES/aspell.mo usr/share/locale/ru/LC_MESSAGES/aspell.mo usr/share/locale/rw/LC_MESSAGES/aspell.mo usr/share/locale/sk/LC_MESSAGES/aspell.mo usr/share/locale/sl/LC_MESSAGES/aspell.mo usr/share/locale/sr/LC_MESSAGES/aspell.mo usr/share/locale/sv/LC_MESSAGES/aspell.mo usr/share/locale/tg/LC_MESSAGES/aspell.mo usr/share/locale/uk/LC_MESSAGES/aspell.mo usr/share/locale/vi/LC_MESSAGES/aspell.mo usr/share/locale/wa/LC_MESSAGES/aspell.mo usr/share/man/man1/aspell.1.gz usr/share/man/man1/prezip-bin.1.gz usr/share/man/man1/run-with-aspell.1.gz usr/share/man/man1/word-list-compress.1.gz Property changes on: head/textproc/linux-c6-aspell/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/textproc/linux-c6-expat/distinfo.x86_64 =================================================================== --- head/textproc/linux-c6-expat/distinfo.x86_64 (revision 413167) +++ head/textproc/linux-c6-expat/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/expat-2.0.1-11.el6_2.x86_64.rpm) = 28847d115e3c8dd72e6535b8148a61fb9e33f66a00de8bea82f449aca78d6970 SIZE (rpm/x86_64/centos/6.7/expat-2.0.1-11.el6_2.x86_64.rpm) = 78336 +SHA256 (rpm/x86_64/centos/6.7/expat-2.0.1-11.el6_2.i686.rpm) = aefccd0285b312ec3cf053715b66c45e7883145255c993c7e2bd1848b420deb1 +SIZE (rpm/x86_64/centos/6.7/expat-2.0.1-11.el6_2.i686.rpm) = 80684 SHA256 (rpm/x86_64/centos/6.7/expat-2.0.1-11.el6_2.src.rpm) = e73a78c840f047c382984201f9be499041c411f82e26f02359183f5fe25fad6a SIZE (rpm/x86_64/centos/6.7/expat-2.0.1-11.el6_2.src.rpm) = 463965 Index: head/textproc/linux-c6-expat/pkg-plist.x86_64 =================================================================== --- head/textproc/linux-c6-expat/pkg-plist.x86_64 (revision 413167) +++ head/textproc/linux-c6-expat/pkg-plist.x86_64 (revision 413168) @@ -1,4 +1,6 @@ +lib/libexpat.so.1 +lib/libexpat.so.1.5.2 lib64/libexpat.so.1 lib64/libexpat.so.1.5.2 usr/bin/xmlwf usr/share/man/man1/xmlwf.1.gz Property changes on: head/textproc/linux-c6-expat/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/textproc/linux-c6-libxml2/distinfo.x86_64 =================================================================== --- head/textproc/linux-c6-libxml2/distinfo.x86_64 (revision 413167) +++ head/textproc/linux-c6-libxml2/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/libxml2-2.7.6-20.el6.x86_64.rpm) = 49bce3740afa2dea0bb779efedcf6cb847dfc0f78992e19737e7c451e49a031a SIZE (rpm/x86_64/centos/6.7/libxml2-2.7.6-20.el6.x86_64.rpm) = 820504 +SHA256 (rpm/x86_64/centos/6.7/libxml2-2.7.6-20.el6.i686.rpm) = 92f0392e79bc4f1a7cc8c190460587d9bac381c5805b3b4bf55dcd759fc96bfe +SIZE (rpm/x86_64/centos/6.7/libxml2-2.7.6-20.el6.i686.rpm) = 820672 SHA256 (rpm/x86_64/centos/6.7/libxml2-2.7.6-20.el6.src.rpm) = 81f0632ed93c1bb645979d65628ec36a066630b70350783e57ef1c258f6d9435 SIZE (rpm/x86_64/centos/6.7/libxml2-2.7.6-20.el6.src.rpm) = 4902265 Index: head/textproc/linux-c6-libxml2/pkg-plist.x86_64 =================================================================== --- head/textproc/linux-c6-libxml2/pkg-plist.x86_64 (revision 413167) +++ head/textproc/linux-c6-libxml2/pkg-plist.x86_64 (revision 413168) @@ -1,7 +1,9 @@ usr/bin/xmlcatalog usr/bin/xmllint +usr/lib/libxml2.so.2 +usr/lib/libxml2.so.2.7.6 usr/lib64/libxml2.so.2 usr/lib64/libxml2.so.2.7.6 usr/share/man/man1/xmlcatalog.1.gz usr/share/man/man1/xmllint.1.gz usr/share/man/man3/libxml.3.gz Property changes on: head/textproc/linux-c6-libxml2/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/www/linux-c6-flashplugin11/Makefile =================================================================== --- head/www/linux-c6-flashplugin11/Makefile (revision 413167) +++ head/www/linux-c6-flashplugin11/Makefile (revision 413168) @@ -1,78 +1,78 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= flashplugin PORTVERSION= 11.2r202.577 CATEGORIES= www multimedia linux MASTER_SITES= http://fpdownload.macromedia.com/get/flashplayer/pdc/${PORTVERSION:S/r/./}/:plugin \ LOCAL/nox:suplib PKGNAMEPREFIX= linux-${USE_LINUX}- -DISTFILES?= install_flash_player_11_linux.${LINUX_REPO_ARCH}.tar.gz:plugin +DISTFILES?= install_flash_player_11_linux.i386.tar.gz:plugin DIST_SUBDIR= ${PORTNAME}/${PORTVERSION} MAINTAINER= emulation@FreeBSD.org COMMENT= Adobe Flash Player NPAPI Plugin ONLY_FOR_ARCHS= amd64 i386 USE_LINUX?= c6 USE_LINUX_APPS?= curl cyrus-sasl2 gdkpixbuf2 gtk2 nspr nss # libssh2 openldap WANT_GNOME= yes DISTINFO_FILE?= ${MASTERDIR}/distinfo.${LINUX_RPM_ARCH} PLIST?= ${MASTERDIR}/pkg-plist.${LINUX_RPM_ARCH} RESTRICTED= Redistribution not allowed RESTRICTED_FILES= ${DISTFILES:Nlinux-f10-flashsupport*:C/:[^:]+$//} NO_BUILD= yes NO_WRKSUBDIR= yes WRKSRC:= ${WRKDIR}/linux-${USE_LINUX}-${DISTNAME} USES= webplugin:linux desktop-file-utils cpe WEBPLUGIN_FILES= libflashplayer.so OPTIONS_DEFINE= ALSA GNOME OPTIONS_SUB= yes ALSA_DESC= ALSA audio output (broken, needs lemul) ALSA_RUN_DEPENDS?= linux-${USE_LINUX}-alsa-lib>=1.0.22_2:audio/linux-c6-alsa-lib ALSA_DISTFILES_OFF= linux-f10-flashsupport-9.0.1.i386.tar.gz:suplib ALSA_PLIST_SUB_OFF= LINUXBASE="${LINUXBASE}" COMPATDIR="${LINUXBASE:H}" GNOME_DESC= include gnome support for .desktop file GNOME_USES= desktop-file-utils CPE_VENDOR= adobe CPE_PRODUCT= flash_player .include .if ${PORT_OPTIONS:MALSA} USE_LINUX_APPS+=alsalib alsa-plugins-oss .else .if ${USE_LINUX} == "f10" USE_LINUX_APPS+= openssl .else USE_LINUX_APPS+= openssl-compat .endif .endif .if ${PORT_OPTIONS:MGNOME} INSTALLS_ICONS= yes .endif post-patch: @${REINPLACE_CMD} -e 's|/usr|${PREFIX}|' -e '/^NotShowIn=KDE/d' ${WRKSRC}/usr/share/applications/flash-player-properties.desktop do-install: ${MKDIR} ${STAGEDIR}${WEBPLUGIN_DIR} ${INSTALL_LIB} ${WRKSRC}/libflashplayer.so ${STAGEDIR}${WEBPLUGIN_DIR} .if ! ${PORT_OPTIONS:MALSA} ${MKDIR} ${STAGEDIR}${LINUXBASE}/usr/lib ${INSTALL_LIB} ${WRKSRC}/libflashsupport.so ${STAGEDIR}${LINUXBASE}/usr/lib .endif ${INSTALL_PROGRAM} ${WRKSRC}/usr/bin/flash-player-properties ${STAGEDIR}${PREFIX}/bin ${INSTALL_DATA} ${WRKSRC}/usr/share/applications/flash-player-properties.desktop ${STAGEDIR}${DESKTOPDIR} (cd ${WRKSRC}/usr/share/icons && ${COPYTREE_SHARE} hicolor ${STAGEDIR}${PREFIX}/share/icons) .include Index: head/www/linux-c6-qt47-webkit/Makefile =================================================================== --- head/www/linux-c6-qt47-webkit/Makefile (revision 413167) +++ head/www/linux-c6-qt47-webkit/Makefile (revision 413168) @@ -1,24 +1,26 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= qt47-webkit PORTVERSION= 4.7.2 PORTREVISION= 1 CATEGORIES= www linux -MASTER_SITES= https://www.mirrorservice.org/sites/dl.atrpms.net/el6-${LINUX_REPO_ARCH}/atrpms/testing/ LOCAL/xmj +MASTER_SITES= https://www.mirrorservice.org/sites/dl.atrpms.net/el6-i386/atrpms/testing/ \ + https://www.mirrorservice.org/sites/dl.atrpms.net/el6-x86_64/atrpms/testing/ \ + LOCAL/xmj DIST_SUBDIR= rpm/${LINUX_RPM_ARCH}/atrpms/6 MAINTAINER= emulation@FreeBSD.org COMMENT= RPM of QT4 (Linux CentOS 6) ONLY_FOR_ARCHS= i386 amd64 RPMVERSION= 1_18.el6 USE_LINUX= c6 USE_LINUX_APPS= fontconfig png xorglibs sqlite3 qt47 qt47-x11 USE_LINUX_RPM= yes USE_LDCONFIG= yes DESCR= ${.CURDIR}/../../www/webkit-gtk3/pkg-descr # contains no GTK references, reuse SRC_DISTFILES:= # unretrievable .include Index: head/www/linux-c6-qt47-webkit/distinfo.x86_64 =================================================================== --- head/www/linux-c6-qt47-webkit/distinfo.x86_64 (revision 413167) +++ head/www/linux-c6-qt47-webkit/distinfo.x86_64 (revision 413168) @@ -1,2 +1,4 @@ SHA256 (rpm/x86_64/atrpms/6/qt47-webkit-4.7.2-1_18.el6.x86_64.rpm) = 49b4dd40492c920f8562764f16dcbef1e976549da715936965be088055f80f65 SIZE (rpm/x86_64/atrpms/6/qt47-webkit-4.7.2-1_18.el6.x86_64.rpm) = 5384720 +SHA256 (rpm/x86_64/atrpms/6/qt47-webkit-4.7.2-1_18.el6.i686.rpm) = a0362422d4ea0fb87838ce1e17a2ffcc934d312cd8e8cfac02112d61a9d62bf0 +SIZE (rpm/x86_64/atrpms/6/qt47-webkit-4.7.2-1_18.el6.i686.rpm) = 5491340 Property changes on: head/www/linux-c6-qt47-webkit/distinfo.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/www/linux-c6-qt47-webkit/pkg-plist.x86_64 =================================================================== --- head/www/linux-c6-qt47-webkit/pkg-plist.x86_64 (revision 413167) +++ head/www/linux-c6-qt47-webkit/pkg-plist.x86_64 (revision 413168) @@ -1,6 +1,12 @@ +usr/lib/qt47/imports/QtWebKit/libqmlwebkitplugin.so +usr/lib/qt47/libQtWebKit.so.4 +usr/lib/qt47/libQtWebKit.so.4.7 +usr/lib/qt47/libQtWebKit.so.4.7.2 +usr/lib/qt47/plugins/designer/libqwebview.so +usr/lib/qt47/imports/QtWebKit/qmldir usr/lib64/qt47/imports/QtWebKit/libqmlwebkitplugin.so usr/lib64/qt47/libQtWebKit.so.4 usr/lib64/qt47/libQtWebKit.so.4.7 usr/lib64/qt47/libQtWebKit.so.4.7.2 usr/lib64/qt47/plugins/designer/libqwebview.so usr/lib64/qt47/imports/QtWebKit/qmldir Property changes on: head/www/linux-c6-qt47-webkit/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/x11/linux-c6-xorg-libs/Makefile =================================================================== --- head/x11/linux-c6-xorg-libs/Makefile (revision 413167) +++ head/x11/linux-c6-xorg-libs/Makefile (revision 413168) @@ -1,95 +1,96 @@ # Created by: bsam # $FreeBSD$ PORTNAME= xorg-libs PORTVERSION= 7.4 PORTREVISION= 4 CATEGORIES= x11 linux MASTER_SITES= CENTOS_LINUX CENTOS_LINUX_UPDATES -DISTFILES= libICE-1.0.6-1.el6.${LINUX_RPM_ARCH}.rpm \ +DISTFILES:= #hack +LIB_DISTFILES= libICE-1.0.6-1.el6.${LINUX_RPM_ARCH}.rpm \ libSM-1.2.1-2.el6.${LINUX_RPM_ARCH}.rpm \ libX11-1.6.0-6.el6.${LINUX_RPM_ARCH}.rpm \ libXScrnSaver-1.2.2-2.el6.${LINUX_RPM_ARCH}.rpm \ libXau-1.0.6-4.el6.${LINUX_RPM_ARCH}.rpm \ libXaw-1.0.11-2.el6.${LINUX_RPM_ARCH}.rpm \ libXcomposite-0.4.3-4.el6.${LINUX_RPM_ARCH}.rpm \ libXcursor-1.1.14-2.1.el6.${LINUX_RPM_ARCH}.rpm \ libXdamage-1.1.3-4.el6.${LINUX_RPM_ARCH}.rpm \ libXdmcp-1.1.1-3.el6.${LINUX_RPM_ARCH}.rpm \ libXevie-1.0.3-4.el6.${LINUX_RPM_ARCH}.rpm \ libXext-1.3.2-2.1.el6.${LINUX_RPM_ARCH}.rpm \ libXfixes-5.0.1-2.1.el6.${LINUX_RPM_ARCH}.rpm \ libXfont-1.4.5-5.el6_7.${LINUX_RPM_ARCH}.rpm \ libXft-2.3.1-2.el6.${LINUX_RPM_ARCH}.rpm \ libXi-1.7.2-2.2.el6.${LINUX_RPM_ARCH}.rpm \ libXinerama-1.1.3-2.1.el6.${LINUX_RPM_ARCH}.rpm \ libXmu-1.1.1-2.el6.${LINUX_RPM_ARCH}.rpm \ libXp-1.0.2-2.1.el6.${LINUX_RPM_ARCH}.rpm \ libXpm-3.5.10-2.el6.${LINUX_RPM_ARCH}.rpm \ libXrandr-1.4.1-2.1.el6.${LINUX_RPM_ARCH}.rpm \ libXrender-0.9.8-2.1.el6.${LINUX_RPM_ARCH}.rpm \ libXres-1.0.7-2.1.el6.${LINUX_RPM_ARCH}.rpm \ libXt-1.1.4-6.1.el6.${LINUX_RPM_ARCH}.rpm \ libXtst-1.2.2-2.1.el6.${LINUX_RPM_ARCH}.rpm \ libXv-1.0.9-2.1.el6.${LINUX_RPM_ARCH}.rpm \ libXvMC-1.0.8-2.1.el6.${LINUX_RPM_ARCH}.rpm \ libXxf86dga-1.1.4-2.1.el6.${LINUX_RPM_ARCH}.rpm \ libXxf86misc-1.0.3-4.el6.${LINUX_RPM_ARCH}.rpm \ libXxf86vm-1.1.3-2.1.el6.${LINUX_RPM_ARCH}.rpm \ libfontenc-1.0.5-2.el6.${LINUX_RPM_ARCH}.rpm \ libxcb-1.9.1-3.el6.${LINUX_RPM_ARCH}.rpm \ libxkbfile-1.0.6-1.1.el6.${LINUX_RPM_ARCH}.rpm \ mesa-libGLw-6.5.1-10.el6.${LINUX_RPM_ARCH}.rpm .if defined(PACKAGE_BUILDING) SRC_DISTFILES= libICE-1.0.6-1.el6.src.rpm:SOURCE \ libSM-1.2.1-2.el6.src.rpm:SOURCE \ libX11-1.6.0-6.el6.src.rpm:SOURCE \ libXScrnSaver-1.2.2-2.el6.src.rpm:SOURCE \ libXau-1.0.6-4.el6.src.rpm:SOURCE \ libXaw-1.0.11-2.el6.src.rpm:SOURCE \ libXcomposite-0.4.3-4.el6.src.rpm:SOURCE \ libXcursor-1.1.14-2.1.el6.src.rpm:SOURCE \ libXdamage-1.1.3-4.el6.src.rpm:SOURCE \ libXdmcp-1.1.1-3.el6.src.rpm:SOURCE \ libXevie-1.0.3-4.el6.src.rpm:SOURCE \ libXext-1.3.2-2.1.el6.src.rpm:SOURCE \ libXfixes-5.0.1-2.1.el6.src.rpm:SOURCE \ libXfont-1.4.5-5.el6_7.src.rpm:SOURCE \ libXft-2.3.1-2.el6.src.rpm:SOURCE \ libXi-1.7.2-2.2.el6.src.rpm:SOURCE \ libXinerama-1.1.3-2.1.el6.src.rpm:SOURCE \ libXmu-1.1.1-2.el6.src.rpm:SOURCE \ libXp-1.0.2-2.1.el6.src.rpm:SOURCE \ libXpm-3.5.10-2.el6.src.rpm:SOURCE \ libXrandr-1.4.1-2.1.el6.src.rpm:SOURCE \ libXrender-0.9.8-2.1.el6.src.rpm:SOURCE \ libXres-1.0.7-2.1.el6.src.rpm:SOURCE \ libXt-1.1.4-6.1.el6.src.rpm:SOURCE \ libXtst-1.2.2-2.1.el6.src.rpm:SOURCE \ libXv-1.0.9-2.1.el6.src.rpm:SOURCE \ libXvMC-1.0.8-2.1.el6.src.rpm:SOURCE \ libXxf86dga-1.1.4-2.1.el6.src.rpm:SOURCE \ libXxf86misc-1.0.3-4.el6.src.rpm:SOURCE \ libXxf86vm-1.1.3-2.1.el6.src.rpm:SOURCE \ libfontenc-1.0.5-2.el6.src.rpm:SOURCE \ libxcb-1.9.1-3.el6.src.rpm:SOURCE \ libxkbfile-1.0.6-1.1.el6.src.rpm:SOURCE \ mesa-libGLw-6.5.1-10.el6.src.rpm:SOURCE .endif MAINTAINER= emulation@FreeBSD.org COMMENT= Xorg libraries (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-xorg-libs-[0-9]* linux-f8-xorg-libs-[0-9]* linux-f10-xorg-libs-[0-9]* USE_LINUX= c6 USE_LINUX_APPS= fontconfig USE_LINUX_RPM= yes USE_LDCONFIG= yes #post-install: # ${MKDIR} ${STAGEDIR}${PREFIX}/etc/ld.so.conf.d # @${INSTALL_DATA} ${FILESDIR}/xorg-x11-i386.conf ${STAGEDIR}${PREFIX}/etc/ld.so.conf.d .include Index: head/x11/linux-c6-xorg-libs/distinfo.x86_64 =================================================================== --- head/x11/linux-c6-xorg-libs/distinfo.x86_64 (revision 413167) +++ head/x11/linux-c6-xorg-libs/distinfo.x86_64 (revision 413168) @@ -1,136 +1,204 @@ SHA256 (rpm/x86_64/centos/6.7/libICE-1.0.6-1.el6.x86_64.rpm) = c04a69d96c850fa6e179a09cc1738bd8837fb79870f78d1039f5080b4e765598 SIZE (rpm/x86_64/centos/6.7/libICE-1.0.6-1.el6.x86_64.rpm) = 54064 SHA256 (rpm/x86_64/centos/6.7/libSM-1.2.1-2.el6.x86_64.rpm) = 5bbbb484f3c7a2d7cdc090b6f88fef66a290d256685cfccb9fac60c08b83050f SIZE (rpm/x86_64/centos/6.7/libSM-1.2.1-2.el6.x86_64.rpm) = 37564 SHA256 (rpm/x86_64/centos/6.7/libX11-1.6.0-6.el6.x86_64.rpm) = e59cac75d04e8453a7d17335028d6b26a281ffff692e691984cd064c71271b86 SIZE (rpm/x86_64/centos/6.7/libX11-1.6.0-6.el6.x86_64.rpm) = 600568 SHA256 (rpm/x86_64/centos/6.7/libXScrnSaver-1.2.2-2.el6.x86_64.rpm) = 81b34282c3bca2f38f8ee7cf64a15c8516be0df608b144fa1efbeffd28b578e4 SIZE (rpm/x86_64/centos/6.7/libXScrnSaver-1.2.2-2.el6.x86_64.rpm) = 22712 SHA256 (rpm/x86_64/centos/6.7/libXau-1.0.6-4.el6.x86_64.rpm) = d0a58ddeae0df842fa4b43eb83a143c85a129eb9b44ea797401a4d9f27d6c460 SIZE (rpm/x86_64/centos/6.7/libXau-1.0.6-4.el6.x86_64.rpm) = 24916 SHA256 (rpm/x86_64/centos/6.7/libXaw-1.0.11-2.el6.x86_64.rpm) = 4e864071e5bcbfa6f525d3239ef1339e336502cdf6b2948409659423e61dc00b SIZE (rpm/x86_64/centos/6.7/libXaw-1.0.11-2.el6.x86_64.rpm) = 182336 SHA256 (rpm/x86_64/centos/6.7/libXcomposite-0.4.3-4.el6.x86_64.rpm) = ff05d8070c8007ee5a46b35347a37509978dfe9eff3b2a54294afb77f1be458b SIZE (rpm/x86_64/centos/6.7/libXcomposite-0.4.3-4.el6.x86_64.rpm) = 20948 SHA256 (rpm/x86_64/centos/6.7/libXcursor-1.1.14-2.1.el6.x86_64.rpm) = 528eb987e058ee4907c0007544c06e28d9b905b94ec9f0995c5081d507ed96b7 SIZE (rpm/x86_64/centos/6.7/libXcursor-1.1.14-2.1.el6.x86_64.rpm) = 28668 SHA256 (rpm/x86_64/centos/6.7/libXdamage-1.1.3-4.el6.x86_64.rpm) = 34b28487164c8b2d75638d595011948831be35197bc868f23b1cda8cca690db9 SIZE (rpm/x86_64/centos/6.7/libXdamage-1.1.3-4.el6.x86_64.rpm) = 18700 SHA256 (rpm/x86_64/centos/6.7/libXdmcp-1.1.1-3.el6.x86_64.rpm) = ca92520e5d7c776c88e80a00cd089bb86cb068ceb8d2f2208acafa98c48a29c6 SIZE (rpm/x86_64/centos/6.7/libXdmcp-1.1.1-3.el6.x86_64.rpm) = 31176 SHA256 (rpm/x86_64/centos/6.7/libXevie-1.0.3-4.el6.x86_64.rpm) = c1b5d35538ccf5aa4ba565a79f82eba0fdde5cac9b7142a61bc028d6551c1bfa SIZE (rpm/x86_64/centos/6.7/libXevie-1.0.3-4.el6.x86_64.rpm) = 16704 SHA256 (rpm/x86_64/centos/6.7/libXext-1.3.2-2.1.el6.x86_64.rpm) = 1e24cf4593d72723709065266889fb6f02c5ac511e54252a368fe6f2348455af SIZE (rpm/x86_64/centos/6.7/libXext-1.3.2-2.1.el6.x86_64.rpm) = 35644 SHA256 (rpm/x86_64/centos/6.7/libXfixes-5.0.1-2.1.el6.x86_64.rpm) = 8e625f07a4f4949b164c05d1e5b433d0c02f2d3a2ea386bc56133ff21610797c SIZE (rpm/x86_64/centos/6.7/libXfixes-5.0.1-2.1.el6.x86_64.rpm) = 17260 SHA256 (rpm/x86_64/centos/6.7/libXfont-1.4.5-5.el6_7.x86_64.rpm) = 53017e8cf13ca169a02574c9a7584ba84672006feafd56d9b5c6d5c7b4a7d49c SIZE (rpm/x86_64/centos/6.7/libXfont-1.4.5-5.el6_7.x86_64.rpm) = 140416 SHA256 (rpm/x86_64/centos/6.7/libXft-2.3.1-2.el6.x86_64.rpm) = 9bc8f1f23b19800843a9c409905080c154318f121fe1fbdfc8209362ac255b82 SIZE (rpm/x86_64/centos/6.7/libXft-2.3.1-2.el6.x86_64.rpm) = 56024 SHA256 (rpm/x86_64/centos/6.7/libXi-1.7.2-2.2.el6.x86_64.rpm) = 180357082ccd9d30f848472cdeea19f7e513eb0952721766c38b063085d26c3a SIZE (rpm/x86_64/centos/6.7/libXi-1.7.2-2.2.el6.x86_64.rpm) = 37804 SHA256 (rpm/x86_64/centos/6.7/libXinerama-1.1.3-2.1.el6.x86_64.rpm) = d521385486e0cb10deb0b859a56919f06e5a192e931c388af614fa2bb79d9b49 SIZE (rpm/x86_64/centos/6.7/libXinerama-1.1.3-2.1.el6.x86_64.rpm) = 12988 SHA256 (rpm/x86_64/centos/6.7/libXmu-1.1.1-2.el6.x86_64.rpm) = b50dcf1540ef648d113a6c45da3703a55bf8700a4a4b374ceda5122def9e6605 SIZE (rpm/x86_64/centos/6.7/libXmu-1.1.1-2.el6.x86_64.rpm) = 67620 SHA256 (rpm/x86_64/centos/6.7/libXp-1.0.2-2.1.el6.x86_64.rpm) = 484355c21ad6e2a1fc9c7cdd7b592d2258f5cd60e7f89fe3d4f7533e21b36a04 SIZE (rpm/x86_64/centos/6.7/libXp-1.0.2-2.1.el6.x86_64.rpm) = 29532 SHA256 (rpm/x86_64/centos/6.7/libXpm-3.5.10-2.el6.x86_64.rpm) = 2e2c5a1e6d0bc357f745d686f5788843636a52e1940103b5dfd553a4a2e708d8 SIZE (rpm/x86_64/centos/6.7/libXpm-3.5.10-2.el6.x86_64.rpm) = 51864 SHA256 (rpm/x86_64/centos/6.7/libXrandr-1.4.1-2.1.el6.x86_64.rpm) = 8f59b1d2bf32269526f0cde766fa75a39ce51fd6e3151c102d304a55aa548ff0 SIZE (rpm/x86_64/centos/6.7/libXrandr-1.4.1-2.1.el6.x86_64.rpm) = 23772 SHA256 (rpm/x86_64/centos/6.7/libXrender-0.9.8-2.1.el6.x86_64.rpm) = ae64906d5f808ed3c22d969396d5e70a6c0a2f5c5ef986be3f4cb1fe578f55d3 SIZE (rpm/x86_64/centos/6.7/libXrender-0.9.8-2.1.el6.x86_64.rpm) = 24260 SHA256 (rpm/x86_64/centos/6.7/libXres-1.0.7-2.1.el6.x86_64.rpm) = c089733582556479ad16eb291a798c334b9ae165c74d161a76e2d0c5c888e005 SIZE (rpm/x86_64/centos/6.7/libXres-1.0.7-2.1.el6.x86_64.rpm) = 12424 SHA256 (rpm/x86_64/centos/6.7/libXt-1.1.4-6.1.el6.x86_64.rpm) = 3823da22fbd520ede2c8005671b26b1e7a6353ffff3ce61a62abd972ae027423 SIZE (rpm/x86_64/centos/6.7/libXt-1.1.4-6.1.el6.x86_64.rpm) = 168468 SHA256 (rpm/x86_64/centos/6.7/libXtst-1.2.2-2.1.el6.x86_64.rpm) = 70032cdf95a5dc94759cd82fa1a5a5c34f1b3db14522dcec454309b8c10259f1 SIZE (rpm/x86_64/centos/6.7/libXtst-1.2.2-2.1.el6.x86_64.rpm) = 19208 SHA256 (rpm/x86_64/centos/6.7/libXv-1.0.9-2.1.el6.x86_64.rpm) = 0f8889ea7552104121f354a34782259b3a88572e83d0b4bf000b221e7ce2ff72 SIZE (rpm/x86_64/centos/6.7/libXv-1.0.9-2.1.el6.x86_64.rpm) = 16852 SHA256 (rpm/x86_64/centos/6.7/libXvMC-1.0.8-2.1.el6.x86_64.rpm) = 5c8b09d1f0e70c576977c3d86b2fd3db916500188c06b5d2323a400a115f5a90 SIZE (rpm/x86_64/centos/6.7/libXvMC-1.0.8-2.1.el6.x86_64.rpm) = 20572 SHA256 (rpm/x86_64/centos/6.7/libXxf86dga-1.1.4-2.1.el6.x86_64.rpm) = 7a3e8b84647269b6311d292376eca7cb162f118efc709a06b93b486d1d72fc50 SIZE (rpm/x86_64/centos/6.7/libXxf86dga-1.1.4-2.1.el6.x86_64.rpm) = 18388 SHA256 (rpm/x86_64/centos/6.7/libXxf86misc-1.0.3-4.el6.x86_64.rpm) = b27e1e2f3701f8dc76c3fda8290d52345f13f0af65d94a24a7ed035f8f4608d5 SIZE (rpm/x86_64/centos/6.7/libXxf86misc-1.0.3-4.el6.x86_64.rpm) = 18188 SHA256 (rpm/x86_64/centos/6.7/libXxf86vm-1.1.3-2.1.el6.x86_64.rpm) = e1123e1d4344da63daa2e17f42867ae7be8a9e8d6f6b6bfd35983d74b0cf9827 SIZE (rpm/x86_64/centos/6.7/libXxf86vm-1.1.3-2.1.el6.x86_64.rpm) = 16584 SHA256 (rpm/x86_64/centos/6.7/libfontenc-1.0.5-2.el6.x86_64.rpm) = 86c61b495e5b30e8f161310adfd8c53302c9063c28f03b81d8b533ed21d31fa1 SIZE (rpm/x86_64/centos/6.7/libfontenc-1.0.5-2.el6.x86_64.rpm) = 25012 SHA256 (rpm/x86_64/centos/6.7/libxcb-1.9.1-3.el6.x86_64.rpm) = 9b90dbdbeebcc969fba73ddafc4524e868fdeaef61222033ce6562bb3a9c4661 SIZE (rpm/x86_64/centos/6.7/libxcb-1.9.1-3.el6.x86_64.rpm) = 112820 SHA256 (rpm/x86_64/centos/6.7/libxkbfile-1.0.6-1.1.el6.x86_64.rpm) = 0c8c125d6b4c0db5368f439c045073cb2cc55e6207bdff4d143d5bb48ae873fb SIZE (rpm/x86_64/centos/6.7/libxkbfile-1.0.6-1.1.el6.x86_64.rpm) = 75960 SHA256 (rpm/x86_64/centos/6.7/mesa-libGLw-6.5.1-10.el6.x86_64.rpm) = 4a217ad5e52a834bb0ec2f74a20393e3ddf66f1a14b2ab99de4631589103cac9 SIZE (rpm/x86_64/centos/6.7/mesa-libGLw-6.5.1-10.el6.x86_64.rpm) = 14356 +SHA256 (rpm/x86_64/centos/6.7/libICE-1.0.6-1.el6.i686.rpm) = b0b4e98058cfa3d75429b5bb1f209b475c8bcecf14f8ce8382f8ec5e24ac4c32 +SIZE (rpm/x86_64/centos/6.7/libICE-1.0.6-1.el6.i686.rpm) = 53292 +SHA256 (rpm/x86_64/centos/6.7/libSM-1.2.1-2.el6.i686.rpm) = 9128eb65884a7557e4bf68aee14e0bed3629df062b45ad389828f11d45abeff5 +SIZE (rpm/x86_64/centos/6.7/libSM-1.2.1-2.el6.i686.rpm) = 37312 +SHA256 (rpm/x86_64/centos/6.7/libX11-1.6.0-6.el6.i686.rpm) = 590d5c1bb8eed3eba47d791fc1c329eef529503efbda7000281bb295363ee58d +SIZE (rpm/x86_64/centos/6.7/libX11-1.6.0-6.el6.i686.rpm) = 607328 +SHA256 (rpm/x86_64/centos/6.7/libXScrnSaver-1.2.2-2.el6.i686.rpm) = 2173a076e7cefc99c982601a701eaec864a418d7c544d80ef72fc7ac0a42218f +SIZE (rpm/x86_64/centos/6.7/libXScrnSaver-1.2.2-2.el6.i686.rpm) = 22580 +SHA256 (rpm/x86_64/centos/6.7/libXau-1.0.6-4.el6.i686.rpm) = 0d979b1519ea4bef76efb5dd21e53cf9f12ab910eff0f67462e1d905b1e6109b +SIZE (rpm/x86_64/centos/6.7/libXau-1.0.6-4.el6.i686.rpm) = 24864 +SHA256 (rpm/x86_64/centos/6.7/libXaw-1.0.11-2.el6.i686.rpm) = d7ea3074f005f89b225b42357c7a3f4984ebdaaafcd085fb2294c8e8a55e8fc7 +SIZE (rpm/x86_64/centos/6.7/libXaw-1.0.11-2.el6.i686.rpm) = 194780 +SHA256 (rpm/x86_64/centos/6.7/libXcomposite-0.4.3-4.el6.i686.rpm) = a49030789b4701f3b6607b19b5c902a7df774f16a24dc72552df3563c4db2638 +SIZE (rpm/x86_64/centos/6.7/libXcomposite-0.4.3-4.el6.i686.rpm) = 20856 +SHA256 (rpm/x86_64/centos/6.7/libXcursor-1.1.14-2.1.el6.i686.rpm) = b5becd242ad1f1f166da01c3027c252ca6886fe3be6cfb8d70c0d20bf5eb3bd0 +SIZE (rpm/x86_64/centos/6.7/libXcursor-1.1.14-2.1.el6.i686.rpm) = 29080 +SHA256 (rpm/x86_64/centos/6.7/libXdamage-1.1.3-4.el6.i686.rpm) = 6f933535f383db7f06a3d64cf7f109c955bd72a0cc1d1092fb4c53867c85a022 +SIZE (rpm/x86_64/centos/6.7/libXdamage-1.1.3-4.el6.i686.rpm) = 18508 +SHA256 (rpm/x86_64/centos/6.7/libXdmcp-1.1.1-3.el6.i686.rpm) = dd9a0c6ab98e7bf8be6d0f888040cef2d5b8f4538b2ee9ee5a05c2d9ec2a29dd +SIZE (rpm/x86_64/centos/6.7/libXdmcp-1.1.1-3.el6.i686.rpm) = 31344 +SHA256 (rpm/x86_64/centos/6.7/libXevie-1.0.3-4.el6.i686.rpm) = 5fda28a7fb799a081dc197af364a29321d9899be31661e822937d6c3df1d3a4e +SIZE (rpm/x86_64/centos/6.7/libXevie-1.0.3-4.el6.i686.rpm) = 16648 +SHA256 (rpm/x86_64/centos/6.7/libXext-1.3.2-2.1.el6.i686.rpm) = b7c0ce14338da22397e0c042b738624a63b580b8c74542df24a3ad062a65170d +SIZE (rpm/x86_64/centos/6.7/libXext-1.3.2-2.1.el6.i686.rpm) = 35424 +SHA256 (rpm/x86_64/centos/6.7/libXfixes-5.0.1-2.1.el6.i686.rpm) = 0dd842ae7e276295d516a1f82b8eaefa8c00ed3ac2f066776fa2627546a0ec41 +SIZE (rpm/x86_64/centos/6.7/libXfixes-5.0.1-2.1.el6.i686.rpm) = 16840 +SHA256 (rpm/x86_64/centos/6.7/libXfont-1.4.5-5.el6_7.i686.rpm) = 9856558ad51e2b739b307e54519434fd091a7eef0a3380d8e08f6bda984dbc09 +SIZE (rpm/x86_64/centos/6.7/libXfont-1.4.5-5.el6_7.i686.rpm) = 148560 +SHA256 (rpm/x86_64/centos/6.7/libXft-2.3.1-2.el6.i686.rpm) = 0918bc59264c32fbe0cd3f9e0761e156b7f14623eb73ae5e46a5539d10ed743c +SIZE (rpm/x86_64/centos/6.7/libXft-2.3.1-2.el6.i686.rpm) = 55040 +SHA256 (rpm/x86_64/centos/6.7/libXi-1.7.2-2.2.el6.i686.rpm) = 7c1d137c99145cc17ce08605e3afd6ba9cb0b04d075429f251164894b7984e03 +SIZE (rpm/x86_64/centos/6.7/libXi-1.7.2-2.2.el6.i686.rpm) = 37576 +SHA256 (rpm/x86_64/centos/6.7/libXinerama-1.1.3-2.1.el6.i686.rpm) = 25ad6087df841322b5c716fa83cd1f820d1ae21cd7a03f40d0a9aa2c65444da7 +SIZE (rpm/x86_64/centos/6.7/libXinerama-1.1.3-2.1.el6.i686.rpm) = 13000 +SHA256 (rpm/x86_64/centos/6.7/libXmu-1.1.1-2.el6.i686.rpm) = 353e63f5da64f3ab88c08f9a97f18db14926aeeda48749edc0e22be40b279fda +SIZE (rpm/x86_64/centos/6.7/libXmu-1.1.1-2.el6.i686.rpm) = 67596 +SHA256 (rpm/x86_64/centos/6.7/libXp-1.0.2-2.1.el6.i686.rpm) = c5c8033e94657027fbebaabd5dd19a45f1576b21c4fbc445a33942975dd4e966 +SIZE (rpm/x86_64/centos/6.7/libXp-1.0.2-2.1.el6.i686.rpm) = 29032 +SHA256 (rpm/x86_64/centos/6.7/libXpm-3.5.10-2.el6.i686.rpm) = 2256f36015d4fd1d69a87f42d5279c5565c5a627320e3604eace595df47d084e +SIZE (rpm/x86_64/centos/6.7/libXpm-3.5.10-2.el6.i686.rpm) = 51496 +SHA256 (rpm/x86_64/centos/6.7/libXrandr-1.4.1-2.1.el6.i686.rpm) = 821a2b46a3880c3e563e32c95390e4d76d153f2b1ca349f2a3519f3c302c46b4 +SIZE (rpm/x86_64/centos/6.7/libXrandr-1.4.1-2.1.el6.i686.rpm) = 23220 +SHA256 (rpm/x86_64/centos/6.7/libXrender-0.9.8-2.1.el6.i686.rpm) = 81cc0d3798642208b4a7c508c7d8f1bd151eb16adc3990647b10a26c3a4a203e +SIZE (rpm/x86_64/centos/6.7/libXrender-0.9.8-2.1.el6.i686.rpm) = 23648 +SHA256 (rpm/x86_64/centos/6.7/libXres-1.0.7-2.1.el6.i686.rpm) = a572ab6470b94e9d1769d30967687224aa2f5b1a6487bd02dfc7abf337a9cd67 +SIZE (rpm/x86_64/centos/6.7/libXres-1.0.7-2.1.el6.i686.rpm) = 12380 +SHA256 (rpm/x86_64/centos/6.7/libXt-1.1.4-6.1.el6.i686.rpm) = 35c4d59eb703f93ee0ca1ee0019e38dba549228856fe5ead1c12e299f5a7171e +SIZE (rpm/x86_64/centos/6.7/libXt-1.1.4-6.1.el6.i686.rpm) = 162908 +SHA256 (rpm/x86_64/centos/6.7/libXtst-1.2.2-2.1.el6.i686.rpm) = d3797b5ea6b1ac41173b76ce1e5393e6473c90065ed80ad280bc7f252e0c03ba +SIZE (rpm/x86_64/centos/6.7/libXtst-1.2.2-2.1.el6.i686.rpm) = 19048 +SHA256 (rpm/x86_64/centos/6.7/libXv-1.0.9-2.1.el6.i686.rpm) = c0de1cb3d77968096373149b95e2814d1fcf9359ac168b2314c9a6754582de08 +SIZE (rpm/x86_64/centos/6.7/libXv-1.0.9-2.1.el6.i686.rpm) = 16712 +SHA256 (rpm/x86_64/centos/6.7/libXvMC-1.0.8-2.1.el6.i686.rpm) = 25c94f6f4f2e16c94f6de112115625af7884463dfddc70e18c2acaa0bef7249b +SIZE (rpm/x86_64/centos/6.7/libXvMC-1.0.8-2.1.el6.i686.rpm) = 20368 +SHA256 (rpm/x86_64/centos/6.7/libXxf86dga-1.1.4-2.1.el6.i686.rpm) = 7fec567b870c0170125cfb544d4e485353d83a48d3cde1a20bc065457ce5c7ae +SIZE (rpm/x86_64/centos/6.7/libXxf86dga-1.1.4-2.1.el6.i686.rpm) = 17652 +SHA256 (rpm/x86_64/centos/6.7/libXxf86misc-1.0.3-4.el6.i686.rpm) = b1ff94ead0c50b70d72fe9ac64de8b92721b817b2704127ebad4b59e220a132d +SIZE (rpm/x86_64/centos/6.7/libXxf86misc-1.0.3-4.el6.i686.rpm) = 18092 +SHA256 (rpm/x86_64/centos/6.7/libXxf86vm-1.1.3-2.1.el6.i686.rpm) = e56206ded6222b0bbac4c031ba8ec1deafe0adab027aa1c501f23fcc550b4585 +SIZE (rpm/x86_64/centos/6.7/libXxf86vm-1.1.3-2.1.el6.i686.rpm) = 16440 +SHA256 (rpm/x86_64/centos/6.7/libfontenc-1.0.5-2.el6.i686.rpm) = 7193d101772811e8610d025e58c3631f08552f0151a48c205f6bf32a6edf4d50 +SIZE (rpm/x86_64/centos/6.7/libfontenc-1.0.5-2.el6.i686.rpm) = 24872 +SHA256 (rpm/x86_64/centos/6.7/libxcb-1.9.1-3.el6.i686.rpm) = b1f3a5a35e6a941812b36b9218c5fea8b29cb7a81e710d3ddba44dd1866e0911 +SIZE (rpm/x86_64/centos/6.7/libxcb-1.9.1-3.el6.i686.rpm) = 117828 +SHA256 (rpm/x86_64/centos/6.7/libxkbfile-1.0.6-1.1.el6.i686.rpm) = 0528b825b81ac13a910acdfbe02df666f4854fb1decf0bace49635d50785f83b +SIZE (rpm/x86_64/centos/6.7/libxkbfile-1.0.6-1.1.el6.i686.rpm) = 76364 +SHA256 (rpm/x86_64/centos/6.7/mesa-libGLw-6.5.1-10.el6.i686.rpm) = d2536b25e5998727f3c327c04269f58624d0a1050a45a9ea8f6f47dd8c16894e +SIZE (rpm/x86_64/centos/6.7/mesa-libGLw-6.5.1-10.el6.i686.rpm) = 13756 SHA256 (rpm/x86_64/centos/6.7/libICE-1.0.6-1.el6.src.rpm) = 6f9a2ffd65f021bd434ba821a27d1c8c1af4fe0d6fca1fbc4839d4b28a656695 SIZE (rpm/x86_64/centos/6.7/libICE-1.0.6-1.el6.src.rpm) = 288561 SHA256 (rpm/x86_64/centos/6.7/libSM-1.2.1-2.el6.src.rpm) = a1ccbb68cb9067697819bc462426d4bb7ac90a5d43b3b2937789085a23126129 SIZE (rpm/x86_64/centos/6.7/libSM-1.2.1-2.el6.src.rpm) = 344988 SHA256 (rpm/x86_64/centos/6.7/libX11-1.6.0-6.el6.src.rpm) = 9b5206b80e8ea29ab744198329a3bcd6ca037ae13d9656cf55f3955ff14d90dc SIZE (rpm/x86_64/centos/6.7/libX11-1.6.0-6.el6.src.rpm) = 2403826 SHA256 (rpm/x86_64/centos/6.7/libXScrnSaver-1.2.2-2.el6.src.rpm) = 5a3c64b4923ed8958362e34cac7aebe21bde60f1ece0dc7148b25312ed538005 SIZE (rpm/x86_64/centos/6.7/libXScrnSaver-1.2.2-2.el6.src.rpm) = 301641 SHA256 (rpm/x86_64/centos/6.7/libXau-1.0.6-4.el6.src.rpm) = 67a39ebc411b3b603be404fe6672a812a0f611e4a1305b1d9112804ab37b886c SIZE (rpm/x86_64/centos/6.7/libXau-1.0.6-4.el6.src.rpm) = 272117 SHA256 (rpm/x86_64/centos/6.7/libXaw-1.0.11-2.el6.src.rpm) = cb444d2a509c24c7d6d7235b1dad7f5c03b52075f2053340e530764b7b77b26f SIZE (rpm/x86_64/centos/6.7/libXaw-1.0.11-2.el6.src.rpm) = 662266 SHA256 (rpm/x86_64/centos/6.7/libXcomposite-0.4.3-4.el6.src.rpm) = 1a281e223004848e7005d547e291b406929e8138bbb42508fc0f56ffdc477746 SIZE (rpm/x86_64/centos/6.7/libXcomposite-0.4.3-4.el6.src.rpm) = 256703 SHA256 (rpm/x86_64/centos/6.7/libXcursor-1.1.14-2.1.el6.src.rpm) = 87b9f1a3473d35091253ed2818a6c4a3087c5732685cd3d8f9393422cbdf3181 SIZE (rpm/x86_64/centos/6.7/libXcursor-1.1.14-2.1.el6.src.rpm) = 324562 SHA256 (rpm/x86_64/centos/6.7/libXdamage-1.1.3-4.el6.src.rpm) = 5b074f49ee2711a5ebe248fff09e158503d9f59fdc9fa4a9bdc5ef466d6a539f SIZE (rpm/x86_64/centos/6.7/libXdamage-1.1.3-4.el6.src.rpm) = 258818 SHA256 (rpm/x86_64/centos/6.7/libXdmcp-1.1.1-3.el6.src.rpm) = e27c9406b940656b2e490a56c0a490cd9e26b9efbd5f468b6590a07ca4f3d9d6 SIZE (rpm/x86_64/centos/6.7/libXdmcp-1.1.1-3.el6.src.rpm) = 323226 SHA256 (rpm/x86_64/centos/6.7/libXevie-1.0.3-4.el6.src.rpm) = 1181675421fa9cad3d30bcbe78d0b54f4118aad14380b160ae26b579dadb7abc SIZE (rpm/x86_64/centos/6.7/libXevie-1.0.3-4.el6.src.rpm) = 262650 SHA256 (rpm/x86_64/centos/6.7/libXext-1.3.2-2.1.el6.src.rpm) = c1030f0d763d6e0e2a68237317ec999e6476ef6066d037c0e454d7ec07b26961 SIZE (rpm/x86_64/centos/6.7/libXext-1.3.2-2.1.el6.src.rpm) = 391071 SHA256 (rpm/x86_64/centos/6.7/libXfixes-5.0.1-2.1.el6.src.rpm) = e1d533350af7a590d374a0c4b5360ef54bec8569b70a34827d67d62f3307d76e SIZE (rpm/x86_64/centos/6.7/libXfixes-5.0.1-2.1.el6.src.rpm) = 303026 SHA256 (rpm/x86_64/centos/6.7/libXfont-1.4.5-5.el6_7.src.rpm) = ed249a9a95d6ba4b7069956b24cb09135989b128ea48c52ad705e36962e4af99 SIZE (rpm/x86_64/centos/6.7/libXfont-1.4.5-5.el6_7.src.rpm) = 501267 SHA256 (rpm/x86_64/centos/6.7/libXft-2.3.1-2.el6.src.rpm) = 27506d7420f2089621cca83513204828eeaeb8a49f1e900f07b11fa2d32cbad0 SIZE (rpm/x86_64/centos/6.7/libXft-2.3.1-2.el6.src.rpm) = 321815 SHA256 (rpm/x86_64/centos/6.7/libXi-1.7.2-2.2.el6.src.rpm) = 504a3e3fc97970fd1e204fda0116b637552d853cd29a38215a971bf5319752dd SIZE (rpm/x86_64/centos/6.7/libXi-1.7.2-2.2.el6.src.rpm) = 456735 SHA256 (rpm/x86_64/centos/6.7/libXinerama-1.1.3-2.1.el6.src.rpm) = 0f0a1339bd84df127765d3673599975f8112cedc40f3c762fe1044bd6ae0eac0 SIZE (rpm/x86_64/centos/6.7/libXinerama-1.1.3-2.1.el6.src.rpm) = 288807 SHA256 (rpm/x86_64/centos/6.7/libXmu-1.1.1-2.el6.src.rpm) = 9272665cd59f3e5d457cfed604fa0b1f78fc02f4a6e10210f29927a7bb307b25 SIZE (rpm/x86_64/centos/6.7/libXmu-1.1.1-2.el6.src.rpm) = 394966 SHA256 (rpm/x86_64/centos/6.7/libXp-1.0.2-2.1.el6.src.rpm) = d777b8d29c4cc697c8a0144865873a88981f76635ee854ddf079f6b9f6b376ac SIZE (rpm/x86_64/centos/6.7/libXp-1.0.2-2.1.el6.src.rpm) = 321744 SHA256 (rpm/x86_64/centos/6.7/libXpm-3.5.10-2.el6.src.rpm) = 7858749af63405616c76fe82e11d6f961514304fef22532303a828a26b169bc7 SIZE (rpm/x86_64/centos/6.7/libXpm-3.5.10-2.el6.src.rpm) = 441985 SHA256 (rpm/x86_64/centos/6.7/libXrandr-1.4.1-2.1.el6.src.rpm) = e1e8f19caaded61359a8b89923fbda3bfc58df8798bbb5e0901c065387c0d85f SIZE (rpm/x86_64/centos/6.7/libXrandr-1.4.1-2.1.el6.src.rpm) = 324843 SHA256 (rpm/x86_64/centos/6.7/libXrender-0.9.8-2.1.el6.src.rpm) = bf54e2da6ff1aeff89bdbb4cf3c235d7798c550986e6e3ccdcdff07acfaf0f18 SIZE (rpm/x86_64/centos/6.7/libXrender-0.9.8-2.1.el6.src.rpm) = 317274 SHA256 (rpm/x86_64/centos/6.7/libXres-1.0.7-2.1.el6.src.rpm) = 9e95b7846f3a2a192493d101b06c13d6fc6e776f40f727aa1b22b5c803d1985a SIZE (rpm/x86_64/centos/6.7/libXres-1.0.7-2.1.el6.src.rpm) = 293750 SHA256 (rpm/x86_64/centos/6.7/libXt-1.1.4-6.1.el6.src.rpm) = 149e4fe5778ac39be1c31e3dfca64bc395c8a23f1e6f8f05aa380e278bd9e65e SIZE (rpm/x86_64/centos/6.7/libXt-1.1.4-6.1.el6.src.rpm) = 776680 SHA256 (rpm/x86_64/centos/6.7/libXtst-1.2.2-2.1.el6.src.rpm) = 0966603af537dafb97b395b2be880febe080f1ed52505f48d636b991966f4110 SIZE (rpm/x86_64/centos/6.7/libXtst-1.2.2-2.1.el6.src.rpm) = 333437 SHA256 (rpm/x86_64/centos/6.7/libXv-1.0.9-2.1.el6.src.rpm) = e43958598aa0bbd50e67ffebf73689039ff8aa4564213a3bc4ae8d4a30cf0132 SIZE (rpm/x86_64/centos/6.7/libXv-1.0.9-2.1.el6.src.rpm) = 320979 SHA256 (rpm/x86_64/centos/6.7/libXvMC-1.0.8-2.1.el6.src.rpm) = 708041a1e5b1b8568a158638ef4e019eca8a4bb7cb1ede8c0032eb9c2bd137ff SIZE (rpm/x86_64/centos/6.7/libXvMC-1.0.8-2.1.el6.src.rpm) = 316801 SHA256 (rpm/x86_64/centos/6.7/libXxf86dga-1.1.4-2.1.el6.src.rpm) = 2dfbf2e4f2d9b4b9f8c643e01f747d6414242991cf3f3bb61d794d90f26d5361 SIZE (rpm/x86_64/centos/6.7/libXxf86dga-1.1.4-2.1.el6.src.rpm) = 290830 SHA256 (rpm/x86_64/centos/6.7/libXxf86misc-1.0.3-4.el6.src.rpm) = a7d60854dd5ae2ea846afc16b98d57a7c55683f0d9c1f1f7f3bd66f199d3e477 SIZE (rpm/x86_64/centos/6.7/libXxf86misc-1.0.3-4.el6.src.rpm) = 265223 SHA256 (rpm/x86_64/centos/6.7/libXxf86vm-1.1.3-2.1.el6.src.rpm) = df5c420dac0f86e23da8ae2483032e695ea3b44680d0efe249876084bcbee135 SIZE (rpm/x86_64/centos/6.7/libXxf86vm-1.1.3-2.1.el6.src.rpm) = 295146 SHA256 (rpm/x86_64/centos/6.7/libfontenc-1.0.5-2.el6.src.rpm) = b59e72c9036647cc81465f8a7080dcd14f7e0b862bbe7324f253418f3c10c581 SIZE (rpm/x86_64/centos/6.7/libfontenc-1.0.5-2.el6.src.rpm) = 261431 SHA256 (rpm/x86_64/centos/6.7/libxcb-1.9.1-3.el6.src.rpm) = 5ee39de56b413ee513387102d6e433601cb92a72addcd2ce2d38caf083778df2 SIZE (rpm/x86_64/centos/6.7/libxcb-1.9.1-3.el6.src.rpm) = 653361 SHA256 (rpm/x86_64/centos/6.7/libxkbfile-1.0.6-1.1.el6.src.rpm) = 555d3e4920aa3ff5eab1a82b360d601719628d79875288f76b519b72241b543a SIZE (rpm/x86_64/centos/6.7/libxkbfile-1.0.6-1.1.el6.src.rpm) = 294724 SHA256 (rpm/x86_64/centos/6.7/mesa-libGLw-6.5.1-10.el6.src.rpm) = 994c1bbdd8a3274d56d5acab0e7409d1a4b831c74b25ddfbb3663a6453206ddc SIZE (rpm/x86_64/centos/6.7/mesa-libGLw-6.5.1-10.el6.src.rpm) = 3131976 Index: head/x11/linux-c6-xorg-libs/pkg-plist.x86_64 =================================================================== --- head/x11/linux-c6-xorg-libs/pkg-plist.x86_64 (revision 413167) +++ head/x11/linux-c6-xorg-libs/pkg-plist.x86_64 (revision 413168) @@ -1,202 +1,319 @@ +usr/lib/libGLw.so.1 +usr/lib/libGLw.so.1.0.0 +usr/lib/libICE.so.6 +usr/lib/libICE.so.6.3.0 +usr/lib/libSM.so.6 +usr/lib/libSM.so.6.0.1 +usr/lib/libX11-xcb.so.1 +usr/lib/libX11-xcb.so.1.0.0 +usr/lib/libX11.so.6 +usr/lib/libX11.so.6.3.0 +usr/lib/libXRes.so.1 +usr/lib/libXRes.so.1.0.0 +usr/lib/libXau.so.6 +usr/lib/libXau.so.6.0.0 +usr/lib/libXaw.so.7 +usr/lib/libXaw7.so.7 +usr/lib/libXaw7.so.7.0.0 +usr/lib/libXcomposite.so.1 +usr/lib/libXcomposite.so.1.0.0 +usr/lib/libXcursor.so.1 +usr/lib/libXcursor.so.1.0.2 +usr/lib/libXdamage.so.1 +usr/lib/libXdamage.so.1.1.0 +usr/lib/libXdmcp.so.6 +usr/lib/libXdmcp.so.6.0.0 +usr/lib/libXevie.so.1 +usr/lib/libXevie.so.1.0.0 +usr/lib/libXext.so.6 +usr/lib/libXext.so.6.4.0 +usr/lib/libXfixes.so.3 +usr/lib/libXfixes.so.3.1.0 +usr/lib/libXfont.so.1 +usr/lib/libXfont.so.1.4.1 +usr/lib/libXft.so.2 +usr/lib/libXft.so.2.3.1 +usr/lib/libXi.so.6 +usr/lib/libXi.so.6.1.0 +usr/lib/libXinerama.so.1 +usr/lib/libXinerama.so.1.0.0 +usr/lib/libXmu.so.6 +usr/lib/libXmu.so.6.2.0 +usr/lib/libXmuu.so.1 +usr/lib/libXmuu.so.1.0.0 +usr/lib/libXp.so.6 +usr/lib/libXp.so.6.2.0 +usr/lib/libXpm.so.4 +usr/lib/libXpm.so.4.11.0 +usr/lib/libXrandr.so.2 +usr/lib/libXrandr.so.2.2.0 +usr/lib/libXrender.so.1 +usr/lib/libXrender.so.1.3.0 +usr/lib/libXss.so.1 +usr/lib/libXss.so.1.0.0 +usr/lib/libXt.so.6 +usr/lib/libXt.so.6.0.0 +usr/lib/libXtst.so.6 +usr/lib/libXtst.so.6.1.0 +usr/lib/libXv.so.1 +usr/lib/libXv.so.1.0.0 +usr/lib/libXvMC.so.1 +usr/lib/libXvMC.so.1.0.0 +usr/lib/libXvMCW.so.1 +usr/lib/libXvMCW.so.1.0.0 +usr/lib/libXxf86dga.so.1 +usr/lib/libXxf86dga.so.1.0.0 +usr/lib/libXxf86misc.so.1 +usr/lib/libXxf86misc.so.1.1.0 +usr/lib/libXxf86vm.so.1 +usr/lib/libXxf86vm.so.1.0.0 +usr/lib/libfontenc.so.1 +usr/lib/libfontenc.so.1.0.0 +usr/lib/libxcb-composite.so.0 +usr/lib/libxcb-composite.so.0.0.0 +usr/lib/libxcb-damage.so.0 +usr/lib/libxcb-damage.so.0.0.0 +usr/lib/libxcb-dpms.so.0 +usr/lib/libxcb-dpms.so.0.0.0 +usr/lib/libxcb-dri2.so.0 +usr/lib/libxcb-dri2.so.0.0.0 +usr/lib/libxcb-glx.so.0 +usr/lib/libxcb-glx.so.0.0.0 +usr/lib/libxcb-randr.so.0 +usr/lib/libxcb-randr.so.0.1.0 +usr/lib/libxcb-record.so.0 +usr/lib/libxcb-record.so.0.0.0 +usr/lib/libxcb-render.so.0 +usr/lib/libxcb-render.so.0.0.0 +usr/lib/libxcb-res.so.0 +usr/lib/libxcb-res.so.0.0.0 +usr/lib/libxcb-screensaver.so.0 +usr/lib/libxcb-screensaver.so.0.0.0 +usr/lib/libxcb-shape.so.0 +usr/lib/libxcb-shape.so.0.0.0 +usr/lib/libxcb-shm.so.0 +usr/lib/libxcb-shm.so.0.0.0 +usr/lib/libxcb-sync.so.0 +usr/lib/libxcb-sync.so.0.0.0 +usr/lib/libxcb-xevie.so.0 +usr/lib/libxcb-xevie.so.0.0.0 +usr/lib/libxcb-xf86dri.so.0 +usr/lib/libxcb-xf86dri.so.0.0.0 +usr/lib/libxcb-xfixes.so.0 +usr/lib/libxcb-xfixes.so.0.0.0 +usr/lib/libxcb-xinerama.so.0 +usr/lib/libxcb-xinerama.so.0.0.0 +usr/lib/libxcb-xselinux.so.0 +usr/lib/libxcb-xselinux.so.0.0.0 +usr/lib/libxcb-xtest.so.0 +usr/lib/libxcb-xtest.so.0.0.0 +usr/lib/libxcb-xv.so.0 +usr/lib/libxcb-xv.so.0.0.0 +usr/lib/libxcb-xvmc.so.0 +usr/lib/libxcb-xvmc.so.0.0.0 +usr/lib/libxcb.so.1 +usr/lib/libxcb.so.1.1.0 +usr/lib/libxkbfile.so.1 +usr/lib/libxkbfile.so.1.0.2 usr/lib64/libGLw.so.1 usr/lib64/libGLw.so.1.0.0 usr/lib64/libICE.so.6 usr/lib64/libICE.so.6.3.0 usr/lib64/libSM.so.6 usr/lib64/libSM.so.6.0.1 usr/lib64/libX11-xcb.so.1 usr/lib64/libX11-xcb.so.1.0.0 usr/lib64/libX11.so.6 usr/lib64/libX11.so.6.3.0 usr/lib64/libXRes.so.1 usr/lib64/libXRes.so.1.0.0 usr/lib64/libXau.so.6 usr/lib64/libXau.so.6.0.0 usr/lib64/libXaw.so.7 usr/lib64/libXaw7.so.7 usr/lib64/libXaw7.so.7.0.0 usr/lib64/libXcomposite.so.1 usr/lib64/libXcomposite.so.1.0.0 usr/lib64/libXcursor.so.1 usr/lib64/libXcursor.so.1.0.2 usr/lib64/libXdamage.so.1 usr/lib64/libXdamage.so.1.1.0 usr/lib64/libXdmcp.so.6 usr/lib64/libXdmcp.so.6.0.0 usr/lib64/libXevie.so.1 usr/lib64/libXevie.so.1.0.0 usr/lib64/libXext.so.6 usr/lib64/libXext.so.6.4.0 usr/lib64/libXfixes.so.3 usr/lib64/libXfixes.so.3.1.0 usr/lib64/libXfont.so.1 usr/lib64/libXfont.so.1.4.1 usr/lib64/libXft.so.2 usr/lib64/libXft.so.2.3.1 usr/lib64/libXi.so.6 usr/lib64/libXi.so.6.1.0 usr/lib64/libXinerama.so.1 usr/lib64/libXinerama.so.1.0.0 usr/lib64/libXmu.so.6 usr/lib64/libXmu.so.6.2.0 usr/lib64/libXmuu.so.1 usr/lib64/libXmuu.so.1.0.0 usr/lib64/libXp.so.6 usr/lib64/libXp.so.6.2.0 usr/lib64/libXpm.so.4 usr/lib64/libXpm.so.4.11.0 usr/lib64/libXrandr.so.2 usr/lib64/libXrandr.so.2.2.0 usr/lib64/libXrender.so.1 usr/lib64/libXrender.so.1.3.0 usr/lib64/libXss.so.1 usr/lib64/libXss.so.1.0.0 usr/lib64/libXt.so.6 usr/lib64/libXt.so.6.0.0 usr/lib64/libXtst.so.6 usr/lib64/libXtst.so.6.1.0 usr/lib64/libXv.so.1 usr/lib64/libXv.so.1.0.0 usr/lib64/libXvMC.so.1 usr/lib64/libXvMC.so.1.0.0 usr/lib64/libXvMCW.so.1 usr/lib64/libXvMCW.so.1.0.0 usr/lib64/libXxf86dga.so.1 usr/lib64/libXxf86dga.so.1.0.0 usr/lib64/libXxf86misc.so.1 usr/lib64/libXxf86misc.so.1.1.0 usr/lib64/libXxf86vm.so.1 usr/lib64/libXxf86vm.so.1.0.0 usr/lib64/libfontenc.so.1 usr/lib64/libfontenc.so.1.0.0 usr/lib64/libxcb-composite.so.0 usr/lib64/libxcb-composite.so.0.0.0 usr/lib64/libxcb-damage.so.0 usr/lib64/libxcb-damage.so.0.0.0 usr/lib64/libxcb-dpms.so.0 usr/lib64/libxcb-dpms.so.0.0.0 usr/lib64/libxcb-dri2.so.0 usr/lib64/libxcb-dri2.so.0.0.0 usr/lib64/libxcb-glx.so.0 usr/lib64/libxcb-glx.so.0.0.0 usr/lib64/libxcb-randr.so.0 usr/lib64/libxcb-randr.so.0.1.0 usr/lib64/libxcb-record.so.0 usr/lib64/libxcb-record.so.0.0.0 usr/lib64/libxcb-render.so.0 usr/lib64/libxcb-render.so.0.0.0 usr/lib64/libxcb-res.so.0 usr/lib64/libxcb-res.so.0.0.0 usr/lib64/libxcb-screensaver.so.0 usr/lib64/libxcb-screensaver.so.0.0.0 usr/lib64/libxcb-shape.so.0 usr/lib64/libxcb-shape.so.0.0.0 usr/lib64/libxcb-shm.so.0 usr/lib64/libxcb-shm.so.0.0.0 usr/lib64/libxcb-sync.so.0 usr/lib64/libxcb-sync.so.0.0.0 usr/lib64/libxcb-xevie.so.0 usr/lib64/libxcb-xevie.so.0.0.0 usr/lib64/libxcb-xf86dri.so.0 usr/lib64/libxcb-xf86dri.so.0.0.0 usr/lib64/libxcb-xfixes.so.0 usr/lib64/libxcb-xfixes.so.0.0.0 usr/lib64/libxcb-xinerama.so.0 usr/lib64/libxcb-xinerama.so.0.0.0 usr/lib64/libxcb-xselinux.so.0 usr/lib64/libxcb-xselinux.so.0.0.0 usr/lib64/libxcb-xtest.so.0 usr/lib64/libxcb-xtest.so.0.0.0 usr/lib64/libxcb-xv.so.0 usr/lib64/libxcb-xv.so.0.0.0 usr/lib64/libxcb-xvmc.so.0 usr/lib64/libxcb-xvmc.so.0.0.0 usr/lib64/libxcb.so.1 usr/lib64/libxcb.so.1.1.0 usr/lib64/libxkbfile.so.1 usr/lib64/libxkbfile.so.1.0.2 usr/share/doc/libICE-1.0.6/AUTHORS usr/share/doc/libICE-1.0.6/COPYING usr/share/doc/libICE-1.0.6/ChangeLog usr/share/doc/libSM-1.2.1/AUTHORS usr/share/doc/libSM-1.2.1/COPYING usr/share/doc/libSM-1.2.1/ChangeLog usr/share/doc/libXScrnSaver-1.2.2/COPYING usr/share/doc/libXScrnSaver-1.2.2/ChangeLog usr/share/doc/libXScrnSaver-1.2.2/README usr/share/doc/libXau-1.0.6/AUTHORS usr/share/doc/libXau-1.0.6/COPYING usr/share/doc/libXau-1.0.6/ChangeLog usr/share/doc/libXau-1.0.6/README usr/share/doc/libXaw-1.0.11/COPYING usr/share/doc/libXaw-1.0.11/ChangeLog usr/share/doc/libXaw-1.0.11/README usr/share/doc/libXcomposite-0.4.3/AUTHORS usr/share/doc/libXcomposite-0.4.3/COPYING usr/share/doc/libXcomposite-0.4.3/ChangeLog usr/share/doc/libXcomposite-0.4.3/README usr/share/doc/libXcursor-1.1.14/AUTHORS usr/share/doc/libXcursor-1.1.14/COPYING usr/share/doc/libXcursor-1.1.14/README usr/share/doc/libXdamage-1.1.3/AUTHORS usr/share/doc/libXdamage-1.1.3/COPYING usr/share/doc/libXdamage-1.1.3/ChangeLog usr/share/doc/libXdamage-1.1.3/README usr/share/doc/libXdmcp-1.1.1/AUTHORS usr/share/doc/libXdmcp-1.1.1/COPYING usr/share/doc/libXdmcp-1.1.1/ChangeLog usr/share/doc/libXdmcp-1.1.1/Wraphelp.README.crypto usr/share/doc/libXevie-1.0.3/AUTHORS usr/share/doc/libXevie-1.0.3/COPYING usr/share/doc/libXevie-1.0.3/ChangeLog usr/share/doc/libXext-1.3.2/AUTHORS usr/share/doc/libXext-1.3.2/COPYING usr/share/doc/libXfixes-5.0.1/AUTHORS usr/share/doc/libXfixes-5.0.1/COPYING usr/share/doc/libXfixes-5.0.1/README usr/share/doc/libXfont-1.4.5/AUTHORS usr/share/doc/libXfont-1.4.5/COPYING usr/share/doc/libXfont-1.4.5/ChangeLog usr/share/doc/libXft-2.3.1/AUTHORS usr/share/doc/libXft-2.3.1/COPYING usr/share/doc/libXft-2.3.1/ChangeLog usr/share/doc/libXft-2.3.1/README usr/share/doc/libXi-1.7.2/COPYING usr/share/doc/libXinerama-1.1.3/COPYING usr/share/doc/libXmu-1.1.1/COPYING usr/share/doc/libXmu-1.1.1/ChangeLog usr/share/doc/libXmu-1.1.1/README usr/share/doc/libXp-1.0.2/AUTHORS usr/share/doc/libXp-1.0.2/COPYING usr/share/doc/libXp-1.0.2/ChangeLog usr/share/doc/libXpm-3.5.10/AUTHORS usr/share/doc/libXpm-3.5.10/COPYING usr/share/doc/libXpm-3.5.10/ChangeLog usr/share/doc/libXrandr-1.4.1/AUTHORS usr/share/doc/libXrandr-1.4.1/COPYING usr/share/doc/libXrender-0.9.8/AUTHORS usr/share/doc/libXrender-0.9.8/COPYING usr/share/doc/libXres-1.0.7/AUTHORS usr/share/doc/libXres-1.0.7/COPYING usr/share/doc/libXt-1.1.4/COPYING usr/share/doc/libXtst-1.2.2/COPYING usr/share/doc/libXv-1.0.9/AUTHORS usr/share/doc/libXv-1.0.9/COPYING usr/share/doc/libXvMC-1.0.8/COPYING usr/share/doc/libXvMC-1.0.8/README usr/share/doc/libXxf86dga-1.1.4/COPYING usr/share/doc/libXxf86dga-1.1.4/README usr/share/doc/libXxf86misc-1.0.3/COPYING usr/share/doc/libXxf86misc-1.0.3/ChangeLog usr/share/doc/libXxf86misc-1.0.3/README usr/share/doc/libXxf86vm-1.1.3/COPYING usr/share/doc/libXxf86vm-1.1.3/README usr/share/doc/libfontenc-1.0.5/AUTHORS usr/share/doc/libfontenc-1.0.5/COPYING usr/share/doc/libfontenc-1.0.5/ChangeLog usr/share/doc/libfontenc-1.0.5/README usr/share/doc/libxkbfile-1.0.6/COPYING usr/share/doc/libxkbfile-1.0.6/ChangeLog usr/share/doc/mesa-libGLw-6.5.1/README usr/share/icons/default/index.theme @dir usr/share/X11/app-defaults Property changes on: head/x11/linux-c6-xorg-libs/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/x11-fonts/linux-c6-fontconfig/distinfo.x86_64 =================================================================== --- head/x11-fonts/linux-c6-fontconfig/distinfo.x86_64 (revision 413167) +++ head/x11-fonts/linux-c6-fontconfig/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/fontconfig-2.8.0-5.el6.x86_64.rpm) = 6a915b6e1ad740994aa9688d70a67ff2b6b72e0ced668794aeb27b2d0f2e237b SIZE (rpm/x86_64/centos/6.7/fontconfig-2.8.0-5.el6.x86_64.rpm) = 189964 +SHA256 (rpm/x86_64/centos/6.7/fontconfig-2.8.0-5.el6.i686.rpm) = 09cee79c086775d03e0219dc92d82f2803d6936bfe44f0c71f4ff7c33918d4f8 +SIZE (rpm/x86_64/centos/6.7/fontconfig-2.8.0-5.el6.i686.rpm) = 190768 SHA256 (rpm/x86_64/centos/6.7/fontconfig-2.8.0-5.el6.src.rpm) = 8a737297dbb39f12c67f88db1b21b37ef97bed2ca00fa0975b16e264d6953a33 SIZE (rpm/x86_64/centos/6.7/fontconfig-2.8.0-5.el6.src.rpm) = 1565935 Index: head/x11-fonts/linux-c6-fontconfig/pkg-plist.x86_64 =================================================================== --- head/x11-fonts/linux-c6-fontconfig/pkg-plist.x86_64 (revision 413167) +++ head/x11-fonts/linux-c6-fontconfig/pkg-plist.x86_64 (revision 413168) @@ -1,19 +1,21 @@ etc/fonts usr/bin/fc-cat usr/bin/fc-list usr/bin/fc-match usr/bin/fc-query usr/bin/fc-scan +usr/lib/libfontconfig.so.1 +usr/lib/libfontconfig.so.1.4.4 usr/lib64/libfontconfig.so.1 usr/lib64/libfontconfig.so.1.4.4 usr/share/doc/fontconfig-2.8.0/AUTHORS usr/share/doc/fontconfig-2.8.0/COPYING usr/share/doc/fontconfig-2.8.0/README usr/share/doc/fontconfig-2.8.0/fontconfig-user.html usr/share/doc/fontconfig-2.8.0/fontconfig-user.txt usr/share/man/man1/fc-cat.1.gz usr/share/man/man1/fc-list.1.gz usr/share/man/man1/fc-match.1.gz usr/share/man/man1/fc-query.1.gz usr/share/man/man1/fc-scan.1.gz usr/share/man/man5/fonts-conf.5.gz Property changes on: head/x11-fonts/linux-c6-fontconfig/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/x11-toolkits/linux-c6-gtk2/Makefile =================================================================== --- head/x11-toolkits/linux-c6-gtk2/Makefile (revision 413167) +++ head/x11-toolkits/linux-c6-gtk2/Makefile (revision 413168) @@ -1,34 +1,35 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= gtk2 PORTVERSION= 2.24.23 PORTREVISION= 1 CATEGORIES= x11-toolkits linux -DISTFILES= ${DISTNAME}.${LINUX_RPM_ARCH}.rpm \ +DISTFILES= # +LIB_DISTFILES= ${DISTNAME}.${LINUX_RPM_ARCH}.rpm \ ${PORTNAME}-engines-2.18.4-5.el6.${LINUX_DIST}.${LINUX_RPM_ARCH}.rpm \ pixman-0.32.4-4.el6.${LINUX_RPM_ARCH}.rpm \ jasper-libs-1.900.1-16.el6_6.3.${LINUX_RPM_ARCH}.rpm MAINTAINER= emulation@FreeBSD.org COMMENT= GTK+ library, version 2.X (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-gtk2-[0-9]* linux-f8-gtk2-[0-9]* linux-f10-gtk2-[0-9]* ONLY_FOR_ARCHS= i386 amd64 USE_LINUX= c6 USE_LINUX_APPS= atk gdkpixbuf2 jpeg pango png tiff xorglibs USE_LINUX_RPM= yes RPMVERSION= 6.el6 BRANDELF_DIRS= usr/bin USE_LDCONFIG= yes DESCR= ${.CURDIR}/../${PORTNAME}0/pkg-descr .if defined(PACKAGE_BUILDING) SRC_DISTFILES= gtk2-${PORTVERSION}-${RPMVERSION}.src.rpm:SOURCE \ pixman-0.32.4-4.el6.src.rpm:SOURCE \ jasper-1.900.1-16.el6_6.3.src.rpm:SOURCE .endif .include Index: head/x11-toolkits/linux-c6-gtk2/distinfo.x86_64 =================================================================== --- head/x11-toolkits/linux-c6-gtk2/distinfo.x86_64 (revision 413167) +++ head/x11-toolkits/linux-c6-gtk2/distinfo.x86_64 (revision 413168) @@ -1,14 +1,22 @@ SHA256 (rpm/x86_64/centos/6.7/gtk2-2.24.23-6.el6.x86_64.rpm) = 7a438d6c0d24078815332b1039ee5e15f6842435c6b55f31b82bf95d68a0f2d4 SIZE (rpm/x86_64/centos/6.7/gtk2-2.24.23-6.el6.x86_64.rpm) = 3339880 SHA256 (rpm/x86_64/centos/6.7/gtk2-engines-2.18.4-5.el6.centos.x86_64.rpm) = 3bfafe6099319b5339a5118f0225a72dbed61908971ecd931f3356151aaddbef SIZE (rpm/x86_64/centos/6.7/gtk2-engines-2.18.4-5.el6.centos.x86_64.rpm) = 288276 SHA256 (rpm/x86_64/centos/6.7/pixman-0.32.4-4.el6.x86_64.rpm) = e6897bd75292c623203b029c774934a6af6fbce7c1edfbb053eec1a09bd2171f SIZE (rpm/x86_64/centos/6.7/pixman-0.32.4-4.el6.x86_64.rpm) = 248496 SHA256 (rpm/x86_64/centos/6.7/jasper-libs-1.900.1-16.el6_6.3.x86_64.rpm) = f97f6af75d7ac6140e4f126e4e34b8e5b2eba7a0c6ed65694cecaaf88100d806 SIZE (rpm/x86_64/centos/6.7/jasper-libs-1.900.1-16.el6_6.3.x86_64.rpm) = 140540 +SHA256 (rpm/x86_64/centos/6.7/gtk2-2.24.23-6.el6.i686.rpm) = ba15b0786a262f763466d4a92a05fe6cdfaf0ec5d6b31214de2f14f64f9901eb +SIZE (rpm/x86_64/centos/6.7/gtk2-2.24.23-6.el6.i686.rpm) = 3330836 +SHA256 (rpm/x86_64/centos/6.7/gtk2-engines-2.18.4-5.el6.centos.i686.rpm) = 33ecb6ade9ff52e2c924c13db849f4b955f9bddd21225717bf2874a4a86575d8 +SIZE (rpm/x86_64/centos/6.7/gtk2-engines-2.18.4-5.el6.centos.i686.rpm) = 281788 +SHA256 (rpm/x86_64/centos/6.7/pixman-0.32.4-4.el6.i686.rpm) = 288b092170878427d1539b66df1d94e852a0620a81a6cc9d4a2eea3afb97ac9b +SIZE (rpm/x86_64/centos/6.7/pixman-0.32.4-4.el6.i686.rpm) = 239492 +SHA256 (rpm/x86_64/centos/6.7/jasper-libs-1.900.1-16.el6_6.3.i686.rpm) = 867485f066f16b8d4067771a01f6f8c60dda135f27c5a6441b2089d8e9255533 +SIZE (rpm/x86_64/centos/6.7/jasper-libs-1.900.1-16.el6_6.3.i686.rpm) = 140456 SHA256 (rpm/x86_64/centos/6.7/gtk2-2.24.23-6.el6.src.rpm) = 59207420d301e453271b42c828a0ace5439c94099f522c10776c1e05559d8038 SIZE (rpm/x86_64/centos/6.7/gtk2-2.24.23-6.el6.src.rpm) = 13417157 SHA256 (rpm/x86_64/centos/6.7/pixman-0.32.4-4.el6.src.rpm) = d49b7820864681a941452aeb271f2caa897deb91cc456ce1c48cdff868604f5e SIZE (rpm/x86_64/centos/6.7/pixman-0.32.4-4.el6.src.rpm) = 716944 SHA256 (rpm/x86_64/centos/6.7/jasper-1.900.1-16.el6_6.3.src.rpm) = 28ef9fb9cc889fc9f43cd360125de42994829a92c5ede0b3d82dc9e0159f4605 SIZE (rpm/x86_64/centos/6.7/jasper-1.900.1-16.el6_6.3.src.rpm) = 1404135 Index: head/x11-toolkits/linux-c6-gtk2/pkg-plist.x86_64 =================================================================== --- head/x11-toolkits/linux-c6-gtk2/pkg-plist.x86_64 (revision 413167) +++ head/x11-toolkits/linux-c6-gtk2/pkg-plist.x86_64 (revision 413168) @@ -1,225 +1,254 @@ +usr/bin/gtk-query-immodules-2.0-32 usr/bin/gtk-query-immodules-2.0-64 usr/bin/gtk-update-icon-cache usr/bin/update-gtk-immodules +usr/lib/gtk-2.0/2.10.0/engines/libclearlooks.so +usr/lib/gtk-2.0/2.10.0/engines/libcrux-engine.so +usr/lib/gtk-2.0/2.10.0/engines/libglide.so +usr/lib/gtk-2.0/2.10.0/engines/libhcengine.so +usr/lib/gtk-2.0/2.10.0/engines/libindustrial.so +usr/lib/gtk-2.0/2.10.0/engines/libmist.so +usr/lib/gtk-2.0/2.10.0/engines/libpixmap.so +usr/lib/gtk-2.0/2.10.0/engines/libredmond95.so +usr/lib/gtk-2.0/2.10.0/engines/libthinice.so +usr/lib/gtk-2.0/2.10.0/printbackends/libprintbackend-cups.so +usr/lib/gtk-2.0/2.10.0/printbackends/libprintbackend-file.so +usr/lib/gtk-2.0/2.10.0/printbackends/libprintbackend-lpr.so +usr/lib/gtk-2.0/modules/libferret.so +usr/lib/gtk-2.0/modules/libgail.so +usr/lib/libgailutil.so.18 +usr/lib/libgailutil.so.18.0.1 +usr/lib/libgdk-x11-2.0.so.0 +usr/lib/libgdk-x11-2.0.so.0.2400.23 +usr/lib/libgtk-x11-2.0.so.0 +usr/lib/libgtk-x11-2.0.so.0.2400.23 +usr/lib/libjasper.so.1 +usr/lib/libjasper.so.1.0.0 +usr/lib/libpixman-1.so.0 +usr/lib/libpixman-1.so.0.32.4 usr/lib64/gtk-2.0/2.10.0/engines/libclearlooks.so usr/lib64/gtk-2.0/2.10.0/engines/libcrux-engine.so usr/lib64/gtk-2.0/2.10.0/engines/libglide.so usr/lib64/gtk-2.0/2.10.0/engines/libhcengine.so usr/lib64/gtk-2.0/2.10.0/engines/libindustrial.so usr/lib64/gtk-2.0/2.10.0/engines/libmist.so usr/lib64/gtk-2.0/2.10.0/engines/libpixmap.so usr/lib64/gtk-2.0/2.10.0/engines/libredmond95.so usr/lib64/gtk-2.0/2.10.0/engines/libthinice.so usr/lib64/gtk-2.0/2.10.0/printbackends/libprintbackend-cups.so usr/lib64/gtk-2.0/2.10.0/printbackends/libprintbackend-file.so usr/lib64/gtk-2.0/2.10.0/printbackends/libprintbackend-lpr.so usr/lib64/gtk-2.0/modules/libferret.so usr/lib64/gtk-2.0/modules/libgail.so usr/lib64/libgailutil.so.18 usr/lib64/libgailutil.so.18.0.1 usr/lib64/libgdk-x11-2.0.so.0 usr/lib64/libgdk-x11-2.0.so.0.2400.23 usr/lib64/libgtk-x11-2.0.so.0 usr/lib64/libgtk-x11-2.0.so.0.2400.23 usr/lib64/libjasper.so.1 usr/lib64/libjasper.so.1.0.0 usr/lib64/libpixman-1.so.0 usr/lib64/libpixman-1.so.0.32.4 %%PORTDOCS%%usr/%%DOCSDIR%%-2.24.23/AUTHORS %%PORTDOCS%%usr/%%DOCSDIR%%-2.24.23/COPYING %%PORTDOCS%%usr/%%DOCSDIR%%-2.24.23/NEWS %%PORTDOCS%%usr/%%DOCSDIR%%-2.24.23/README %%PORTDOCS%%usr/%%DOCSDIR%%-engines-2.18.4/AUTHORS %%PORTDOCS%%usr/%%DOCSDIR%%-engines-2.18.4/COPYING %%PORTDOCS%%usr/%%DOCSDIR%%-engines-2.18.4/NEWS %%PORTDOCS%%usr/%%DOCSDIR%%-engines-2.18.4/README usr/share/gtk-engines/clearlooks.xml usr/share/gtk-engines/crux-engine.xml usr/share/gtk-engines/glide.xml usr/share/gtk-engines/hcengine.xml usr/share/gtk-engines/industrial.xml usr/share/gtk-engines/mist.xml usr/share/gtk-engines/redmond95.xml usr/share/gtk-engines/thinice.xml usr/share/locale/af/LC_MESSAGES/gtk20.mo usr/share/locale/am/LC_MESSAGES/gtk20.mo usr/share/locale/ang/LC_MESSAGES/gtk20.mo usr/share/locale/ar/LC_MESSAGES/gtk-engines.mo usr/share/locale/ar/LC_MESSAGES/gtk20.mo usr/share/locale/as/LC_MESSAGES/gtk-engines.mo usr/share/locale/as/LC_MESSAGES/gtk20.mo usr/share/locale/ast/LC_MESSAGES/gtk20.mo usr/share/locale/az/LC_MESSAGES/gtk20.mo usr/share/locale/az_IR/LC_MESSAGES/gtk20.mo usr/share/locale/be/LC_MESSAGES/gtk20.mo usr/share/locale/be@latin/LC_MESSAGES/gtk-engines.mo usr/share/locale/be@latin/LC_MESSAGES/gtk20.mo usr/share/locale/bg/LC_MESSAGES/gtk-engines.mo usr/share/locale/bg/LC_MESSAGES/gtk20.mo usr/share/locale/bn/LC_MESSAGES/gtk-engines.mo usr/share/locale/bn/LC_MESSAGES/gtk20.mo usr/share/locale/bn_IN/LC_MESSAGES/gtk-engines.mo usr/share/locale/bn_IN/LC_MESSAGES/gtk20.mo usr/share/locale/br/LC_MESSAGES/gtk20.mo usr/share/locale/bs/LC_MESSAGES/gtk20.mo usr/share/locale/ca/LC_MESSAGES/gtk-engines.mo usr/share/locale/ca/LC_MESSAGES/gtk20.mo usr/share/locale/ca@valencia/LC_MESSAGES/gtk-engines.mo usr/share/locale/ca@valencia/LC_MESSAGES/gtk20.mo usr/share/locale/crh/LC_MESSAGES/gtk20.mo usr/share/locale/cs/LC_MESSAGES/gtk-engines.mo usr/share/locale/cs/LC_MESSAGES/gtk20.mo usr/share/locale/cy/LC_MESSAGES/gtk20.mo usr/share/locale/da/LC_MESSAGES/gtk-engines.mo usr/share/locale/da/LC_MESSAGES/gtk20.mo usr/share/locale/de/LC_MESSAGES/gtk-engines.mo usr/share/locale/de/LC_MESSAGES/gtk20.mo usr/share/locale/dz/LC_MESSAGES/gtk-engines.mo usr/share/locale/dz/LC_MESSAGES/gtk20.mo usr/share/locale/el/LC_MESSAGES/gtk-engines.mo usr/share/locale/el/LC_MESSAGES/gtk20.mo usr/share/locale/en_CA/LC_MESSAGES/gtk20.mo usr/share/locale/en_GB/LC_MESSAGES/gtk-engines.mo usr/share/locale/en_GB/LC_MESSAGES/gtk20.mo usr/share/locale/eo/LC_MESSAGES/gtk20.mo usr/share/locale/es/LC_MESSAGES/gtk-engines.mo usr/share/locale/es/LC_MESSAGES/gtk20.mo usr/share/locale/et/LC_MESSAGES/gtk-engines.mo usr/share/locale/et/LC_MESSAGES/gtk20.mo usr/share/locale/eu/LC_MESSAGES/gtk-engines.mo usr/share/locale/eu/LC_MESSAGES/gtk20.mo usr/share/locale/fa/LC_MESSAGES/gtk20.mo usr/share/locale/fi/LC_MESSAGES/gtk-engines.mo usr/share/locale/fi/LC_MESSAGES/gtk20.mo usr/share/locale/fr/LC_MESSAGES/gtk-engines.mo usr/share/locale/fr/LC_MESSAGES/gtk20.mo usr/share/locale/fur/LC_MESSAGES/gtk-engines.mo usr/share/locale/ga/LC_MESSAGES/gtk-engines.mo usr/share/locale/ga/LC_MESSAGES/gtk20.mo usr/share/locale/gl/LC_MESSAGES/gtk-engines.mo usr/share/locale/gl/LC_MESSAGES/gtk20.mo usr/share/locale/gu/LC_MESSAGES/gtk-engines.mo usr/share/locale/gu/LC_MESSAGES/gtk20.mo usr/share/locale/he/LC_MESSAGES/gtk-engines.mo usr/share/locale/he/LC_MESSAGES/gtk20.mo usr/share/locale/hi/LC_MESSAGES/gtk-engines.mo usr/share/locale/hi/LC_MESSAGES/gtk20.mo usr/share/locale/hr/LC_MESSAGES/gtk20.mo usr/share/locale/hu/LC_MESSAGES/gtk-engines.mo usr/share/locale/hu/LC_MESSAGES/gtk20.mo usr/share/locale/hy/LC_MESSAGES/gtk20.mo usr/share/locale/ia/LC_MESSAGES/gtk20.mo usr/share/locale/id/LC_MESSAGES/gtk20.mo usr/share/locale/io/LC_MESSAGES/gtk20.mo usr/share/locale/is/LC_MESSAGES/gtk20.mo usr/share/locale/it/LC_MESSAGES/gtk-engines.mo usr/share/locale/it/LC_MESSAGES/gtk20.mo usr/share/locale/ja/LC_MESSAGES/gtk-engines.mo usr/share/locale/ja/LC_MESSAGES/gtk20.mo usr/share/locale/ka/LC_MESSAGES/gtk20.mo usr/share/locale/kk/LC_MESSAGES/gtk20.mo usr/share/locale/kn/LC_MESSAGES/gtk-engines.mo usr/share/locale/kn/LC_MESSAGES/gtk20.mo usr/share/locale/ko/LC_MESSAGES/gtk-engines.mo usr/share/locale/ko/LC_MESSAGES/gtk20.mo usr/share/locale/ku/LC_MESSAGES/gtk20.mo usr/share/locale/li/LC_MESSAGES/gtk20.mo usr/share/locale/lt/LC_MESSAGES/gtk-engines.mo usr/share/locale/lt/LC_MESSAGES/gtk20.mo usr/share/locale/lv/LC_MESSAGES/gtk20.mo usr/share/locale/mai/LC_MESSAGES/gtk-engines.mo usr/share/locale/mai/LC_MESSAGES/gtk20.mo usr/share/locale/mi/LC_MESSAGES/gtk20.mo usr/share/locale/mk/LC_MESSAGES/gtk-engines.mo usr/share/locale/mk/LC_MESSAGES/gtk20.mo usr/share/locale/ml/LC_MESSAGES/gtk-engines.mo usr/share/locale/ml/LC_MESSAGES/gtk20.mo usr/share/locale/mn/LC_MESSAGES/gtk20.mo usr/share/locale/mr/LC_MESSAGES/gtk-engines.mo usr/share/locale/mr/LC_MESSAGES/gtk20.mo usr/share/locale/ms/LC_MESSAGES/gtk20.mo usr/share/locale/my/LC_MESSAGES/gtk20.mo usr/share/locale/nb/LC_MESSAGES/gtk-engines.mo usr/share/locale/nb/LC_MESSAGES/gtk20.mo usr/share/locale/nds/LC_MESSAGES/gtk20.mo usr/share/locale/ne/LC_MESSAGES/gtk20.mo usr/share/locale/nl/LC_MESSAGES/gtk-engines.mo usr/share/locale/nl/LC_MESSAGES/gtk20.mo usr/share/locale/nn/LC_MESSAGES/gtk-engines.mo usr/share/locale/nn/LC_MESSAGES/gtk20.mo usr/share/locale/nso/LC_MESSAGES/gtk20.mo usr/share/locale/oc/LC_MESSAGES/gtk-engines.mo usr/share/locale/oc/LC_MESSAGES/gtk20.mo usr/share/locale/or/LC_MESSAGES/gtk-engines.mo usr/share/locale/or/LC_MESSAGES/gtk20.mo usr/share/locale/pa/LC_MESSAGES/gtk-engines.mo usr/share/locale/pa/LC_MESSAGES/gtk20.mo usr/share/locale/pl/LC_MESSAGES/gtk-engines.mo usr/share/locale/pl/LC_MESSAGES/gtk20.mo usr/share/locale/ps/LC_MESSAGES/gtk20.mo usr/share/locale/pt/LC_MESSAGES/gtk-engines.mo usr/share/locale/pt/LC_MESSAGES/gtk20.mo usr/share/locale/pt_BR/LC_MESSAGES/gtk-engines.mo usr/share/locale/pt_BR/LC_MESSAGES/gtk20.mo usr/share/locale/ro/LC_MESSAGES/gtk-engines.mo usr/share/locale/ro/LC_MESSAGES/gtk20.mo usr/share/locale/ru/LC_MESSAGES/gtk-engines.mo usr/share/locale/ru/LC_MESSAGES/gtk20.mo usr/share/locale/rw/LC_MESSAGES/gtk20.mo usr/share/locale/si/LC_MESSAGES/gtk-engines.mo usr/share/locale/si/LC_MESSAGES/gtk20.mo usr/share/locale/sk/LC_MESSAGES/gtk20.mo usr/share/locale/sl/LC_MESSAGES/gtk-engines.mo usr/share/locale/sl/LC_MESSAGES/gtk20.mo usr/share/locale/sq/LC_MESSAGES/gtk-engines.mo usr/share/locale/sq/LC_MESSAGES/gtk20.mo usr/share/locale/sr/LC_MESSAGES/gtk-engines.mo usr/share/locale/sr/LC_MESSAGES/gtk20.mo usr/share/locale/sr@ije/LC_MESSAGES/gtk20.mo usr/share/locale/sr@latin/LC_MESSAGES/gtk-engines.mo usr/share/locale/sr@latin/LC_MESSAGES/gtk20.mo usr/share/locale/sv/LC_MESSAGES/gtk-engines.mo usr/share/locale/sv/LC_MESSAGES/gtk20.mo usr/share/locale/ta/LC_MESSAGES/gtk-engines.mo usr/share/locale/ta/LC_MESSAGES/gtk20.mo usr/share/locale/te/LC_MESSAGES/gtk-engines.mo usr/share/locale/te/LC_MESSAGES/gtk20.mo usr/share/locale/th/LC_MESSAGES/gtk-engines.mo usr/share/locale/th/LC_MESSAGES/gtk20.mo usr/share/locale/tk/LC_MESSAGES/gtk20.mo usr/share/locale/tr/LC_MESSAGES/gtk-engines.mo usr/share/locale/tr/LC_MESSAGES/gtk20.mo usr/share/locale/tt/LC_MESSAGES/gtk20.mo usr/share/locale/ug/LC_MESSAGES/gtk20.mo usr/share/locale/uk/LC_MESSAGES/gtk-engines.mo usr/share/locale/uk/LC_MESSAGES/gtk20.mo usr/share/locale/ur/LC_MESSAGES/gtk20.mo usr/share/locale/uz/LC_MESSAGES/gtk20.mo usr/share/locale/uz@cyrillic/LC_MESSAGES/gtk20.mo usr/share/locale/vi/LC_MESSAGES/gtk-engines.mo usr/share/locale/vi/LC_MESSAGES/gtk20.mo usr/share/locale/wa/LC_MESSAGES/gtk20.mo usr/share/locale/xh/LC_MESSAGES/gtk20.mo usr/share/locale/yi/LC_MESSAGES/gtk20.mo usr/share/locale/zh_CN/LC_MESSAGES/gtk-engines.mo usr/share/locale/zh_CN/LC_MESSAGES/gtk20.mo usr/share/locale/zh_HK/LC_MESSAGES/gtk-engines.mo usr/share/locale/zh_HK/LC_MESSAGES/gtk20.mo usr/share/locale/zh_TW/LC_MESSAGES/gtk-engines.mo usr/share/locale/zh_TW/LC_MESSAGES/gtk20.mo +usr/share/man/man1/gtk-query-immodules-2.0-32.1.gz usr/share/man/man1/gtk-query-immodules-2.0-64.1.gz usr/share/man/man1/gtk-query-immodules-2.0.1.gz usr/share/man/man1/gtk-update-icon-cache.1.gz usr/share/man/man1/update-gtk-immodules.1.gz usr/share/themes/Clearlooks/gtk-2.0/gtkrc usr/share/themes/Crux/gtk-2.0/gtkrc usr/share/themes/Default/gtk-2.0-key/gtkrc usr/share/themes/Emacs/gtk-2.0-key/gtkrc usr/share/themes/Industrial/gtk-2.0/gtkrc usr/share/themes/Mist/gtk-2.0/gtkrc usr/share/themes/Raleigh/gtk-2.0/gtkrc usr/share/themes/ThinIce/gtk-2.0/gtkrc +@dir usr/lib/gtk-2.0/2.10.0/filesystems +@dir usr/lib/gtk-2.0/2.10.0/immodules +@dir usr/lib/gtk-2.0/immodules @dir usr/lib64/gtk-2.0/2.10.0/filesystems @dir usr/lib64/gtk-2.0/2.10.0/immodules @dir usr/lib64/gtk-2.0/immodules @dir usr/share/gtk-2.0 Property changes on: head/x11-toolkits/linux-c6-gtk2/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/x11-toolkits/linux-c6-openmotif/distinfo.x86_64 =================================================================== --- head/x11-toolkits/linux-c6-openmotif/distinfo.x86_64 (revision 413167) +++ head/x11-toolkits/linux-c6-openmotif/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/openmotif-2.3.3-8.el6.x86_64.rpm) = fd5d2d0cb2aad05cee5da8f6e971923c0883a7334e1d12a9b28d5fb3956959c0 SIZE (rpm/x86_64/centos/6.7/openmotif-2.3.3-8.el6.x86_64.rpm) = 1417252 +SHA256 (rpm/x86_64/centos/6.7/openmotif-2.3.3-8.el6.i686.rpm) = a3110d8051e806bb87da96f65da5c1f912f530ceeb78d12cf3f372e1ceacf42d +SIZE (rpm/x86_64/centos/6.7/openmotif-2.3.3-8.el6.i686.rpm) = 1417316 SHA256 (rpm/x86_64/centos/6.7/openmotif-2.3.3-8.el6.src.rpm) = 3225eb7285d58c40b08e765d866bffe85f8fb96f19b769ed8899253c568a1eea SIZE (rpm/x86_64/centos/6.7/openmotif-2.3.3-8.el6.src.rpm) = 6059385 Index: head/x11-toolkits/linux-c6-openmotif/pkg-plist.x86_64 =================================================================== --- head/x11-toolkits/linux-c6-openmotif/pkg-plist.x86_64 (revision 413167) +++ head/x11-toolkits/linux-c6-openmotif/pkg-plist.x86_64 (revision 413168) @@ -1,6 +1,12 @@ +usr/lib/libMrm.so.4 +usr/lib/libMrm.so.4.0.3 +usr/lib/libUil.so.4 +usr/lib/libUil.so.4.0.3 +usr/lib/libXm.so.4 +usr/lib/libXm.so.4.0.3 usr/lib64/libMrm.so.4 usr/lib64/libMrm.so.4.0.3 usr/lib64/libUil.so.4 usr/lib64/libUil.so.4.0.3 usr/lib64/libXm.so.4 usr/lib64/libXm.so.4.0.3 Property changes on: head/x11-toolkits/linux-c6-openmotif/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/x11-toolkits/linux-c6-pango/Makefile =================================================================== --- head/x11-toolkits/linux-c6-pango/Makefile (revision 413167) +++ head/x11-toolkits/linux-c6-pango/Makefile (revision 413168) @@ -1,31 +1,30 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= pango PORTVERSION= 1.28.1 PORTREVISION= 2 CATEGORIES= x11-toolkits linux MAINTAINER= emulation@FreeBSD.org COMMENT= Pango library (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-pango-[0-9]* linux-f10-pango-[0-9]* ONLY_FOR_ARCHS= i386 amd64 USE_LINUX= c6 USE_LINUX_APPS= cairo expat fontconfig xorglibs USE_LINUX_RPM= yes RPMVERSION= 10.el6 -.if defined(OVERRIDE_LINUX_BASE_PORT) && ${OVERRIDE_LINUX_BASE_PORT} == "c6_64" -BRANDELF_FILES= usr/bin/pango-querymodules-64 -.else BRANDELF_FILES= usr/bin/pango-querymodules-32 +.if defined(OVERRIDE_LINUX_BASE_PORT) && ${OVERRIDE_LINUX_BASE_PORT} == "c6_64" +BRANDELF_FILES+= usr/bin/pango-querymodules-64 .endif USE_LDCONFIG= yes DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr .include Index: head/x11-toolkits/linux-c6-pango/distinfo.x86_64 =================================================================== --- head/x11-toolkits/linux-c6-pango/distinfo.x86_64 (revision 413167) +++ head/x11-toolkits/linux-c6-pango/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/pango-1.28.1-10.el6.x86_64.rpm) = 414b4892afff1ea1938616177855ae3b46a5a7b9ada54c5435a69c1ee01f95d8 SIZE (rpm/x86_64/centos/6.7/pango-1.28.1-10.el6.x86_64.rpm) = 359616 +SHA256 (rpm/x86_64/centos/6.7/pango-1.28.1-10.el6.i686.rpm) = fed6b64dd11c7674f083e247f88155f694926a371d0011d9c963675273a2afe4 +SIZE (rpm/x86_64/centos/6.7/pango-1.28.1-10.el6.i686.rpm) = 359024 SHA256 (rpm/x86_64/centos/6.7/pango-1.28.1-10.el6.src.rpm) = 4fa4091e3df6a9aca36fcc4f97bce5ff3204c9e9d59501852cec75627ee55201 SIZE (rpm/x86_64/centos/6.7/pango-1.28.1-10.el6.src.rpm) = 1441149 Index: head/x11-toolkits/linux-c6-pango/pkg-plist.x86_64 =================================================================== --- head/x11-toolkits/linux-c6-pango/pkg-plist.x86_64 (revision 413167) +++ head/x11-toolkits/linux-c6-pango/pkg-plist.x86_64 (revision 413168) @@ -1,36 +1,57 @@ -@comment file listing etc/pango/pangox.aliases +usr/bin/pango-querymodules-32 usr/bin/pango-querymodules-64 usr/bin/pango-view +usr/lib/libpango-1.0.so.0 +usr/lib/libpango-1.0.so.0.2800.1 +usr/lib/libpangocairo-1.0.so.0 +usr/lib/libpangocairo-1.0.so.0.2800.1 +usr/lib/libpangoft2-1.0.so.0 +usr/lib/libpangoft2-1.0.so.0.2800.1 +usr/lib/libpangox-1.0.so.0 +usr/lib/libpangox-1.0.so.0.2800.1 +usr/lib/libpangoxft-1.0.so.0 +usr/lib/libpangoxft-1.0.so.0.2800.1 +usr/lib/pango/1.6.0/modules/pango-arabic-fc.so +usr/lib/pango/1.6.0/modules/pango-arabic-lang.so +usr/lib/pango/1.6.0/modules/pango-basic-x.so +usr/lib/pango/1.6.0/modules/pango-hangul-fc.so +usr/lib/pango/1.6.0/modules/pango-hebrew-fc.so +usr/lib/pango/1.6.0/modules/pango-indic-fc.so +usr/lib/pango/1.6.0/modules/pango-indic-lang.so +usr/lib/pango/1.6.0/modules/pango-khmer-fc.so +usr/lib/pango/1.6.0/modules/pango-syriac-fc.so +usr/lib/pango/1.6.0/modules/pango-thai-fc.so +usr/lib/pango/1.6.0/modules/pango-thai-lang.so +usr/lib/pango/1.6.0/modules/pango-tibetan-fc.so usr/lib64/libpango-1.0.so.0 usr/lib64/libpango-1.0.so.0.2800.1 usr/lib64/libpangocairo-1.0.so.0 usr/lib64/libpangocairo-1.0.so.0.2800.1 usr/lib64/libpangoft2-1.0.so.0 usr/lib64/libpangoft2-1.0.so.0.2800.1 usr/lib64/libpangox-1.0.so.0 usr/lib64/libpangox-1.0.so.0.2800.1 usr/lib64/libpangoxft-1.0.so.0 usr/lib64/libpangoxft-1.0.so.0.2800.1 usr/lib64/pango/1.6.0/modules/pango-arabic-fc.so usr/lib64/pango/1.6.0/modules/pango-arabic-lang.so usr/lib64/pango/1.6.0/modules/pango-basic-x.so usr/lib64/pango/1.6.0/modules/pango-hangul-fc.so usr/lib64/pango/1.6.0/modules/pango-hebrew-fc.so usr/lib64/pango/1.6.0/modules/pango-indic-fc.so usr/lib64/pango/1.6.0/modules/pango-indic-lang.so usr/lib64/pango/1.6.0/modules/pango-khmer-fc.so usr/lib64/pango/1.6.0/modules/pango-syriac-fc.so usr/lib64/pango/1.6.0/modules/pango-thai-fc.so usr/lib64/pango/1.6.0/modules/pango-thai-lang.so usr/lib64/pango/1.6.0/modules/pango-tibetan-fc.so usr/share/doc/pango-1.28.1/AUTHORS usr/share/doc/pango-1.28.1/COPYING usr/share/doc/pango-1.28.1/HELLO.txt usr/share/doc/pango-1.28.1/NEWS usr/share/doc/pango-1.28.1/README usr/share/man/man1/pango-querymodules.1.gz usr/share/man/man1/pango-view.1.gz -@comment deal with empty directories created by the port -@exec /bin/mkdir -p %D/etc/pango/x86_64-redhat-linux-gnu +@dir etc/pango/i386-redhat-linux-gnu @dir etc/pango/x86_64-redhat-linux-gnu Index: head/x11-toolkits/linux-c6-qt47-x11/Makefile =================================================================== --- head/x11-toolkits/linux-c6-qt47-x11/Makefile (revision 413167) +++ head/x11-toolkits/linux-c6-qt47-x11/Makefile (revision 413168) @@ -1,35 +1,37 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= qt47-x11 PORTVERSION= 4.7.2 PORTREVISION= 1 CATEGORIES= x11-toolkits linux -MASTER_SITES= https://www.mirrorservice.org/sites/dl.atrpms.net/el6-${LINUX_REPO_ARCH}/atrpms/testing/ LOCAL/xmj +MASTER_SITES= https://www.mirrorservice.org/sites/dl.atrpms.net/el6-x86_64/atrpms/testing/\ + https://www.mirrorservice.org/sites/dl.atrpms.net/el6-i386/atrpms/testing/ \ + LOCAL/xmj DIST_SUBDIR= rpm/${LINUX_RPM_ARCH}/atrpms/6 MAINTAINER= emulation@FreeBSD.org COMMENT= RPM of QT4 (Linux CentOS 6) ONLY_FOR_ARCHS= i386 amd64 SRC_DISTFILES:= # unretrievable. USE_LINUX= c6 USE_LDCONFIG= yes OPTIONS_DEFINE= NVIDIA_GL NVIDIA_GL_RUN_DEPENDS= ${LINUXBASE}/usr/lib/libGL.so.1:x11/nvidia-driver \ linux-c6-libGLU>0:graphics/linux-c6-libGLU NVIDIA_GL_USE_OFF= linux_apps=dri -USE_LINUX_APPS= fontconfig png xorglibs png alsalib jpeg tiff qt47 +USE_LINUX_APPS= fontconfig png xorglibs png alsalib jpeg tiff qt47 openssl USE_LINUX_RPM= yes RPMVERSION= 1_18.el6 DESCR= ${.CURDIR}/../../devel/qt4/pkg-descr post-patch: ${RM} -f ${WRKSRC}/usr/share/qt47/translations/qt_help_*.qm .include Index: head/x11-toolkits/linux-c6-qt47-x11/distinfo.x86_64 =================================================================== --- head/x11-toolkits/linux-c6-qt47-x11/distinfo.x86_64 (revision 413167) +++ head/x11-toolkits/linux-c6-qt47-x11/distinfo.x86_64 (revision 413168) @@ -1,2 +1,4 @@ SHA256 (rpm/x86_64/atrpms/6/qt47-x11-4.7.2-1_18.el6.x86_64.rpm) = c74163d34d320c559129b95cb2a747c7312547697beb0d45ed0f54a0d542ebc9 SIZE (rpm/x86_64/atrpms/6/qt47-x11-4.7.2-1_18.el6.x86_64.rpm) = 12674320 +SHA256 (rpm/x86_64/atrpms/6/qt47-x11-4.7.2-1_18.el6.i686.rpm) = ca8b75fd11e75f1d70545f04633e313a168ef5fe4e194bff58bef7455aae6414 +SIZE (rpm/x86_64/atrpms/6/qt47-x11-4.7.2-1_18.el6.i686.rpm) = 12853688 Property changes on: head/x11-toolkits/linux-c6-qt47-x11/distinfo.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/x11-toolkits/linux-c6-qt47-x11/pkg-plist.x86_64 =================================================================== --- head/x11-toolkits/linux-c6-qt47-x11/pkg-plist.x86_64 (revision 413167) +++ head/x11-toolkits/linux-c6-qt47-x11/pkg-plist.x86_64 (revision 413168) @@ -1,104 +1,181 @@ etc/rpm/macros.qt47 usr/bin/qdbusviewer usr/bin/qmlviewer +usr/lib/qt47/bin/qdbusviewer +usr/lib/qt47/bin/qmlviewer +usr/lib/qt47/bin/qtconfig +usr/lib/qt47/bin/qtconfig-qt47 +usr/lib/qt47/imports/Qt/labs/folderlistmodel/libqmlfolderlistmodelplugin.so +usr/lib/qt47/imports/Qt/labs/folderlistmodel/qmldir +usr/lib/qt47/imports/Qt/labs/gestures/libqmlgesturesplugin.so +usr/lib/qt47/imports/Qt/labs/gestures/qmldir +usr/lib/qt47/imports/Qt/labs/particles/libqmlparticlesplugin.so +usr/lib/qt47/imports/Qt/labs/particles/qmldir +usr/lib/qt47/libQt3Support.so.4 +usr/lib/qt47/libQt3Support.so.4.7 +usr/lib/qt47/libQt3Support.so.4.7.2 +usr/lib/qt47/libQtCLucene.so.4 +usr/lib/qt47/libQtCLucene.so.4.7 +usr/lib/qt47/libQtCLucene.so.4.7.2 +usr/lib/qt47/libQtDeclarative.so.4 +usr/lib/qt47/libQtDeclarative.so.4.7 +usr/lib/qt47/libQtDeclarative.so.4.7.2 +usr/lib/qt47/libQtDesigner.so.4 +usr/lib/qt47/libQtDesigner.so.4.7 +usr/lib/qt47/libQtDesigner.so.4.7.2 +usr/lib/qt47/libQtDesignerComponents.so.4 +usr/lib/qt47/libQtDesignerComponents.so.4.7 +usr/lib/qt47/libQtDesignerComponents.so.4.7.2 +usr/lib/qt47/libQtGui.so.4 +usr/lib/qt47/libQtGui.so.4.7 +usr/lib/qt47/libQtGui.so.4.7.2 +usr/lib/qt47/libQtHelp.so.4 +usr/lib/qt47/libQtHelp.so.4.7 +usr/lib/qt47/libQtHelp.so.4.7.2 +usr/lib/qt47/libQtMultimedia.so.4 +usr/lib/qt47/libQtMultimedia.so.4.7 +usr/lib/qt47/libQtMultimedia.so.4.7.2 +usr/lib/qt47/libQtOpenGL.so.4 +usr/lib/qt47/libQtOpenGL.so.4.7 +usr/lib/qt47/libQtOpenGL.so.4.7.2 +usr/lib/qt47/libQtScriptTools.so.4 +usr/lib/qt47/libQtScriptTools.so.4.7 +usr/lib/qt47/libQtScriptTools.so.4.7.2 +usr/lib/qt47/libQtSvg.so.4 +usr/lib/qt47/libQtSvg.so.4.7 +usr/lib/qt47/libQtSvg.so.4.7.2 +usr/lib/qt47/libphonon.so.4 +usr/lib/qt47/libphonon.so.4.4 +usr/lib/qt47/libphonon.so.4.4.0 +usr/lib/qt47/plugins/accessible/libqtaccessiblecompatwidgets.so +usr/lib/qt47/plugins/accessible/libqtaccessiblewidgets.so +usr/lib/qt47/plugins/bearer/libqconnmanbearer.so +usr/lib/qt47/plugins/bearer/libqgenericbearer.so +usr/lib/qt47/plugins/bearer/libqnmbearer.so +usr/lib/qt47/plugins/codecs/libqcncodecs.so +usr/lib/qt47/plugins/codecs/libqjpcodecs.so +usr/lib/qt47/plugins/codecs/libqkrcodecs.so +usr/lib/qt47/plugins/codecs/libqtwcodecs.so +usr/lib/qt47/plugins/designer/libarthurplugin.so +usr/lib/qt47/plugins/designer/libcontainerextension.so +usr/lib/qt47/plugins/designer/libcustomwidgetplugin.so +usr/lib/qt47/plugins/designer/libqdeclarativeview.so +usr/lib/qt47/plugins/designer/libqt3supportwidgets.so +usr/lib/qt47/plugins/designer/libtaskmenuextension.so +usr/lib/qt47/plugins/designer/libworldtimeclockplugin.so +usr/lib/qt47/plugins/graphicssystems/libqglgraphicssystem.so +usr/lib/qt47/plugins/graphicssystems/libqtracegraphicssystem.so +usr/lib/qt47/plugins/iconengines/libqsvgicon.so +usr/lib/qt47/plugins/imageformats/libqgif.so +usr/lib/qt47/plugins/imageformats/libqico.so +usr/lib/qt47/plugins/imageformats/libqjpeg.so +usr/lib/qt47/plugins/imageformats/libqmng.so +usr/lib/qt47/plugins/imageformats/libqsvg.so +usr/lib/qt47/plugins/imageformats/libqtiff.so +usr/lib/qt47/plugins/inputmethods/libqimsw-multi.so +usr/lib/qt47/plugins/qmltooling/libtcpserver.so +usr/lib/qt47/plugins/script/libqtscriptdbus.so usr/lib64/qt47/bin/qdbusviewer usr/lib64/qt47/bin/qmlviewer usr/lib64/qt47/bin/qtconfig usr/lib64/qt47/bin/qtconfig-qt47 usr/lib64/qt47/imports/Qt/labs/folderlistmodel/libqmlfolderlistmodelplugin.so usr/lib64/qt47/imports/Qt/labs/folderlistmodel/qmldir usr/lib64/qt47/imports/Qt/labs/gestures/libqmlgesturesplugin.so usr/lib64/qt47/imports/Qt/labs/gestures/qmldir usr/lib64/qt47/imports/Qt/labs/particles/libqmlparticlesplugin.so usr/lib64/qt47/imports/Qt/labs/particles/qmldir usr/lib64/qt47/libQt3Support.so.4 usr/lib64/qt47/libQt3Support.so.4.7 usr/lib64/qt47/libQt3Support.so.4.7.2 usr/lib64/qt47/libQtCLucene.so.4 usr/lib64/qt47/libQtCLucene.so.4.7 usr/lib64/qt47/libQtCLucene.so.4.7.2 usr/lib64/qt47/libQtDeclarative.so.4 usr/lib64/qt47/libQtDeclarative.so.4.7 usr/lib64/qt47/libQtDeclarative.so.4.7.2 usr/lib64/qt47/libQtDesigner.so.4 usr/lib64/qt47/libQtDesigner.so.4.7 usr/lib64/qt47/libQtDesigner.so.4.7.2 usr/lib64/qt47/libQtDesignerComponents.so.4 usr/lib64/qt47/libQtDesignerComponents.so.4.7 usr/lib64/qt47/libQtDesignerComponents.so.4.7.2 usr/lib64/qt47/libQtGui.so.4 usr/lib64/qt47/libQtGui.so.4.7 usr/lib64/qt47/libQtGui.so.4.7.2 usr/lib64/qt47/libQtHelp.so.4 usr/lib64/qt47/libQtHelp.so.4.7 usr/lib64/qt47/libQtHelp.so.4.7.2 usr/lib64/qt47/libQtMultimedia.so.4 usr/lib64/qt47/libQtMultimedia.so.4.7 usr/lib64/qt47/libQtMultimedia.so.4.7.2 usr/lib64/qt47/libQtOpenGL.so.4 usr/lib64/qt47/libQtOpenGL.so.4.7 usr/lib64/qt47/libQtOpenGL.so.4.7.2 usr/lib64/qt47/libQtScriptTools.so.4 usr/lib64/qt47/libQtScriptTools.so.4.7 usr/lib64/qt47/libQtScriptTools.so.4.7.2 usr/lib64/qt47/libQtSvg.so.4 usr/lib64/qt47/libQtSvg.so.4.7 usr/lib64/qt47/libQtSvg.so.4.7.2 usr/lib64/qt47/libphonon.so.4 usr/lib64/qt47/libphonon.so.4.4 usr/lib64/qt47/libphonon.so.4.4.0 usr/lib64/qt47/plugins/accessible/libqtaccessiblecompatwidgets.so usr/lib64/qt47/plugins/accessible/libqtaccessiblewidgets.so usr/lib64/qt47/plugins/bearer/libqconnmanbearer.so usr/lib64/qt47/plugins/bearer/libqgenericbearer.so usr/lib64/qt47/plugins/bearer/libqnmbearer.so usr/lib64/qt47/plugins/codecs/libqcncodecs.so usr/lib64/qt47/plugins/codecs/libqjpcodecs.so usr/lib64/qt47/plugins/codecs/libqkrcodecs.so usr/lib64/qt47/plugins/codecs/libqtwcodecs.so usr/lib64/qt47/plugins/designer/libarthurplugin.so usr/lib64/qt47/plugins/designer/libcontainerextension.so usr/lib64/qt47/plugins/designer/libcustomwidgetplugin.so usr/lib64/qt47/plugins/designer/libqdeclarativeview.so usr/lib64/qt47/plugins/designer/libqt3supportwidgets.so usr/lib64/qt47/plugins/designer/libtaskmenuextension.so usr/lib64/qt47/plugins/designer/libworldtimeclockplugin.so usr/lib64/qt47/plugins/graphicssystems/libqglgraphicssystem.so usr/lib64/qt47/plugins/graphicssystems/libqtracegraphicssystem.so usr/lib64/qt47/plugins/iconengines/libqsvgicon.so usr/lib64/qt47/plugins/imageformats/libqgif.so usr/lib64/qt47/plugins/imageformats/libqico.so usr/lib64/qt47/plugins/imageformats/libqjpeg.so usr/lib64/qt47/plugins/imageformats/libqmng.so usr/lib64/qt47/plugins/imageformats/libqsvg.so usr/lib64/qt47/plugins/imageformats/libqtiff.so usr/lib64/qt47/plugins/inputmethods/libqimsw-multi.so usr/lib64/qt47/plugins/qmltooling/libtcpserver.so usr/lib64/qt47/plugins/script/libqtscriptdbus.so usr/share/dbus-1/interfaces/org.kde.Phonon.AudioOutput.xml usr/share/icons/hicolor/128x128/apps/qt47-logo.png usr/share/icons/hicolor/48x48/apps/qt47-logo.png usr/share/qt47/translations/assistant_cs.qm usr/share/qt47/translations/assistant_da.qm usr/share/qt47/translations/assistant_de.qm usr/share/qt47/translations/assistant_fr.qm usr/share/qt47/translations/assistant_hu.qm usr/share/qt47/translations/assistant_ja.qm usr/share/qt47/translations/assistant_pl.qm usr/share/qt47/translations/assistant_ru.qm usr/share/qt47/translations/assistant_sl.qm usr/share/qt47/translations/assistant_uk.qm usr/share/qt47/translations/assistant_zh_CN.qm usr/share/qt47/translations/assistant_zh_TW.qm usr/share/qt47/translations/qtconfig_hu.qm usr/share/qt47/translations/qtconfig_ja.qm usr/share/qt47/translations/qtconfig_pl.qm usr/share/qt47/translations/qtconfig_ru.qm usr/share/qt47/translations/qtconfig_sl.qm usr/share/qt47/translations/qtconfig_uk.qm usr/share/qt47/translations/qtconfig_zh_CN.qm usr/share/qt47/translations/qtconfig_zh_TW.qm +@dir usr/lib/qt47/plugins/gui_platform +@dir usr/lib/qt47/plugins/phonon_backend +@dir usr/lib/qt47/plugins/styles @dir usr/lib64/qt47/plugins/gui_platform @dir usr/lib64/qt47/plugins/phonon_backend @dir usr/lib64/qt47/plugins/styles @dir usr/share/kde4/services/phononbackends Property changes on: head/x11-toolkits/linux-c6-qt47-x11/pkg-plist.x86_64 ___________________________________________________________________ Modified: fbsd:nokeywords ## -1,3 +1 ## -yes -\ No newline at end of property -\ No newline at end of property \ No newline at end of property +yes \ No newline at end of property Index: head/x11-toolkits/linux-c6-tk85/distinfo.x86_64 =================================================================== --- head/x11-toolkits/linux-c6-tk85/distinfo.x86_64 (revision 413167) +++ head/x11-toolkits/linux-c6-tk85/distinfo.x86_64 (revision 413168) @@ -1,4 +1,6 @@ SHA256 (rpm/x86_64/centos/6.7/tk-8.5.7-5.el6.x86_64.rpm) = a7cf03a95c3b91f74a91c340b684261184cecac34b6880733188cfd4072071b4 SIZE (rpm/x86_64/centos/6.7/tk-8.5.7-5.el6.x86_64.rpm) = 1469560 +SHA256 (rpm/x86_64/centos/6.7/tk-8.5.7-5.el6.i686.rpm) = fc4c9a0a4740526e8a504c9e173a554785ae400a09394d745d50a53a75e9b16b +SIZE (rpm/x86_64/centos/6.7/tk-8.5.7-5.el6.i686.rpm) = 1470636 SHA256 (rpm/x86_64/centos/6.7/tk-8.5.7-5.el6.src.rpm) = 4e0c8c5ffded8eebde2e150563ff750844465aee87a0482edc5f2dbb8dabb167 SIZE (rpm/x86_64/centos/6.7/tk-8.5.7-5.el6.src.rpm) = 3803543 Index: head/x11-toolkits/linux-c6-tk85/pkg-plist.x86_64 =================================================================== --- head/x11-toolkits/linux-c6-tk85/pkg-plist.x86_64 (revision 413167) +++ head/x11-toolkits/linux-c6-tk85/pkg-plist.x86_64 (revision 413168) @@ -1,260 +1,262 @@ usr/bin/wish usr/bin/wish8.5 +usr/lib/libtk8.5.so +usr/lib/tk8.5/pkgIndex.tcl usr/lib64/libtk8.5.so usr/lib64/tk8.5/pkgIndex.tcl usr/share/doc/tk-8.5.7/README usr/share/doc/tk-8.5.7/changes usr/share/doc/tk-8.5.7/license.terms usr/share/man/man1/wish.1.gz usr/share/man/mann/bell.n.gz usr/share/man/mann/bind.n.gz usr/share/man/mann/bindtags.n.gz usr/share/man/mann/bitmap.n.gz usr/share/man/mann/button.n.gz usr/share/man/mann/canvas.n.gz usr/share/man/mann/checkbutton.n.gz usr/share/man/mann/clipboard.n.gz usr/share/man/mann/colors.n.gz usr/share/man/mann/console.n.gz usr/share/man/mann/cursors.n.gz usr/share/man/mann/destroy.n.gz usr/share/man/mann/entry.n.gz usr/share/man/mann/event.n.gz usr/share/man/mann/focus.n.gz usr/share/man/mann/font.n.gz usr/share/man/mann/frame.n.gz usr/share/man/mann/grab.n.gz usr/share/man/mann/grid.n.gz usr/share/man/mann/image.n.gz usr/share/man/mann/keysyms.n.gz usr/share/man/mann/label.n.gz usr/share/man/mann/labelframe.n.gz usr/share/man/mann/listbox.n.gz usr/share/man/mann/loadTk.n.gz usr/share/man/mann/lower.n.gz usr/share/man/mann/menu.n.gz usr/share/man/mann/menubutton.n.gz usr/share/man/mann/message.n.gz usr/share/man/mann/option.n.gz usr/share/man/mann/options.n.gz usr/share/man/mann/pack-old.n.gz usr/share/man/mann/pack.n.gz usr/share/man/mann/panedwindow.n.gz usr/share/man/mann/photo.n.gz usr/share/man/mann/place.n.gz usr/share/man/mann/radiobutton.n.gz usr/share/man/mann/raise.n.gz usr/share/man/mann/scale.n.gz usr/share/man/mann/scrollbar.n.gz usr/share/man/mann/selection.n.gz usr/share/man/mann/send.n.gz usr/share/man/mann/spinbox.n.gz usr/share/man/mann/text.n.gz usr/share/man/mann/tk.n.gz usr/share/man/mann/tk_bindForTraversal.n.gz usr/share/man/mann/tk_bisque.n.gz usr/share/man/mann/tk_chooseColor.n.gz usr/share/man/mann/tk_chooseDirectory.n.gz usr/share/man/mann/tk_dialog.n.gz usr/share/man/mann/tk_focusFollowsMouse.n.gz usr/share/man/mann/tk_focusNext.n.gz usr/share/man/mann/tk_focusPrev.n.gz usr/share/man/mann/tk_getOpenFile.n.gz usr/share/man/mann/tk_getSaveFile.n.gz usr/share/man/mann/tk_menuBar.n.gz usr/share/man/mann/tk_menuSetFocus.n.gz usr/share/man/mann/tk_messageBox.n.gz usr/share/man/mann/tk_optionMenu.n.gz usr/share/man/mann/tk_popup.n.gz usr/share/man/mann/tk_setPalette.n.gz usr/share/man/mann/tk_textCopy.n.gz usr/share/man/mann/tk_textCut.n.gz usr/share/man/mann/tk_textPaste.n.gz usr/share/man/mann/tkerror.n.gz usr/share/man/mann/tkvars.n.gz usr/share/man/mann/tkwait.n.gz usr/share/man/mann/toplevel.n.gz usr/share/man/mann/ttk_button.n.gz usr/share/man/mann/ttk_checkbutton.n.gz usr/share/man/mann/ttk_combobox.n.gz usr/share/man/mann/ttk_entry.n.gz usr/share/man/mann/ttk_frame.n.gz usr/share/man/mann/ttk_image.n.gz usr/share/man/mann/ttk_intro.n.gz usr/share/man/mann/ttk_label.n.gz usr/share/man/mann/ttk_labelframe.n.gz usr/share/man/mann/ttk_menubutton.n.gz usr/share/man/mann/ttk_notebook.n.gz usr/share/man/mann/ttk_panedwindow.n.gz usr/share/man/mann/ttk_progressbar.n.gz usr/share/man/mann/ttk_radiobutton.n.gz usr/share/man/mann/ttk_scale.n.gz usr/share/man/mann/ttk_scrollbar.n.gz usr/share/man/mann/ttk_separator.n.gz usr/share/man/mann/ttk_sizegrip.n.gz usr/share/man/mann/ttk_style.n.gz usr/share/man/mann/ttk_treeview.n.gz usr/share/man/mann/ttk_widget.n.gz usr/share/man/mann/winfo.n.gz usr/share/man/mann/wm.n.gz usr/%%DATADIR%%8.5/bgerror.tcl usr/%%DATADIR%%8.5/button.tcl usr/%%DATADIR%%8.5/choosedir.tcl usr/%%DATADIR%%8.5/clrpick.tcl usr/%%DATADIR%%8.5/comdlg.tcl usr/%%DATADIR%%8.5/console.tcl usr/%%DATADIR%%8.5/demos/README usr/%%DATADIR%%8.5/demos/anilabel.tcl usr/%%DATADIR%%8.5/demos/aniwave.tcl usr/%%DATADIR%%8.5/demos/arrow.tcl usr/%%DATADIR%%8.5/demos/bind.tcl usr/%%DATADIR%%8.5/demos/bitmap.tcl usr/%%DATADIR%%8.5/demos/browse usr/%%DATADIR%%8.5/demos/button.tcl usr/%%DATADIR%%8.5/demos/check.tcl usr/%%DATADIR%%8.5/demos/clrpick.tcl usr/%%DATADIR%%8.5/demos/colors.tcl usr/%%DATADIR%%8.5/demos/combo.tcl usr/%%DATADIR%%8.5/demos/cscroll.tcl usr/%%DATADIR%%8.5/demos/ctext.tcl usr/%%DATADIR%%8.5/demos/dialog1.tcl usr/%%DATADIR%%8.5/demos/dialog2.tcl usr/%%DATADIR%%8.5/demos/en.msg usr/%%DATADIR%%8.5/demos/entry1.tcl usr/%%DATADIR%%8.5/demos/entry2.tcl usr/%%DATADIR%%8.5/demos/entry3.tcl usr/%%DATADIR%%8.5/demos/filebox.tcl usr/%%DATADIR%%8.5/demos/floor.tcl usr/%%DATADIR%%8.5/demos/form.tcl usr/%%DATADIR%%8.5/demos/goldberg.tcl usr/%%DATADIR%%8.5/demos/hello usr/%%DATADIR%%8.5/demos/hscale.tcl usr/%%DATADIR%%8.5/demos/icon.tcl usr/%%DATADIR%%8.5/demos/image1.tcl usr/%%DATADIR%%8.5/demos/image2.tcl usr/%%DATADIR%%8.5/demos/images/earth.gif usr/%%DATADIR%%8.5/demos/images/earthris.gif usr/%%DATADIR%%8.5/demos/images/face.xbm usr/%%DATADIR%%8.5/demos/images/flagdown.xbm usr/%%DATADIR%%8.5/demos/images/flagup.xbm usr/%%DATADIR%%8.5/demos/images/gray25.xbm usr/%%DATADIR%%8.5/demos/images/letters.xbm usr/%%DATADIR%%8.5/demos/images/noletter.xbm usr/%%DATADIR%%8.5/demos/images/pattern.xbm usr/%%DATADIR%%8.5/demos/images/tcllogo.gif usr/%%DATADIR%%8.5/demos/images/teapot.ppm usr/%%DATADIR%%8.5/demos/items.tcl usr/%%DATADIR%%8.5/demos/ixset usr/%%DATADIR%%8.5/demos/knightstour.tcl usr/%%DATADIR%%8.5/demos/label.tcl usr/%%DATADIR%%8.5/demos/labelframe.tcl usr/%%DATADIR%%8.5/demos/license.terms usr/%%DATADIR%%8.5/demos/mclist.tcl usr/%%DATADIR%%8.5/demos/menu.tcl usr/%%DATADIR%%8.5/demos/menubu.tcl usr/%%DATADIR%%8.5/demos/msgbox.tcl usr/%%DATADIR%%8.5/demos/nl.msg usr/%%DATADIR%%8.5/demos/paned1.tcl usr/%%DATADIR%%8.5/demos/paned2.tcl usr/%%DATADIR%%8.5/demos/pendulum.tcl usr/%%DATADIR%%8.5/demos/plot.tcl usr/%%DATADIR%%8.5/demos/puzzle.tcl usr/%%DATADIR%%8.5/demos/radio.tcl usr/%%DATADIR%%8.5/demos/rmt usr/%%DATADIR%%8.5/demos/rolodex usr/%%DATADIR%%8.5/demos/ruler.tcl usr/%%DATADIR%%8.5/demos/sayings.tcl usr/%%DATADIR%%8.5/demos/search.tcl usr/%%DATADIR%%8.5/demos/spin.tcl usr/%%DATADIR%%8.5/demos/square usr/%%DATADIR%%8.5/demos/states.tcl usr/%%DATADIR%%8.5/demos/style.tcl usr/%%DATADIR%%8.5/demos/tclIndex usr/%%DATADIR%%8.5/demos/tcolor usr/%%DATADIR%%8.5/demos/text.tcl usr/%%DATADIR%%8.5/demos/textpeer.tcl usr/%%DATADIR%%8.5/demos/timer usr/%%DATADIR%%8.5/demos/toolbar.tcl usr/%%DATADIR%%8.5/demos/tree.tcl usr/%%DATADIR%%8.5/demos/ttkbut.tcl usr/%%DATADIR%%8.5/demos/ttkmenu.tcl usr/%%DATADIR%%8.5/demos/ttknote.tcl usr/%%DATADIR%%8.5/demos/ttkpane.tcl usr/%%DATADIR%%8.5/demos/ttkprogress.tcl usr/%%DATADIR%%8.5/demos/twind.tcl usr/%%DATADIR%%8.5/demos/unicodeout.tcl usr/%%DATADIR%%8.5/demos/vscale.tcl usr/%%DATADIR%%8.5/demos/widget usr/%%DATADIR%%8.5/dialog.tcl usr/%%DATADIR%%8.5/entry.tcl usr/%%DATADIR%%8.5/focus.tcl usr/%%DATADIR%%8.5/images/README usr/%%DATADIR%%8.5/images/logo.eps usr/%%DATADIR%%8.5/images/logo100.gif usr/%%DATADIR%%8.5/images/logo64.gif usr/%%DATADIR%%8.5/images/logoLarge.gif usr/%%DATADIR%%8.5/images/logoMed.gif usr/%%DATADIR%%8.5/images/pwrdLogo.eps usr/%%DATADIR%%8.5/images/pwrdLogo100.gif usr/%%DATADIR%%8.5/images/pwrdLogo150.gif usr/%%DATADIR%%8.5/images/pwrdLogo175.gif usr/%%DATADIR%%8.5/images/pwrdLogo200.gif usr/%%DATADIR%%8.5/images/pwrdLogo75.gif usr/%%DATADIR%%8.5/images/tai-ku.gif usr/%%DATADIR%%8.5/listbox.tcl usr/%%DATADIR%%8.5/menu.tcl usr/%%DATADIR%%8.5/mkpsenc.tcl usr/%%DATADIR%%8.5/msgbox.tcl usr/%%DATADIR%%8.5/msgs/cs.msg usr/%%DATADIR%%8.5/msgs/da.msg usr/%%DATADIR%%8.5/msgs/de.msg usr/%%DATADIR%%8.5/msgs/el.msg usr/%%DATADIR%%8.5/msgs/en.msg usr/%%DATADIR%%8.5/msgs/en_gb.msg usr/%%DATADIR%%8.5/msgs/eo.msg usr/%%DATADIR%%8.5/msgs/es.msg usr/%%DATADIR%%8.5/msgs/fr.msg usr/%%DATADIR%%8.5/msgs/hu.msg usr/%%DATADIR%%8.5/msgs/it.msg usr/%%DATADIR%%8.5/msgs/nl.msg usr/%%DATADIR%%8.5/msgs/pl.msg usr/%%DATADIR%%8.5/msgs/pt.msg usr/%%DATADIR%%8.5/msgs/ru.msg usr/%%DATADIR%%8.5/msgs/sv.msg usr/%%DATADIR%%8.5/obsolete.tcl usr/%%DATADIR%%8.5/optMenu.tcl usr/%%DATADIR%%8.5/palette.tcl usr/%%DATADIR%%8.5/panedwindow.tcl usr/%%DATADIR%%8.5/safetk.tcl usr/%%DATADIR%%8.5/scale.tcl usr/%%DATADIR%%8.5/scrlbar.tcl usr/%%DATADIR%%8.5/spinbox.tcl usr/%%DATADIR%%8.5/tclIndex usr/%%DATADIR%%8.5/tearoff.tcl usr/%%DATADIR%%8.5/text.tcl usr/%%DATADIR%%8.5/tk.tcl usr/%%DATADIR%%8.5/tkfbox.tcl usr/%%DATADIR%%8.5/ttk/altTheme.tcl usr/%%DATADIR%%8.5/ttk/aquaTheme.tcl usr/%%DATADIR%%8.5/ttk/button.tcl usr/%%DATADIR%%8.5/ttk/clamTheme.tcl usr/%%DATADIR%%8.5/ttk/classicTheme.tcl usr/%%DATADIR%%8.5/ttk/combobox.tcl usr/%%DATADIR%%8.5/ttk/cursors.tcl usr/%%DATADIR%%8.5/ttk/defaults.tcl usr/%%DATADIR%%8.5/ttk/entry.tcl usr/%%DATADIR%%8.5/ttk/fonts.tcl usr/%%DATADIR%%8.5/ttk/menubutton.tcl usr/%%DATADIR%%8.5/ttk/notebook.tcl usr/%%DATADIR%%8.5/ttk/panedwindow.tcl usr/%%DATADIR%%8.5/ttk/progress.tcl usr/%%DATADIR%%8.5/ttk/scale.tcl usr/%%DATADIR%%8.5/ttk/scrollbar.tcl usr/%%DATADIR%%8.5/ttk/sizegrip.tcl usr/%%DATADIR%%8.5/ttk/treeview.tcl usr/%%DATADIR%%8.5/ttk/ttk.tcl usr/%%DATADIR%%8.5/ttk/utils.tcl usr/%%DATADIR%%8.5/ttk/winTheme.tcl usr/%%DATADIR%%8.5/ttk/xpTheme.tcl usr/%%DATADIR%%8.5/unsupported.tcl usr/%%DATADIR%%8.5/xmfbox.tcl