diff options
author | Sandro Bonazzola <sanchan@gentoo.org> | 2006-11-14 21:32:58 +0000 |
---|---|---|
committer | Sandro Bonazzola <sanchan@gentoo.org> | 2006-11-14 21:32:58 +0000 |
commit | 99313b378c78521e577f30df0de2ea1dd3260269 (patch) | |
tree | c670e04d429b2b64bc9e21eba6972bb3bb7283cd /dev-tinyos | |
parent | Keywording ~amd64. (diff) | |
download | gentoo-2-99313b378c78521e577f30df0de2ea1dd3260269.tar.gz gentoo-2-99313b378c78521e577f30df0de2ea1dd3260269.tar.bz2 gentoo-2-99313b378c78521e577f30df0de2ea1dd3260269.zip |
Removing obsolete versions. Inheriting java-pkg-2 avoiding errors with a JRE as VM. Adding patch provided by Aurélien Francillon fixing bug #145870. Keywording ~amd64
(Portage version: 2.1.2_rc1-r6)
Diffstat (limited to 'dev-tinyos')
-rw-r--r-- | dev-tinyos/nesc/ChangeLog | 9 | ||||
-rw-r--r-- | dev-tinyos/nesc/files/nesc-1.2.7a-alignment.patch | 30 | ||||
-rw-r--r-- | dev-tinyos/nesc/nesc-1.2.7a.ebuild | 13 |
3 files changed, 48 insertions, 4 deletions
diff --git a/dev-tinyos/nesc/ChangeLog b/dev-tinyos/nesc/ChangeLog index 702570e9d2a8..78bf3b3bfe1f 100644 --- a/dev-tinyos/nesc/ChangeLog +++ b/dev-tinyos/nesc/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-tinyos/nesc # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tinyos/nesc/ChangeLog,v 1.11 2006/08/10 20:20:48 sanchan Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tinyos/nesc/ChangeLog,v 1.12 2006/11/14 21:32:58 sanchan Exp $ + + 14 Nov 2006; Sandro Bonazzola <sanchan@gentoo.org> + +files/nesc-1.2.7a-alignment.patch, -nesc-1.2.4-r1.ebuild, + -nesc-1.2.5-r1.ebuild, nesc-1.2.7a.ebuild: + Removing obsolete versions. Inheriting java-pkg-2 avoiding errors with a JRE + as VM. Adding patch provided by Aurélien Francillon fixing bug #145870. + Keywording ~amd64. 10 Aug 2006; Sandro Bonazzola <sanchan@gentoo.org> nesc-1.2.7a.ebuild: Fix missing dependency on media-gfx/graphviz, add some info about editor diff --git a/dev-tinyos/nesc/files/nesc-1.2.7a-alignment.patch b/dev-tinyos/nesc/files/nesc-1.2.7a-alignment.patch new file mode 100644 index 000000000000..c540960ef0e5 --- /dev/null +++ b/dev-tinyos/nesc/files/nesc-1.2.7a-alignment.patch @@ -0,0 +1,30 @@ +--- src/attributes.c-old 2006-09-05 18:52:23.000000000 +0200 ++++ src/attributes.c 2006-09-05 19:40:23.000000000 +0200 +@@ -69,9 +69,6 @@ + return cval_cast(arg, size_t_type); + else + error("requested alignment is not a power of 2"); +- else +- error("requested alignment is not a constant"); +- + return cval_top; + } + +@@ -146,13 +143,10 @@ + { + cval arg = get_alignment(attr); + +- if (cval_isinteger(arg)) +- { +- if (ddecl->kind == decl_variable || ddecl->kind == decl_typedef) +- ddecl->type = align_type(ddecl->type, arg); +- else +- ignored_gcc_attribute(attr); +- } ++ if (cval_isinteger(arg) && (ddecl->kind == decl_variable || ddecl->kind == decl_typedef)) ++ ddecl->type = align_type(ddecl->type, arg); ++ else ++ ignored_gcc_attribute(attr); + } + else if (is_attr_name(name, "mode")) + { diff --git a/dev-tinyos/nesc/nesc-1.2.7a.ebuild b/dev-tinyos/nesc/nesc-1.2.7a.ebuild index f3c629fc6e05..e7e6fc9feda7 100644 --- a/dev-tinyos/nesc/nesc-1.2.7a.ebuild +++ b/dev-tinyos/nesc/nesc-1.2.7a.ebuild @@ -1,15 +1,15 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tinyos/nesc/nesc-1.2.7a.ebuild,v 1.2 2006/08/10 20:20:48 sanchan Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tinyos/nesc/nesc-1.2.7a.ebuild,v 1.3 2006/11/14 21:32:58 sanchan Exp $ -inherit eutils +inherit eutils java-pkg-2 DESCRIPTION="An extension to gcc that knows how to compile nesC applications" HOMEPAGE="http://nescc.sourceforge.net/" SRC_URI="mirror://sourceforge/nescc/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~x86" +KEYWORDS="~x86 ~amd64" IUSE="doc" DEPEND=">=dev-lang/perl-5.8.5-r2 >=dev-tinyos/tos-1.1.0 @@ -39,6 +39,13 @@ pkg_setup() { else einfo "Building nesC for ${TOSDIR}" fi + java-pkg-2_pkg_setup +} + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${P}-alignment.patch } src_compile() { |