This is is a set of Python bindings for the scrypt key derivation function. Scrypt is useful when encrypting password as it is possible to specify a minimum amount of time to use when encrypting and decrypting. If, for example, a password takes 0.05 seconds to verify, a user won't notice the slight delay when signing in, but doing a brute force search of several billion passwords will take a considerable amount of time. This is in contrast to more traditional hash functions such as MD5 or the SHA family which can be implemented extremely fast on cheap hardware. WWW: https://pypi.org/project/scrypt/ freebsd-ports' title='freebsd-ports Git repository'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/textproc/p5-Parse-PhoneNumber
15' href='#n15'>1516171819202122232425262728293031323334353637383940414243444546474849505152
Commit message (Expand)AuthorAgeFilesLines
# Created by: Johannes Meixner <johannes@perceivon.net>
# $FreeBSD$

PORTNAME=   devtools
PORTVERSION=    ${LINUX_DIST_VER}
CATEGORIES= devel
BIN_DISTNAMES=  binutils-2.20.51.0.2-5.48.el6 \
        glibc-headers-2.12-1.212.el6 \
        kernel-headers-2.6.32-754.2.1.el6 \
        mpfr-2.4.1-6.el6 \
        cpp-4.4.7-23.el6 \
        gcc-4.4.7-23.el6 \
        gcc-c++-4.4.7-23.el6 \
        gcc-gfortran-4.4.7-23.el6
LIB_DISTNAMES=  binutils-devel-2.20.51.0.2-5.48.el6 \
        glibc-devel-2.12-1.212.el6 \
        libstdc++-devel-4.4.7-23.el6 \
        libgomp-4.4.7-23.el6
SRC_DISTFILES=  binutils-2.20.51.0.2-5.48.el6${SRC_SUFX}:SOURCE \
        glibc-2.12-1.212.el6${SRC_SUFX}:SOURCE \
        kernel-2.6.32-754.2.1.el6${SRC_SUFX}:SOURCE \
        mpfr-2.4.1-6.el6${SRC_SUFX}:SOURCE \
        gcc-4.4.7-23.el6${SRC_SUFX}:SOURCE

MAINTAINER= emulation@FreeBSD.org
COMMENT=    Linux compilers and base libraries (CentOS ${LINUX_DIST_VER})

# LICENSE=  Various GNU

USES=       linux:c6
USE_LDCONFIG=   yes
USE_LINUX=  libgfortran
USE_LINUX_RPM=  yes

OPTIONS_DEFINE= DOCS NLS
OPTIONS_SUB=    yes

.include <bsd.port.pre.mk>

post-install:
.if ${LINUX_ARCH} == x86_64
    ${LN} -sfh ../../../../lib64/libgcc_s.so.1 \
    ${STAGEDIR}${PREFIX}/usr/lib/gcc/x86_64-redhat-linux/4.4.4/libgcc_s.so

    ${LN} -sfh ../../../../libgcc_s.so.1 \
    ${STAGEDIR}${PREFIX}/usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/libgcc_s.so
.else
    ${LN} -sfh ../../../libgcc_s.so.1 \
    ${STAGEDIR}${PREFIX}/usr/lib/gcc/i686-redhat-linux/4.4.4/libgcc_s.so
.endif

.include <bsd.port.post.mk>