public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Justin Lecher (jlec)" <jlec@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in sci-chemistry/azara: ChangeLog azara-2.8-r2.ebuild
Date: Sun, 31 Oct 2010 09:15:41 +0000 (UTC)	[thread overview]
Message-ID: <20101031091541.B124920054@flycatcher.gentoo.org> (raw)

jlec        10/10/31 09:15:41

  Modified:             ChangeLog
  Added:                azara-2.8-r2.ebuild
  Log:
  More parallel fixes and impl dec QA
  
  (Portage version: 2.2.0_alpha2/cvs/Linux x86_64)

Revision  Changes    Path
1.6                  sci-chemistry/azara/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/azara/ChangeLog?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/azara/ChangeLog?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/azara/ChangeLog?r1=1.5&r2=1.6

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/azara/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog	6 Aug 2010 10:50:04 -0000	1.5
+++ ChangeLog	31 Oct 2010 09:15:41 -0000	1.6
@@ -1,6 +1,12 @@
 # ChangeLog for sci-chemistry/azara
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/azara/ChangeLog,v 1.5 2010/08/06 10:50:04 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/azara/ChangeLog,v 1.6 2010/10/31 09:15:41 jlec Exp $
+
+*azara-2.8-r2 (31 Oct 2010)
+
+  31 Oct 2010; Justin Lecher <jlec@gentoo.org> +files/2.8-impl-decng.patch,
+  +azara-2.8-r2.ebuild, +files/2.8-prllng.patch:
+  More parallel fixes and impl dec QA
 
 *azara-2.8-r1 (06 Aug 2010)
 *azara-2.7-r1 (06 Aug 2010)



1.1                  sci-chemistry/azara/azara-2.8-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/azara/azara-2.8-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/azara/azara-2.8-r2.ebuild?rev=1.1&content-type=text/plain

Index: azara-2.8-r2.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/azara/azara-2.8-r2.ebuild,v 1.1 2010/10/31 09:15:41 jlec Exp $

EAPI="3"

PYTHON_DEPEND="2"

inherit eutils python toolchain-funcs

DESCRIPTION="A suite of programmes to process and view NMR data"
HOMEPAGE="http://www.bio.cam.ac.uk/azara/"
SRC_URI="http://www.bio.cam.ac.uk/ccpn/download/${PN}/${P}-src.tgz"

LICENSE="AZARA"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux"
IUSE="X xpm"

RDEPEND="
	xpm? ( x11-libs/libXpm )
	X? ( x11-libs/libX11 )"
DEPEND="${RDEPEND}"

pkg_setup() {
	python_set_active_version 2
}

src_prepare() {
	cat > ENVIRONMENT <<- EOF
	CC=$(tc-getCC)
	CFLAGS=${CFLAGS}
	LFLAGS=${LDFLAGS}
	MATH_LIB=-lm
	X11_INCLUDE_DIR=-I${EPREFIX}/usr/X11R6/include
	MOTIF_INCLUDE_DIR=-I${EPREFIX}/usr/include -I../global
	X11_LIB_DIR=-L${EPREFIX}/usr/$(get_libdir)
	MOTIF_LIB_DIR=-L${EPREFIX}/usr/$(get_libdir)
	X11_LIB=-lX11
	MOTIF_LIB=-lXm -lXt
	PYTHON_INCLUDE_DIR=$(python_get_includedir)
	SHARED_FLAGS = -shared
	ENDIAN_FLAG=-DLITTLE_ENDIAN_DATA
	EOF

	use xpm && echo "XPMUSE=\"XPM_FLAG=-DUSE_XPM XPM_LIB=-lXpm\"" >> ENVIRONMENT

	epatch "${FILESDIR}"/${PV}-prllng.patch
	epatch "${FILESDIR}"/${PV}-impl-decng.patch
}

src_compile() {
	local mymake
	local makeflags

	mymake="${mymake} help nongui DataRows"
	use X && mymake="${mymake} gui"

	emake -C global || die
	emake ${mymake} || die
}

src_install() {
	rm bin/pythonAzara || die
	if ! use X; then
		rm bin/plot* || die
	fi

	dodoc CHANGES* README* || die
	dohtml -r html/* || die

	cd bin
	for bin in *; do
		newbin ${bin} ${PN}-${bin} || die "failed to install ${bin}"
	done
}

pkg_postinst() {
	einfo "Due to collision we moved all binary to azara-*"
}






                 reply	other threads:[~2010-10-31  9:15 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=20101031091541.B124920054@flycatcher.gentoo.org \
    --to=jlec@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