diff options
author | Raúl Porcel <armin76@gentoo.org> | 2007-12-12 14:01:13 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2007-12-12 14:01:13 +0000 |
commit | d0b81d76cdb11b81ae807179eb59965c23dd5fae (patch) | |
tree | fcaf9bcd5f981af1fc9af388f7981b98a3fb7fa9 /dev-libs | |
parent | P.mask snapshots of nss and nspr (diff) | |
download | historical-d0b81d76cdb11b81ae807179eb59965c23dd5fae.tar.gz historical-d0b81d76cdb11b81ae807179eb59965c23dd5fae.tar.bz2 historical-d0b81d76cdb11b81ae807179eb59965c23dd5fae.zip |
Version bump
Package-Manager: portage-2.1.3.19
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/nss/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/nss/files/digest-nss-3.12_alpha2_p2 | 3 | ||||
-rw-r--r-- | dev-libs/nss/nss-3.12_alpha2_p2.ebuild | 116 |
3 files changed, 125 insertions, 1 deletions
diff --git a/dev-libs/nss/ChangeLog b/dev-libs/nss/ChangeLog index 665b389ac7c2..86d05587b217 100644 --- a/dev-libs/nss/ChangeLog +++ b/dev-libs/nss/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/nss # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/nss/ChangeLog,v 1.103 2007/10/16 17:19:36 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/nss/ChangeLog,v 1.104 2007/12/12 14:01:13 armin76 Exp $ + +*nss-3.12_alpha2_p2 (12 Dec 2007) + + 12 Dec 2007; Raúl Porcel <armin76@gentoo.org> +nss-3.12_alpha2_p2.ebuild: + Version bump 16 Oct 2007; Raúl Porcel <armin76@gentoo.org> nss-3.11.5.ebuild, nss-3.11.7.ebuild: diff --git a/dev-libs/nss/files/digest-nss-3.12_alpha2_p2 b/dev-libs/nss/files/digest-nss-3.12_alpha2_p2 new file mode 100644 index 000000000000..57a7fa4c052f --- /dev/null +++ b/dev-libs/nss/files/digest-nss-3.12_alpha2_p2 @@ -0,0 +1,3 @@ +MD5 0632abc8c38bc9f1fb03d9d729789d5d nss-3.12_alpha2_p2.tar.bz2 3903174 +RMD160 997c8daacdb5a3410ca3c23ce6d682345f392828 nss-3.12_alpha2_p2.tar.bz2 3903174 +SHA256 3bff7452b200623ec84a8c5dadf8283ff0af9f4705bc0fc92f505a618ad5c1a6 nss-3.12_alpha2_p2.tar.bz2 3903174 diff --git a/dev-libs/nss/nss-3.12_alpha2_p2.ebuild b/dev-libs/nss/nss-3.12_alpha2_p2.ebuild new file mode 100644 index 000000000000..e7e482c6ceeb --- /dev/null +++ b/dev-libs/nss/nss-3.12_alpha2_p2.ebuild @@ -0,0 +1,116 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/nss/nss-3.12_alpha2_p2.ebuild,v 1.1 2007/12/12 14:01:13 armin76 Exp $ + +inherit eutils flag-o-matic multilib + +NSPR_VER="4.7.0_pre20071016" +RTM_NAME="NSS_${PV//./_}_RTM" +DESCRIPTION="Mozilla's Network Security Services library that implements PKI support" +HOMEPAGE="http://www.mozilla.org/projects/security/pki/nss/" +SRC_URI="mirror://gentoo/${P}.tar.bz2" + +LICENSE="MPL-1.1 GPL-2 LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86 ~x86-fbsd" +IUSE="utils" + +DEPEND=">=dev-libs/nspr-${NSPR_VER}" + +S="${WORKDIR}" + +src_unpack() { + unpack ${A} + + # hack nspr paths + echo 'INCLUDES += -I/usr/include/nspr -I$(DIST)/include/dbm' \ + >> ${S}/mozilla/security/coreconf/headers.mk || die "failed to append include" + + # cope with nspr being in /usr/$(get_libdir)/nspr + sed -e 's:$(DIST)/lib:/usr/'"$(get_libdir)"/nspr':' \ + -i ${S}/mozilla/security/coreconf/location.mk + + # modify install path + sed -e 's:SOURCE_PREFIX = $(CORE_DEPTH)/\.\./dist:SOURCE_PREFIX = $(CORE_DEPTH)/dist:' \ + -i ${S}/mozilla/security/coreconf/source.mk + + cd ${S} + epatch ${FILESDIR}/${PN}-3.11-config.patch + epatch ${FILESDIR}/${PN}-3.11.5-config-1.patch + epatch ${FILESDIR}/${PN}-mips64.patch +} + +src_compile() { + strip-flags + if use amd64 || use ppc64 || use ia64 || use s390; then + export USE_64=1 + fi + export NSDISTMODE=copy + cd ${S}/mozilla/security/coreconf + emake -j1 BUILD_OPT=1 XCFLAGS="${CFLAGS}" || die "coreconf make failed" + cd ${S}/mozilla/security/dbm + emake -j1 BUILD_OPT=1 XCFLAGS="${CFLAGS}" || die "dbm make failed" + cd ${S}/mozilla/security/nss + emake -j1 BUILD_OPT=1 XCFLAGS="${CFLAGS}" || die "nss make failed" +} + +src_install () { + MINOR_VERSION=11 + cd ${S}/mozilla/security/dist + + # put all *.a files in /usr/lib/nss (because some have conflicting names + # with existing libraries) + dodir /usr/$(get_libdir)/nss + cp -L */lib/*.so ${D}/usr/$(get_libdir)/nss || die "copying shared libs failed" + cp -L */lib/*.chk ${D}/usr/$(get_libdir)/nss || die "copying chk files failed" + cp -L */lib/*.a ${D}/usr/$(get_libdir)/nss || die "copying libs failed" + + # all the include files + insinto /usr/include/nss + doins private/nss/*.h + doins public/nss/*.h + cd ${D}/usr/$(get_libdir)/nss + for file in *.so; do + mv ${file} ${file}.${MINOR_VERSION} + ln -s ${file}.${MINOR_VERSION} ${file} + done + + # coping with nss being in a different path. We move up priority to + # ensure that nss/nspr are used specifically before searching elsewhere. + dodir /etc/env.d + echo "LDPATH=/usr/$(get_libdir)/nss" > ${D}/etc/env.d/08nss + + dodir /usr/bin + dodir /usr/$(get_libdir)/pkgconfig + cp ${FILESDIR}/nss-config.in ${D}/usr/bin/nss-config + cp ${FILESDIR}/nss.pc.in ${D}/usr/$(get_libdir)/pkgconfig/nss.pc + NSS_VMAJOR=`cat ${S}/mozilla/security/nss/lib/nss/nss.h | grep "#define.*NSS_VMAJOR" | awk '{print $3}'` + NSS_VMINOR=`cat ${S}/mozilla/security/nss/lib/nss/nss.h | grep "#define.*NSS_VMINOR" | awk '{print $3}'` + NSS_VPATCH=`cat ${S}/mozilla/security/nss/lib/nss/nss.h | grep "#define.*NSS_VPATCH" | awk '{print $3}'` + + sed -e "s,@libdir@,/usr/"$(get_libdir)"/nss,g" \ + -e "s,@prefix@,/usr,g" \ + -e "s,@exec_prefix@,\$\{prefix},g" \ + -e "s,@includedir@,\$\{prefix}/include/nss,g" \ + -e "s,@MOD_MAJOR_VERSION@,$NSS_VMAJOR,g" \ + -e "s,@MOD_MINOR_VERSION@,$NSS_VMINOR,g" \ + -e "s,@MOD_PATCH_VERSION@,$NSS_VPATCH,g" \ + -i ${D}/usr/bin/nss-config + chmod 755 ${D}/usr/bin/nss-config + + sed -e "s,@libdir@,/usr/"$(get_libdir)"/nss,g" \ + -e "s,@prefix@,/usr,g" \ + -e "s,@exec_prefix@,\$\{prefix},g" \ + -e "s,@includedir@,\$\{prefix}/include/nss," \ + -e "s,@NSPR_VERSION@,`nspr-config --version`,g" \ + -e "s,@NSS_VERSION@,$NSS_VMAJOR.$NSS_VMINOR.$NSS_VPATCH,g" \ + -i ${D}/usr/$(get_libdir)/pkgconfig/nss.pc + chmod 644 ${D}/usr/$(get_libdir)/pkgconfig/nss.pc + + if use utils; then + cd ${S}/mozilla/security/dist/*/bin/ + for f in *; do + newbin ${f} nss${f} + done + fi +} |