Added nss-3.12.4 build template.

--HG--
extra : convert_revision : 1789152125d581ea0c551bdecc7410741f3ad920
This commit is contained in:
Juan RP 2009-10-13 00:56:40 +02:00
parent 488671da11
commit 8263784355
4 changed files with 65 additions and 0 deletions

1
templates/nss-devel Symbolic link
View file

@ -0,0 +1 @@
nss

2
templates/nss/depends Normal file
View file

@ -0,0 +1,2 @@
abi_depends=3.12.4
api_depends=${abi_depends}

View file

@ -0,0 +1,15 @@
# Template file for 'nss-devel'.
#
short_desc="${short_desc} (development files)"
long_desc="${long_desc}
This package contains files for development, headers, static libs, etc."
Add_dependency run nss
do_install()
{
mkdir -p ${DESTDIR}/usr/lib
mv ${SRCPKGDESTDIR}/usr/include ${DESTDIR}/usr
mv ${SRCPKGDESTDIR}/usr/lib/pkgconfig ${DESTDIR}/usr/lib
}

47
templates/nss/template Normal file
View file

@ -0,0 +1,47 @@
# Template file for 'nss'
pkgname=nss
version=3.12.4
distfiles="${MOZILLA_SITE}/security/nss/releases/NSS_3_12_4_RTM/src/${pkgname}-${version}.tar.gz"
build_style=custom-install
short_desc="Mozilla Network Security Services"
maintainer="Juan RP <xtraeme@gmail.com>"
checksum=8202546524c69ce03e1c3ef5e2956b71b8fa0a5bffdf06568597e7c0d1f83bf0
long_desc="
Network Security Services (NSS) is a set of libraries designed to support
cross-platform development of security-enabled server applications.
Applications built with NSS can support SSL v2 and v3, TLS, PKCS \#5,
PKCS \#7, PKCS \#11, PKCS \#12, S/MIME, X.509 v3 certificates, and other
security standards."
subpackages="devel"
Add_dependency run glibc
Add_dependency run zlib
Add_dependency full nspr
Add_dependency full sqlite
do_install()
{
install -d ${DESTDIR}/usr/include/nss ${DESTDIR}/usr/lib/pkgconfig
if [ "$xbps_machine" = "x86_64" ]; then
_use64="USE_64=1"
fi
for dir in coreconf dbm nss; do
make -C mozilla/security/${dir} \
LIBRUNPATH= BUILD_OPT=1 \
NSS_USE_SYSTEM_SQLITE=1 \
NSPR_INCLUDE_DIR=/usr/include/nspr \
NSPR_LIB_DIR=/usr/lib ${_use64} || return 1
done
install -m644 mozilla/dist/public/nss/*.h ${DESTDIR}/usr/include/nss
install -m755 mozilla/dist/*.OBJ/lib/*.so ${DESTDIR}/usr/lib
( echo "Name: NSS"; \
echo "Description: Mozilla Network Security Services"; \
echo "Version: ${version}"; \
echo "Cflags: -I/usr/include/nss"; \
echo "Libs: -L/usr/lib -lnss3 -lsmime3 -lssl3 -lsoftokn3 -lpthread -ldl"; \
) >${DESTDIR}/usr/lib/pkgconfig/nss.pc
chmod 644 ${DESTDIR}/usr/lib/pkgconfig/nss.pc
}