---
name: cityhash
version: 1.1.0
origin: devel/cityhash
comment: Family of hash functions
arch: freebsd:9:x86:64
www: http://code.google.com/p/cityhash/
maintainer: g.veniamin@googlemail.com
prefix: /usr/local
licenselogic: single
licenses: [MIT]
flatsize: 39032
desc: |
  CityHash provides hash functions for strings.  The functions mix the
  input bits thoroughly but are not suitable for cryptography.  See
  "Hash Quality," below, for details on how CityHash was tested and so on.

  Functions by CityHash:

  - CityHash32() returns a 32-bit hash.
  - CityHash64() and similar return a 64-bit hash.
  - CityHash128() and similar return a 128-bit hash and are tuned for
  strings of at least a few hundred bytes.  Depending on your compiler
  and hardware, it's likely faster than CityHash64() on sufficiently long
  strings.  It's slower than necessary on shorter strings, but we expect
  that case to be relatively unimportant.
  - CityHashCrc128() and similar are variants of CityHash128() that depend
  on _mm_crc32_u64(), an intrinsic that compiles to a CRC32 instruction
  on some CPUs.  However, none of the functions we provide are CRCs.
  - CityHashCrc256() is a variant of CityHashCrc128() that also depends
  on _mm_crc32_u64().  It returns a 256-bit hash.

  All members of the CityHash family were designed with heavy reliance
  on previous work by Austin Appleby, Bob Jenkins, and others.
  For example, CityHash32 has many similarities with Murmur3a.

  WWW: http://code.google.com/p/cityhash/
categories: [devel]
files:
  /usr/local/include/city.h: 0fc2815b5ca64d6f42b214c604006c6dafc999d71dd7dae520f25844567e9fa5
  /usr/local/lib/libcityhash.a: 965574151fc1fc285eb9cfe107c8ddd22389b0e30bfc1246b2ffeb6e3ed4d811
  /usr/local/lib/libcityhash.la: a95f0ef3b7ecae0fda57470ec77dfd2fdec765d2db4b7dbece616e98598485f7
  /usr/local/lib/libcityhash.so: '-'
  /usr/local/lib/libcityhash.so.0: 2255cd727e2e0b8230eda51c3c2b57810317f0d52329673d0ed218ea9ee5e7a4
  /usr/local/share/doc/cityhash/COPYING: 3ed00dd93c75655599456c83cba2f69c6824fd53f24fc24206ba27b65057709d
  /usr/local/share/doc/cityhash/NEWS: 6e96e20c924c302db3209163da0a3f393588fce1622245c477c82527da822c10
  /usr/local/share/doc/cityhash/README: 2f8fbccbf4d0435c53f9072c3a0adeaa263f8fbf07d0a39d3b0945876a246cc0
  /usr/local/share/licenses/cityhash-1.1.0/LICENSE: 8a9617637463b68fc0584861100926c56e2af396c013024314c285549b9c9642
  /usr/local/share/licenses/cityhash-1.1.0/MIT: 3507caa9b70264bdbe49eff56f570238ee9294ead5d32982e642c249e3053bd4
  /usr/local/share/licenses/cityhash-1.1.0/catalog.mk: d21f88af6ef58d0179b5e68371c49f61a05b9cedd6776e083f5cbe6f0e95b994
directories:
  /usr/local/share/licenses/cityhash-1.1.0/: n
  /usr/local/share/licenses/: y
  /usr/local/share/doc/cityhash/: n
scripts:
  post-install: |
    /sbin/ldconfig -m /usr/local/lib
    cd /usr/local
  pre-deinstall: |
    /sbin/ldconfig -R
    cd /usr/local
  post-deinstall: |
    cd /usr/local
