* [gentoo-commits] gentoo-x86 commit in dev-util/astyle: ChangeLog astyle-1.22.ebuild
@ 2008-05-12 6:03 Steve Arnold (nerdboy)
0 siblings, 0 replies; 10+ messages in thread
From: Steve Arnold (nerdboy) @ 2008-05-12 6:03 UTC (permalink / raw
To: gentoo-commits
nerdboy 08/05/12 06:03:36
Modified: ChangeLog
Added: astyle-1.22.ebuild
Log:
Updated for bug #217262 and added some basic java support and a soname
(Portage version: 2.1.5_rc6)
Revision Changes Path
1.21 dev-util/astyle/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/ChangeLog?rev=1.21&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/ChangeLog?rev=1.21&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/ChangeLog?r1=1.20&r2=1.21
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog 4 Feb 2008 03:58:43 -0000 1.20
+++ ChangeLog 12 May 2008 06:03:36 -0000 1.21
@@ -1,6 +1,13 @@
# ChangeLog for dev-util/astyle
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.20 2008/02/04 03:58:43 nerdboy Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.21 2008/05/12 06:03:36 nerdboy Exp $
+
+*astyle-1.22 (12 May 2008)
+
+ 12 May 2008; Steve Arnold <nerdboy@gentoo.org>
+ +files/astyle-1.22-strip.patch, +astyle-1.22.ebuild:
+ Updated for bug #217262 and added some basic java support and a soname;
+ thanks to Adam <ediap@users.sourceforge.net> for the updated patch.
04 Feb 2008; Steve Arnold <nerdboy@gentoo.org> astyle-1.21.ebuild:
Fixed string quoting and added some dies to the manual install commands,
@@ -11,7 +18,7 @@
Dropped ppc-macos keyword, see you in prefix
14 Nov 2007; Robin H. Johnson <robbat2@gentoo.org> astyle-1.21.ebuild:
- Fix $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.20 2008/02/04 03:58:43 nerdboy Exp $ string.
+ Fix $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.21 2008/05/12 06:03:36 nerdboy Exp $ string.
*astyle-1.21 (07 Oct 2007)
1.1 dev-util/astyle/astyle-1.22.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild?rev=1.1&content-type=text/plain
Index: astyle-1.22.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild,v 1.1 2008/05/12 06:03:36 nerdboy Exp $
inherit eutils java-pkg-opt-2
DESCRIPTION="Artistic Style is a reindenter and reformatter of C++, C and Java source code"
HOMEPAGE="http://astyle.sourceforge.net/"
SRC_URI="mirror://sourceforge/astyle/astyle_${PV}_linux.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="debug java libs"
RDEPEND="java? ( >=virtual/jre-1.5 )"
DEPEND="java? ( >=virtual/jre-1.5 )"
S=${WORKDIR}/${PN}
pkg_setup() {
use java && java-pkg-2_pkg_setup
if use x86; then
jvmarch=i386
else
jvmarch=${ARCH}
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-strip.patch
# Add basic soname to make QA happy...
sed -i -e "s:-shared:-shared -Wl,-soname,\$@ :g" buildgcc/Makefile
use java && setup-jvm-opts
}
src_compile() {
cd buildgcc
local build_targets="all"
use java && build_targets="${build_targets} javaall"
emake ${build_targets} || die "build failed"
}
src_install() {
if use debug ; then
newbin bin/astyled astyle || die "install debug bin failed"
newlib.a bin/libastyled.a libastyle.a \
|| die "install debug static lib failed"
if use libs ; then
# shared lib got a soname patch
newlib.so bin/libastyled.so libastyle.so \
|| die "install debug shared lib failed"
if use java ; then
local j_dir="/usr/$(get_libdir)"
dolib.so bin/libastylejd.so \
|| die "install debug shared java lib failed"
java-pkg_regso "${D}${j_dir}/libastylejd.so"
fi
fi
else
if use libs ; then
dolib.so bin/libastyle.so || die "install shared lib failed"
if use java ; then
local j_dir="/usr/$(get_libdir)"
dolib.so bin/libastylej.so \
|| die "install shared java lib failed"
java-pkg_regso "${D}${j_dir}/libastylej.so"
fi
fi
dobin bin/astyle || die "install bin failed"
dolib.a bin/libastyle.a || die "install static lib failed"
fi
dohtml doc/*.html
}
setup-jvm-opts() {
# Figure out correct boot classpath
# stolen from eclipse-sdk ebuild
local bp="$(java-config --jdk-home)/jre/lib"
local bootclasspath=$(java-config --runtime)
if java-config --java-version | grep -q IBM ; then
# IBM JDK
JAVA_LIB_DIR="$(java-config --jdk-home)/jre/bin"
else
# Sun derived JDKs (Blackdown, Sun)
JAVA_LIB_DIR="$(java-config --jdk-home)/jre/lib/${jvmarch}"
fi
einfo "Using bootclasspath ${bootclasspath}"
einfo "Using JVM library path ${JAVA_LIB_DIR}"
if [[ ! -f ${JAVA_LIB_DIR}/libawt.so ]] ; then
die "Could not find libawt.so native library"
fi
export AWT_LIB_PATH=${JAVA_LIB_DIR}
}
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/astyle: ChangeLog astyle-1.22.ebuild
@ 2008-05-30 18:53 Markus Rothe (corsair)
0 siblings, 0 replies; 10+ messages in thread
From: Markus Rothe (corsair) @ 2008-05-30 18:53 UTC (permalink / raw
To: gentoo-commits
corsair 08/05/30 18:53:54
Modified: ChangeLog astyle-1.22.ebuild
Log:
Does not compile on ppc64. mark it -ppc64. error is "../src/astyle_main.cpp:56:17: error: jni.h: No such file or directory"
(Portage version: 2.1.4.4)
Revision Changes Path
1.25 dev-util/astyle/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/ChangeLog?r1=1.24&r2=1.25
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog 24 May 2008 13:38:45 -0000 1.24
+++ ChangeLog 30 May 2008 18:53:54 -0000 1.25
@@ -1,6 +1,10 @@
# ChangeLog for dev-util/astyle
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.24 2008/05/24 13:38:45 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.25 2008/05/30 18:53:54 corsair Exp $
+
+ 30 May 2008; Markus Rothe <corsair@gentoo.org> astyle-1.22.ebuild:
+ Does not compile on ppc64. mark it -ppc64. error is
+ "../src/astyle_main.cpp:56:17: error: jni.h: No such file or directory"
24 May 2008; Markus Meier <maekke@gentoo.org> astyle-1.21.ebuild:
amd64 stable, bug #220739
@@ -27,7 +31,7 @@
Dropped ppc-macos keyword, see you in prefix
14 Nov 2007; Robin H. Johnson <robbat2@gentoo.org> astyle-1.21.ebuild:
- Fix $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.24 2008/05/24 13:38:45 maekke Exp $ string.
+ Fix $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.25 2008/05/30 18:53:54 corsair Exp $ string.
*astyle-1.21 (07 Oct 2007)
1.3 dev-util/astyle/astyle-1.22.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild?r1=1.2&r2=1.3
Index: astyle-1.22.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- astyle-1.22.ebuild 12 May 2008 15:55:09 -0000 1.2
+++ astyle-1.22.ebuild 30 May 2008 18:53:54 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild,v 1.2 2008/05/12 15:55:09 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild,v 1.3 2008/05/30 18:53:54 corsair Exp $
inherit eutils java-pkg-opt-2
@@ -10,7 +10,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~ppc -ppc64 ~sparc ~x86"
IUSE="debug java libs"
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/astyle: ChangeLog astyle-1.22.ebuild
@ 2008-10-16 6:02 Steve Arnold (nerdboy)
0 siblings, 0 replies; 10+ messages in thread
From: Steve Arnold (nerdboy) @ 2008-10-16 6:02 UTC (permalink / raw
To: gentoo-commits
nerdboy 08/10/16 06:02:44
Modified: ChangeLog astyle-1.22.ebuild
Log:
Updated to fix borked JAVA_HOME and CFLAGS
(Portage version: 2.2_rc11/cvs/Linux 2.6.26.5 x86_64)
Revision Changes Path
1.27 dev-util/astyle/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/ChangeLog?r1=1.26&r2=1.27
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog 10 Sep 2008 13:06:01 -0000 1.26
+++ ChangeLog 16 Oct 2008 06:02:44 -0000 1.27
@@ -1,6 +1,11 @@
# ChangeLog for dev-util/astyle
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.26 2008/09/10 13:06:01 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.27 2008/10/16 06:02:44 nerdboy Exp $
+
+ 28 Sep 2008; Steve Arnold <nerdboy@gentoo.org> astyle-1.22.ebuild,
+ +filers/astyle-1.22-Makefile.patch, -files/astyle-1.22-strip.patch:
+ Updated to fix borked JAVA_HOME and CFLAGS; requires a 1.6 JDK now...
+ Tested on amd64 with Sun JDK.
10 Sep 2008; Ferris McCormick <fmccor@gentoo.org> astyle-1.21.ebuild:
Sparc stable --- Bug #220739 --- seems to work fine.
@@ -34,7 +39,7 @@
Dropped ppc-macos keyword, see you in prefix
14 Nov 2007; Robin H. Johnson <robbat2@gentoo.org> astyle-1.21.ebuild:
- Fix $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.26 2008/09/10 13:06:01 fmccor Exp $ string.
+ Fix $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.27 2008/10/16 06:02:44 nerdboy Exp $ string.
*astyle-1.21 (07 Oct 2007)
1.4 dev-util/astyle/astyle-1.22.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild?r1=1.3&r2=1.4
Index: astyle-1.22.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- astyle-1.22.ebuild 30 May 2008 18:53:54 -0000 1.3
+++ astyle-1.22.ebuild 16 Oct 2008 06:02:44 -0000 1.4
@@ -1,8 +1,8 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild,v 1.3 2008/05/30 18:53:54 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild,v 1.4 2008/10/16 06:02:44 nerdboy Exp $
-inherit eutils java-pkg-opt-2
+inherit eutils java-pkg-2 java-pkg-opt-2 toolchain-funcs
DESCRIPTION="Artistic Style is a reindenter and reformatter of C++, C and Java source code"
HOMEPAGE="http://astyle.sourceforge.net/"
@@ -14,29 +14,35 @@
IUSE="debug java libs"
-RDEPEND="java? ( >=virtual/jre-1.5 )"
+RDEPEND="java? ( >=virtual/jre-1.6 )"
-DEPEND="java? ( >=virtual/jre-1.5 )"
+DEPEND="java? ( >=virtual/jre-1.6 )"
S=${WORKDIR}/${PN}
pkg_setup() {
- use java && java-pkg-2_pkg_setup
+ if use java ; then
+ java-pkg-2_pkg_setup
- if use x86; then
- jvmarch=i386
- else
- jvmarch=${ARCH}
+ if use x86; then
+ jvmarch=i386
+ else
+ jvmarch=${ARCH}
+ fi
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
- epatch "${FILESDIR}"/${P}-strip.patch
# Add basic soname to make QA happy...
sed -i -e "s:-shared:-shared -Wl,-soname,\$@ :g" buildgcc/Makefile
- use java && setup-jvm-opts
+ # Fix JAVA_HOME
+ sed -i -e \
+ "s:/usr/lib/jvm/java-6-sun-1.6.0.00:$(java-config --jdk-home):g" \
+ buildgcc/Makefile || die "sed failed"
+ # respect CFLAGS, remove strip and other hard-coded crap
+ epatch "${FILESDIR}"/${P}-Makefile.patch
}
src_compile() {
@@ -45,7 +51,7 @@
local build_targets="all"
use java && build_targets="${build_targets} javaall"
- emake ${build_targets} || die "build failed"
+ emake CXX="$(tc-getCXX)" ${build_targets} || die "build failed"
}
src_install() {
@@ -54,7 +60,6 @@
newlib.a bin/libastyled.a libastyle.a \
|| die "install debug static lib failed"
if use libs ; then
- # shared lib got a soname patch
newlib.so bin/libastyled.so libastyle.so \
|| die "install debug shared lib failed"
if use java ; then
@@ -80,25 +85,3 @@
dohtml doc/*.html
}
-setup-jvm-opts() {
- # Figure out correct boot classpath
- # stolen from eclipse-sdk ebuild
- local bp="$(java-config --jdk-home)/jre/lib"
- local bootclasspath=$(java-config --runtime)
- if java-config --java-version | grep -q IBM ; then
- # IBM JDK
- JAVA_LIB_DIR="$(java-config --jdk-home)/jre/bin"
- else
- # Sun derived JDKs (Blackdown, Sun)
- JAVA_LIB_DIR="$(java-config --jdk-home)/jre/lib/${jvmarch}"
- fi
-
- einfo "Using bootclasspath ${bootclasspath}"
- einfo "Using JVM library path ${JAVA_LIB_DIR}"
-
- if [[ ! -f ${JAVA_LIB_DIR}/libawt.so ]] ; then
- die "Could not find libawt.so native library"
- fi
-
- export AWT_LIB_PATH=${JAVA_LIB_DIR}
-}
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/astyle: ChangeLog astyle-1.22.ebuild
@ 2008-10-16 6:34 Zac Medico (zmedico)
0 siblings, 0 replies; 10+ messages in thread
From: Zac Medico (zmedico) @ 2008-10-16 6:34 UTC (permalink / raw
To: gentoo-commits
zmedico 08/10/16 06:34:02
Modified: ChangeLog astyle-1.22.ebuild
Log:
16 Oct 2008; Zac Medico <zmedico@gentoo.org> astyle-1.22.ebuild:
Remove java-pkg-2 from inherit and just use java-pkg-opt-2 since java
support is optional in this package.
(Portage version: 2.2_rc12_p11692/cvs/Linux 2.6.26-1015-x86-64 i686)
Revision Changes Path
1.28 dev-util/astyle/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/ChangeLog?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/ChangeLog?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/ChangeLog?r1=1.27&r2=1.28
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog 16 Oct 2008 06:02:44 -0000 1.27
+++ ChangeLog 16 Oct 2008 06:34:01 -0000 1.28
@@ -1,6 +1,10 @@
# ChangeLog for dev-util/astyle
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.27 2008/10/16 06:02:44 nerdboy Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.28 2008/10/16 06:34:01 zmedico Exp $
+
+ 16 Oct 2008; Zac Medico <zmedico@gentoo.org> astyle-1.22.ebuild:
+ Remove java-pkg-2 from inherit and just use java-pkg-opt-2 since java
+ support is optional in this package.
28 Sep 2008; Steve Arnold <nerdboy@gentoo.org> astyle-1.22.ebuild,
+filers/astyle-1.22-Makefile.patch, -files/astyle-1.22-strip.patch:
@@ -39,7 +43,7 @@
Dropped ppc-macos keyword, see you in prefix
14 Nov 2007; Robin H. Johnson <robbat2@gentoo.org> astyle-1.21.ebuild:
- Fix $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.27 2008/10/16 06:02:44 nerdboy Exp $ string.
+ Fix $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.28 2008/10/16 06:34:01 zmedico Exp $ string.
*astyle-1.21 (07 Oct 2007)
1.5 dev-util/astyle/astyle-1.22.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild?r1=1.4&r2=1.5
Index: astyle-1.22.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- astyle-1.22.ebuild 16 Oct 2008 06:02:44 -0000 1.4
+++ astyle-1.22.ebuild 16 Oct 2008 06:34:01 -0000 1.5
@@ -1,8 +1,8 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild,v 1.4 2008/10/16 06:02:44 nerdboy Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild,v 1.5 2008/10/16 06:34:01 zmedico Exp $
-inherit eutils java-pkg-2 java-pkg-opt-2 toolchain-funcs
+inherit eutils java-pkg-opt-2 toolchain-funcs
DESCRIPTION="Artistic Style is a reindenter and reformatter of C++, C and Java source code"
HOMEPAGE="http://astyle.sourceforge.net/"
@@ -22,7 +22,7 @@
pkg_setup() {
if use java ; then
- java-pkg-2_pkg_setup
+ java-pkg-opt-2_pkg_setup
if use x86; then
jvmarch=i386
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/astyle: ChangeLog astyle-1.22.ebuild
@ 2008-10-17 12:27 Ferris McCormick (fmccor)
0 siblings, 0 replies; 10+ messages in thread
From: Ferris McCormick (fmccor) @ 2008-10-17 12:27 UTC (permalink / raw
To: gentoo-commits
fmccor 08/10/17 12:27:56
Modified: ChangeLog astyle-1.22.ebuild
Log:
Sparc stable --- Bug #220739 (now requesting this version) --- works fine.
(Portage version: 2.2_rc12/cvs/Linux 2.6.22-gentoo-r9-ail-simulation-sensors x86_64)
Revision Changes Path
1.29 dev-util/astyle/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/ChangeLog?rev=1.29&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/ChangeLog?rev=1.29&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/ChangeLog?r1=1.28&r2=1.29
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog 16 Oct 2008 06:34:01 -0000 1.28
+++ ChangeLog 17 Oct 2008 12:27:55 -0000 1.29
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/astyle
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.28 2008/10/16 06:34:01 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.29 2008/10/17 12:27:55 fmccor Exp $
+
+ 17 Oct 2008; Ferris McCormick <fmccor@gentoo.org> astyle-1.22.ebuild:
+ Sparc stable --- Bug #220739 (now requesting this version) --- works fine.
16 Oct 2008; Zac Medico <zmedico@gentoo.org> astyle-1.22.ebuild:
Remove java-pkg-2 from inherit and just use java-pkg-opt-2 since java
@@ -43,7 +46,7 @@
Dropped ppc-macos keyword, see you in prefix
14 Nov 2007; Robin H. Johnson <robbat2@gentoo.org> astyle-1.21.ebuild:
- Fix $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.28 2008/10/16 06:34:01 zmedico Exp $ string.
+ Fix $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.29 2008/10/17 12:27:55 fmccor Exp $ string.
*astyle-1.21 (07 Oct 2007)
1.6 dev-util/astyle/astyle-1.22.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild?r1=1.5&r2=1.6
Index: astyle-1.22.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- astyle-1.22.ebuild 16 Oct 2008 06:34:01 -0000 1.5
+++ astyle-1.22.ebuild 17 Oct 2008 12:27:55 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild,v 1.5 2008/10/16 06:34:01 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild,v 1.6 2008/10/17 12:27:55 fmccor Exp $
inherit eutils java-pkg-opt-2 toolchain-funcs
@@ -10,7 +10,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc -ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~ppc -ppc64 sparc ~x86"
IUSE="debug java libs"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/astyle: ChangeLog astyle-1.22.ebuild
@ 2008-10-18 3:04 Matti Bickel (mabi)
0 siblings, 0 replies; 10+ messages in thread
From: Matti Bickel (mabi) @ 2008-10-18 3:04 UTC (permalink / raw
To: gentoo-commits
mabi 08/10/18 03:04:22
Modified: ChangeLog astyle-1.22.ebuild
Log:
ppc stable (bug #220739)
(Portage version: 2.2_rc12/cvs/Linux 2.6.23-gentoo-r3-20080120 ppc)
Revision Changes Path
1.30 dev-util/astyle/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/ChangeLog?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/ChangeLog?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/ChangeLog?r1=1.29&r2=1.30
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog 17 Oct 2008 12:27:55 -0000 1.29
+++ ChangeLog 18 Oct 2008 03:04:22 -0000 1.30
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/astyle
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.29 2008/10/17 12:27:55 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.30 2008/10/18 03:04:22 mabi Exp $
+
+ 18 Oct 2008; Matti Bickel <mabi@gentoo.org> astyle-1.22.ebuild:
+ ppc stable (bug #220739)
17 Oct 2008; Ferris McCormick <fmccor@gentoo.org> astyle-1.22.ebuild:
Sparc stable --- Bug #220739 (now requesting this version) --- works fine.
@@ -46,7 +49,7 @@
Dropped ppc-macos keyword, see you in prefix
14 Nov 2007; Robin H. Johnson <robbat2@gentoo.org> astyle-1.21.ebuild:
- Fix $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.29 2008/10/17 12:27:55 fmccor Exp $ string.
+ Fix $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.30 2008/10/18 03:04:22 mabi Exp $ string.
*astyle-1.21 (07 Oct 2007)
1.7 dev-util/astyle/astyle-1.22.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild?r1=1.6&r2=1.7
Index: astyle-1.22.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- astyle-1.22.ebuild 17 Oct 2008 12:27:55 -0000 1.6
+++ astyle-1.22.ebuild 18 Oct 2008 03:04:22 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild,v 1.6 2008/10/17 12:27:55 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild,v 1.7 2008/10/18 03:04:22 mabi Exp $
inherit eutils java-pkg-opt-2 toolchain-funcs
@@ -10,7 +10,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc -ppc64 sparc ~x86"
+KEYWORDS="~alpha ~amd64 ppc -ppc64 sparc ~x86"
IUSE="debug java libs"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/astyle: ChangeLog astyle-1.22.ebuild
@ 2008-10-18 15:20 Raul Porcel (armin76)
0 siblings, 0 replies; 10+ messages in thread
From: Raul Porcel (armin76) @ 2008-10-18 15:20 UTC (permalink / raw
To: gentoo-commits
armin76 08/10/18 15:20:21
Modified: ChangeLog astyle-1.22.ebuild
Log:
alpha/x86 stable wrt #220739
(Portage version: 2.1.4.5)
Revision Changes Path
1.31 dev-util/astyle/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/ChangeLog?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/ChangeLog?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/ChangeLog?r1=1.30&r2=1.31
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog 18 Oct 2008 03:04:22 -0000 1.30
+++ ChangeLog 18 Oct 2008 15:20:21 -0000 1.31
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/astyle
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.30 2008/10/18 03:04:22 mabi Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.31 2008/10/18 15:20:21 armin76 Exp $
+
+ 18 Oct 2008; Raúl Porcel <armin76@gentoo.org> astyle-1.22.ebuild:
+ alpha/x86 stable wrt #220739
18 Oct 2008; Matti Bickel <mabi@gentoo.org> astyle-1.22.ebuild:
ppc stable (bug #220739)
@@ -49,7 +52,7 @@
Dropped ppc-macos keyword, see you in prefix
14 Nov 2007; Robin H. Johnson <robbat2@gentoo.org> astyle-1.21.ebuild:
- Fix $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.30 2008/10/18 03:04:22 mabi Exp $ string.
+ Fix $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.31 2008/10/18 15:20:21 armin76 Exp $ string.
*astyle-1.21 (07 Oct 2007)
1.8 dev-util/astyle/astyle-1.22.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild?r1=1.7&r2=1.8
Index: astyle-1.22.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- astyle-1.22.ebuild 18 Oct 2008 03:04:22 -0000 1.7
+++ astyle-1.22.ebuild 18 Oct 2008 15:20:21 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild,v 1.7 2008/10/18 03:04:22 mabi Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild,v 1.8 2008/10/18 15:20:21 armin76 Exp $
inherit eutils java-pkg-opt-2 toolchain-funcs
@@ -10,7 +10,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ppc -ppc64 sparc ~x86"
+KEYWORDS="alpha ~amd64 ppc -ppc64 sparc x86"
IUSE="debug java libs"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/astyle: ChangeLog astyle-1.22.ebuild
@ 2008-11-22 23:30 Markus Meier (maekke)
0 siblings, 0 replies; 10+ messages in thread
From: Markus Meier (maekke) @ 2008-11-22 23:30 UTC (permalink / raw
To: gentoo-commits
maekke 08/11/22 23:30:02
Modified: ChangeLog astyle-1.22.ebuild
Log:
amd64 stable, bug #220739
(Portage version: 2.2_rc15/cvs/Linux 2.6.26.8 x86_64)
Revision Changes Path
1.34 dev-util/astyle/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/ChangeLog?rev=1.34&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/ChangeLog?rev=1.34&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/ChangeLog?r1=1.33&r2=1.34
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog 17 Nov 2008 20:59:25 -0000 1.33
+++ ChangeLog 22 Nov 2008 23:30:02 -0000 1.34
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/astyle
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.33 2008/11/17 20:59:25 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.34 2008/11/22 23:30:02 maekke Exp $
+
+ 22 Nov 2008; Markus Meier <maekke@gentoo.org> astyle-1.22.ebuild:
+ amd64 stable, bug #220739
17 Nov 2008; Diego E. Pettenò <flameeyes@gentoo.org>
files/cmd-line-fix.diff:
@@ -60,7 +63,7 @@
Dropped ppc-macos keyword, see you in prefix
14 Nov 2007; Robin H. Johnson <robbat2@gentoo.org> astyle-1.21.ebuild:
- Fix $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.33 2008/11/17 20:59:25 flameeyes Exp $ string.
+ Fix $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.34 2008/11/22 23:30:02 maekke Exp $ string.
*astyle-1.21 (07 Oct 2007)
1.10 dev-util/astyle/astyle-1.22.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild?r1=1.9&r2=1.10
Index: astyle-1.22.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- astyle-1.22.ebuild 27 Oct 2008 22:52:04 -0000 1.9
+++ astyle-1.22.ebuild 22 Nov 2008 23:30:02 -0000 1.10
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild,v 1.9 2008/10/27 22:52:04 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild,v 1.10 2008/11/22 23:30:02 maekke Exp $
inherit eutils java-pkg-opt-2 toolchain-funcs
@@ -10,7 +10,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="alpha ~amd64 ppc -ppc64 sparc x86"
+KEYWORDS="alpha amd64 ppc -ppc64 sparc x86"
IUSE="debug java libs"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/astyle: ChangeLog astyle-1.22.ebuild
@ 2008-12-02 22:49 Brent Baude (ranger)
0 siblings, 0 replies; 10+ messages in thread
From: Brent Baude (ranger) @ 2008-12-02 22:49 UTC (permalink / raw
To: gentoo-commits
ranger 08/12/02 22:49:28
Modified: ChangeLog astyle-1.22.ebuild
Log:
Marking astyle-1.22 ~ppc64 for bug 220379
(Portage version: 2.2_rc12/cvs/Linux 2.6.25-gentoo-r7 ppc64)
Revision Changes Path
1.35 dev-util/astyle/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/ChangeLog?rev=1.35&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/ChangeLog?rev=1.35&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/ChangeLog?r1=1.34&r2=1.35
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog 22 Nov 2008 23:30:02 -0000 1.34
+++ ChangeLog 2 Dec 2008 22:49:28 -0000 1.35
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/astyle
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.34 2008/11/22 23:30:02 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.35 2008/12/02 22:49:28 ranger Exp $
+
+ 02 Dec 2008; Brent Baude <ranger@gentoo.org> astyle-1.22.ebuild:
+ Marking astyle-1.22 ~ppc64 for bug 220379
22 Nov 2008; Markus Meier <maekke@gentoo.org> astyle-1.22.ebuild:
amd64 stable, bug #220739
@@ -63,7 +66,7 @@
Dropped ppc-macos keyword, see you in prefix
14 Nov 2007; Robin H. Johnson <robbat2@gentoo.org> astyle-1.21.ebuild:
- Fix $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.34 2008/11/22 23:30:02 maekke Exp $ string.
+ Fix $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.35 2008/12/02 22:49:28 ranger Exp $ string.
*astyle-1.21 (07 Oct 2007)
1.11 dev-util/astyle/astyle-1.22.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild?r1=1.10&r2=1.11
Index: astyle-1.22.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- astyle-1.22.ebuild 22 Nov 2008 23:30:02 -0000 1.10
+++ astyle-1.22.ebuild 2 Dec 2008 22:49:28 -0000 1.11
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild,v 1.10 2008/11/22 23:30:02 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild,v 1.11 2008/12/02 22:49:28 ranger Exp $
inherit eutils java-pkg-opt-2 toolchain-funcs
@@ -10,7 +10,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="alpha amd64 ppc -ppc64 sparc x86"
+KEYWORDS="alpha amd64 ppc ~ppc64 sparc x86"
IUSE="debug java libs"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/astyle: ChangeLog astyle-1.22.ebuild
@ 2009-02-18 3:03 Steve Arnold (nerdboy)
0 siblings, 0 replies; 10+ messages in thread
From: Steve Arnold (nerdboy) @ 2009-02-18 3:03 UTC (permalink / raw
To: gentoo-commits
nerdboy 09/02/18 03:03:32
Modified: ChangeLog astyle-1.22.ebuild
Log:
updated DEPs to use jdk instead of jre (fixes bug #256610)
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Revision Changes Path
1.36 dev-util/astyle/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/ChangeLog?rev=1.36&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/ChangeLog?rev=1.36&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/ChangeLog?r1=1.35&r2=1.36
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog 2 Dec 2008 22:49:28 -0000 1.35
+++ ChangeLog 18 Feb 2009 03:03:32 -0000 1.36
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/astyle
-# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.35 2008/12/02 22:49:28 ranger Exp $
+# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.36 2009/02/18 03:03:32 nerdboy Exp $
+
+ 18 Feb 2009; Steve Arnold <nerdboy@gentoo.org> astyle-1.22.ebuild:
+ updated DEPs to use jdk instead of jre (fixes bug #256610)
02 Dec 2008; Brent Baude <ranger@gentoo.org> astyle-1.22.ebuild:
Marking astyle-1.22 ~ppc64 for bug 220379
@@ -66,7 +69,7 @@
Dropped ppc-macos keyword, see you in prefix
14 Nov 2007; Robin H. Johnson <robbat2@gentoo.org> astyle-1.21.ebuild:
- Fix $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.35 2008/12/02 22:49:28 ranger Exp $ string.
+ Fix $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/ChangeLog,v 1.36 2009/02/18 03:03:32 nerdboy Exp $ string.
*astyle-1.21 (07 Oct 2007)
1.12 dev-util/astyle/astyle-1.22.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild?r1=1.11&r2=1.12
Index: astyle-1.22.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- astyle-1.22.ebuild 2 Dec 2008 22:49:28 -0000 1.11
+++ astyle-1.22.ebuild 18 Feb 2009 03:03:32 -0000 1.12
@@ -1,6 +1,6 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild,v 1.11 2008/12/02 22:49:28 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/astyle/astyle-1.22.ebuild,v 1.12 2009/02/18 03:03:32 nerdboy Exp $
inherit eutils java-pkg-opt-2 toolchain-funcs
@@ -14,24 +14,12 @@
IUSE="debug java libs"
-RDEPEND="java? ( >=virtual/jre-1.6 )"
+RDEPEND="java? ( >=virtual/jdk-1.6 )"
-DEPEND="java? ( >=virtual/jre-1.6 )"
+DEPEND="java? ( >=virtual/jdk-1.6 )"
S=${WORKDIR}/${PN}
-pkg_setup() {
- if use java ; then
- java-pkg-opt-2_pkg_setup
-
- if use x86; then
- jvmarch=i386
- else
- jvmarch=${ARCH}
- fi
- fi
-}
-
src_unpack() {
unpack ${A}
cd "${S}"
@@ -48,10 +36,8 @@
src_compile() {
cd buildgcc
- local build_targets="all"
- use java && build_targets="${build_targets} javaall"
-
- emake CXX="$(tc-getCXX)" ${build_targets} || die "build failed"
+ emake CXX="$(tc-getCXX)" all $(use java && echo javaall) \
+ || die "build failed"
}
src_install() {
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2009-02-18 3:03 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-30 18:53 [gentoo-commits] gentoo-x86 commit in dev-util/astyle: ChangeLog astyle-1.22.ebuild Markus Rothe (corsair)
-- strict thread matches above, loose matches on Subject: below --
2009-02-18 3:03 Steve Arnold (nerdboy)
2008-12-02 22:49 Brent Baude (ranger)
2008-11-22 23:30 Markus Meier (maekke)
2008-10-18 15:20 Raul Porcel (armin76)
2008-10-18 3:04 Matti Bickel (mabi)
2008-10-17 12:27 Ferris McCormick (fmccor)
2008-10-16 6:34 Zac Medico (zmedico)
2008-10-16 6:02 Steve Arnold (nerdboy)
2008-05-12 6:03 Steve Arnold (nerdboy)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox