diff --git a/packages/3rdparty/security/nss/build b/packages/3rdparty/security/nss/build deleted file mode 100755 index 7df73ad843..0000000000 --- a/packages/3rdparty/security/nss/build +++ /dev/null @@ -1,64 +0,0 @@ -#!/bin/sh - -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv) -# -# This Program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This Program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with OpenELEC.tv; see the file COPYING. If not, write to -# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA. -# http://www.gnu.org/copyleft/gpl.html -################################################################################ - -. config/options $1 - -# dont build parallel - MAKEFLAGS=-j1 - -cd $PKG_BUILD/mozilla/security/nss - -setup_toolchain host - -[ "`uname -m`" = "x86_64" ] && HOST_USE_64="USE_64=1" - -# make host part for nsinstall binary and created library signatures -make nss_build_all CC=$CC LDFLAGS="$LDFLAGS" $HOST_USE_64 - -# save host binary -cp ../coreconf/nsinstall/Linux*_DBG.OBJ/nsinstall nsinstall-host -NSINSTALL_HOST=`pwd`/nsinstall-host - -# save library signatures to be used on target -# the .chk file format is cross platform (so I read) -find ./ -name "lib*.chk" -exec cp {} ../../dist/ \; - -# can't run in crosscompile (remove it from target) -sed -i "/shlibsign/d" cmd/manifest.mn - -# clean up host part -rm -rf `find ../../../ -type d -name Linux*_DBG.OBJ` - -[ "$TARGET_ARCH" = "x86_64" ] && TARGET_USE_64="USE_64=1" - -setup_toolchain target - -NSPR_CONFIGURE_OPTS="--host=$TARGET_NAME --build=$HOST_NAME --target=$TARGET_NAME" -NSPR_CONFIGURE_OPTS="$NSPR_CONFIGURE_OPTS --prefix=/usr --enable-strip --with-pthreads" \ -make nss_build_all \ - NSINSTALL=$NSINSTALL_HOST \ - BUILD_OPT=1 $TARGET_USE_64 \ - OS_TEST=$TARGET_ARCH \ - CPU_ARCH_TAG=$TARGET_ARCH \ - USE_SYSTEM_ZLIB=1 ZLIB_LIBS=-lz \ - CC=$CC CCC=$CXX RANLIB=$RANLIB \ - V=1 diff --git a/packages/3rdparty/security/nss/meta b/packages/3rdparty/security/nss/meta deleted file mode 100644 index 7ccfff1e5a..0000000000 --- a/packages/3rdparty/security/nss/meta +++ /dev/null @@ -1,35 +0,0 @@ -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv) -# -# This Program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This Program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with OpenELEC.tv; see the file COPYING. If not, write to -# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA. -# http://www.gnu.org/copyleft/gpl.html -################################################################################ - -PKG_NAME="nss" -PKG_VERSION="3.13.3" -PKG_REV="1" -PKG_ARCH="i386 x86_64" -PKG_LICENSE="Mozilla Public License" -PKG_SITE="http://ftp.mozilla.org/" -PKG_URL="http://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_3_13_3_RTM/src/$PKG_NAME-$PKG_VERSION-with-nspr-4.9.tar.gz" -PKG_DEPENDS="" -PKG_BUILD_DEPENDS="toolchain" -PKG_PRIORITY="optional" -PKG_SECTION="security" -PKG_SHORTDESC="nss: Network Security Services (NSS) is a set of libraries designed to support cross-platform development of security-enabled client and server applications." -PKG_LONGDESC="Network Security Services (NSS) is a set of libraries designed to support cross-platform development of security-enabled client and server applications." -PKG_IS_ADDON="no" -PKG_AUTORECONF="no"