From: "Nirbheek Chauhan (nirbheek)" <nirbheek@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/nspr: nspr-4.8.ebuild ChangeLog
Date: Wed, 24 Jun 2009 17:47:24 +0000 [thread overview]
Message-ID: <E1MJWZA-0003SW-IM@stork.gentoo.org> (raw)
nirbheek 09/06/24 17:47:24
Modified: ChangeLog
Added: nspr-4.8.ebuild
Log:
Add nspr-4.8, dependency of firefox 3.5rc*
(Portage version: 2.2_rc33/cvs/Linux i686)
Revision Changes Path
1.123 dev-libs/nspr/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/nspr/ChangeLog?rev=1.123&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/nspr/ChangeLog?rev=1.123&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/nspr/ChangeLog?r1=1.122&r2=1.123
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nspr/ChangeLog,v
retrieving revision 1.122
retrieving revision 1.123
diff -u -r1.122 -r1.123
--- ChangeLog 1 May 2009 14:03:12 -0000 1.122
+++ ChangeLog 24 Jun 2009 17:47:24 -0000 1.123
@@ -1,6 +1,11 @@
# ChangeLog for dev-libs/nspr
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nspr/ChangeLog,v 1.122 2009/05/01 14:03:12 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nspr/ChangeLog,v 1.123 2009/06/24 17:47:24 nirbheek Exp $
+
+*nspr-4.8 (24 Jun 2009)
+
+ 24 Jun 2009; <nirbheek@gentoo.org> +nspr-4.8.ebuild:
+ Add nspr-4.8, dependency of firefox 3.5rc*
01 May 2009; Markus Meier <maekke@gentoo.org> nspr-4.7.4.ebuild:
amd64 stable, bug #267234
1.1 dev-libs/nspr/nspr-4.8.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/nspr/nspr-4.8.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/nspr/nspr-4.8.ebuild?rev=1.1&content-type=text/plain
Index: nspr-4.8.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/nspr/nspr-4.8.ebuild,v 1.1 2009/06/24 17:47:24 nirbheek Exp $
inherit eutils multilib toolchain-funcs versionator
MIN_PV="$(get_version_component_range 2)"
DESCRIPTION="Netscape Portable Runtime"
HOMEPAGE="http://www.mozilla.org/projects/nspr/"
SRC_URI="ftp://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v${PV}/src/${P}.tar.gz"
LICENSE="|| ( MPL-1.1 GPL-2 LGPL-2.1 )"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="ipv6 debug"
DEPEND=">=dev-db/sqlite-3.5"
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
mkdir build inst
epatch "${FILESDIR}"/${PN}-4.6.1-config.patch
epatch "${FILESDIR}"/${PN}-4.6.1-config-1.patch
epatch "${FILESDIR}"/${PN}-4.6.1-lang.patch
epatch "${FILESDIR}"/${PN}-4.7.0-prtime.patch
# Respect LDFLAGS
sed -i -e 's/\$(MKSHLIB) \$(OBJS)/\$(MKSHLIB) \$(LDFLAGS) \$(OBJS)/g' \
mozilla/nsprpub/config/rules.mk
}
src_compile() {
cd "${S}"/build
echo > "${T}"/test.c
$(tc-getCC) -c "${T}"/test.c -o "${T}"/test.o
case $(file "${T}"/test.o) in
*64-bit*) myconf="${myconf} --enable-64bit";;
*32-bit*) ;;
*) die "Failed to detect whether your arch is 64bits or 32bits, disable distcc if you're using it, please";;
esac
if use ipv6; then
myconf="${myconf} --enable-ipv6"
fi
myconf="${myconf} --libdir=/usr/$(get_libdir)/nspr \
--enable-system-sqlite"
ECONF_SOURCE="../mozilla/nsprpub" econf \
$(use_enable debug) \
${myconf} || die "econf failed"
make CC="$(tc-getCC)" CXX="$(tc-getCXX)" || die
}
src_install () {
# Their build system is royally fucked, as usual
MINOR_VERSION=${MIN_PV} # Used for .so version
cd "${S}"/build
emake DESTDIR="${D}" install || die "emake install failed"
cd "${D}"/usr/$(get_libdir)/nspr
for file in *.so; do
mv ${file} ${file}.${MINOR_VERSION}
ln -s ${file}.${MINOR_VERSION} ${file}
done
# cope with libraries being in /usr/lib/nspr
dodir /etc/env.d
echo "LDPATH=/usr/$(get_libdir)/nspr" > "${D}/etc/env.d/08nspr"
# install nspr-config
dobin "${S}"/build/config/nspr-config
# create pkg-config file
insinto /usr/$(get_libdir)/pkgconfig/
doins "${S}"/build/config/nspr.pc
# Remove stupid files in /usr/bin
rm "${D}"/usr/bin/{prerr.properties,nspr.pc}
}
pkg_postinst() {
ewarn
ewarn "Please make sure you run revdep-rebuild after upgrade."
ewarn "This is *extremely* important to ensure your system nspr works properly."
ewarn
}
next reply other threads:[~2009-06-24 17:47 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-06-24 17:47 Nirbheek Chauhan (nirbheek) [this message]
-- strict thread matches above, loose matches on Subject: below --
2009-08-14 0:32 [gentoo-commits] gentoo-x86 commit in dev-libs/nspr: nspr-4.8.ebuild ChangeLog Christian Faulhammer (fauli)
2009-08-17 4:21 Jeroen Roovers (jer)
2009-08-19 22:22 Mounir Lamouri (volkmar)
2009-09-22 13:03 Markus Meier (maekke)
2009-09-23 17:06 Raul Porcel (armin76)
2009-11-12 15:07 Joseph Jezak (josejx)
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=E1MJWZA-0003SW-IM@stork.gentoo.org \
--to=nirbheek@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox