From: "Christian Faulhammer (opfer)" <opfer@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/netbeans: ChangeLog netbeans-5.5.1-r1.ebuild
Date: Thu, 29 May 2008 16:14:32 +0000 [thread overview]
Message-ID: <E1K1kls-0006hp-Uo@stork.gentoo.org> (raw)
opfer 08/05/29 16:14:32
Modified: ChangeLog netbeans-5.5.1-r1.ebuild
Log:
exchange USE=c++ with USE=cxx
(Portage version: 2.1.4.4)
Revision Changes Path
1.82 dev-util/netbeans/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/netbeans/ChangeLog?rev=1.82&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/netbeans/ChangeLog?rev=1.82&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/netbeans/ChangeLog?r1=1.81&r2=1.82
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/netbeans/ChangeLog,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- ChangeLog 5 May 2008 00:35:00 -0000 1.81
+++ ChangeLog 29 May 2008 16:14:32 -0000 1.82
@@ -1,6 +1,10 @@
# ChangeLog for dev-util/netbeans
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/netbeans/ChangeLog,v 1.81 2008/05/05 00:35:00 betelgeuse Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/netbeans/ChangeLog,v 1.82 2008/05/29 16:14:32 opfer Exp $
+
+ 29 May 2008; Christian Faulhammer <opfer@gentoo.org>
+ netbeans-5.5.1-r1.ebuild:
+ exchange USE=c++ with USE=cxx
05 May 2008; Petteri Räty <betelgeuse@gentoo.org>
netbeans-5.5.1-r1.ebuild:
1.4 dev-util/netbeans/netbeans-5.5.1-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/netbeans/netbeans-5.5.1-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/netbeans/netbeans-5.5.1-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/netbeans/netbeans-5.5.1-r1.ebuild?r1=1.3&r2=1.4
Index: netbeans-5.5.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/netbeans/netbeans-5.5.1-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- netbeans-5.5.1-r1.ebuild 5 May 2008 00:35:00 -0000 1.3
+++ netbeans-5.5.1-r1.ebuild 29 May 2008 16:14:32 -0000 1.4
@@ -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/netbeans/netbeans-5.5.1-r1.ebuild,v 1.3 2008/05/05 00:35:00 betelgeuse Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/netbeans/netbeans-5.5.1-r1.ebuild,v 1.4 2008/05/29 16:14:32 opfer Exp $
EAPI=1
JAVA_PKG_IUSE="doc"
@@ -16,11 +16,11 @@
FILE_IDE="${PN}-${MY_PV}-ide_sources.tar.bz2"
FILE_CPP="${PN}-c++-${MY_PV}-linux.bin"
SRC_URI="http://dlc.sun.com/${PN}/download/${MY_PV}/fcs/200704122300/${FILE_IDE}
- c++? ( http://dlc.sun.com/${PN}/download/${MY_PV}/cnd/mlfcs/070610/${FILE_CPP} )"
+ cxx? ( http://dlc.sun.com/${PN}/download/${MY_PV}/cnd/mlfcs/070610/${FILE_CPP} )"
LICENSE="CDDL"
SLOT="5.5"
KEYWORDS="~amd64 ~x86 ~x86-fbsd"
-IUSE="c++ debug"
+IUSE="cxx debug"
COMMON_DEPEND="
>=dev-java/commons-logging-1.0.4
@@ -99,7 +99,7 @@
src_unpack () {
unpack "${FILE_IDE}"
- use c++ && unpack_extra ${FILE_CPP} cpp
+ use cxx && unpack_extra ${FILE_CPP} cpp
cd "${S}"
find -name "*.jar" | grep "/test/" | xargs rm -v
find -name "*.class" -delete
@@ -176,7 +176,7 @@
cd ${BUILDDESTINATION} || die
doins -r *
- if use c++ ; then
+ if use cxx ; then
install_extra cpp
echo "cnd1" >> ${BUILDDESTINATION}/etc/netbeans.clusters
fi
--
gentoo-commits@lists.gentoo.org mailing list
next reply other threads:[~2008-05-29 16:14 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-05-29 16:14 Christian Faulhammer (opfer) [this message]
-- strict thread matches above, loose matches on Subject: below --
2009-12-28 14:56 [gentoo-commits] gentoo-x86 commit in dev-util/netbeans: ChangeLog netbeans-5.5.1-r1.ebuild Petteri Raty (betelgeuse)
2009-03-24 19:24 Petteri Raty (betelgeuse)
2008-09-13 18:33 Petteri Raty (betelgeuse)
2008-09-12 21:37 Petteri Raty (betelgeuse)
2008-05-30 17:28 Kenneth Prugh (ken69267)
2008-05-30 14:22 Christian Faulhammer (opfer)
2008-05-05 0:35 Petteri Raty (betelgeuse)
2008-05-04 12:31 Petteri Raty (betelgeuse)
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=E1K1kls-0006hp-Uo@stork.gentoo.org \
--to=opfer@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