public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-util/codeblocks: ChangeLog codeblocks-8.02.ebuild
@ 2008-06-01  0:12 Jurek Bartuszek (jurek)
  0 siblings, 0 replies; 2+ messages in thread
From: Jurek Bartuszek (jurek) @ 2008-06-01  0:12 UTC (permalink / raw
  To: gentoo-commits

jurek       08/06/01 00:12:46

  Modified:             ChangeLog
  Added:                codeblocks-8.02.ebuild
  Log:
  dev-util/codeblocks: version bump (bug #211865)
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.13                 dev-util/codeblocks/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/codeblocks/ChangeLog?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/codeblocks/ChangeLog?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/codeblocks/ChangeLog?r1=1.12&r2=1.13

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/codeblocks/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog	30 Jan 2008 23:39:21 -0000	1.12
+++ ChangeLog	1 Jun 2008 00:12:46 -0000	1.13
@@ -1,6 +1,12 @@
 # ChangeLog for dev-util/codeblocks
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/codeblocks/ChangeLog,v 1.12 2008/01/30 23:39:21 jurek Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/codeblocks/ChangeLog,v 1.13 2008/06/01 00:12:46 jurek Exp $
+
+*codeblocks-8.02 (01 Jun 2008)
+
+  01 Jun 2008; Jurek Bartuszek <jurek@gentoo.org> +files/8.02-version.patch,
+  +codeblocks-8.02.ebuild:
+  Version bump (bug #211865)
 
   30 Jan 2008; Jurek Bartuszek <jurek@gentoo.org>
   codeblocks-1.0_pre20071215.ebuild:



1.1                  dev-util/codeblocks/codeblocks-8.02.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/codeblocks/codeblocks-8.02.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/codeblocks/codeblocks-8.02.ebuild?rev=1.1&content-type=text/plain

Index: codeblocks-8.02.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/codeblocks/codeblocks-8.02.ebuild,v 1.1 2008/06/01 00:12:46 jurek Exp $

inherit autotools wxwidgets flag-o-matic eutils

WX_GTK_VER="2.8"

DESCRIPTION="free cross-platform C/C++ IDE"
HOMEPAGE="http://www.codeblocks.org/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
SRC_URI="mirror://sourceforge/codeblocks/${P}-src.tar.bz2"

IUSE="contrib debug pch static unicode"

RDEPEND="=x11-libs/wxGTK-${WX_GTK_VER}*
		x11-libs/gtk+"

DEPEND="${RDEPEND}
	>=sys-devel/autoconf-2.5.0
	>=sys-devel/automake-1.7
	>=sys-devel/libtool-1.4
	app-arch/zip"

pkg_setup() {
	if use unicode; then
		need-wxwidgets "unicode"
	else
		need-wxwidgets "gtk2"
	fi
}

src_unpack() {
	unpack ${A}
	epatch "${FILESDIR}/${PV}-version.patch"
	#epatch "${FILESDIR}/${PV}-install-plugins.patch"
	cd "${S}"
	find src/plugins -name Makefile.am -exec \
		sed -i -e 's#^libdir#pluginsdir#' \
			   -e 's#^lib_LTLIBRARIES#plugins_LTLIBRARIES#' \
		'{}' \;
	# This one's buggy
	sed -i -e 's#^plugins_LTLIBRARIES#lib_LTLIBRARIES#' \
		src/plugins/contrib/wxSmith/Makefile.am

	eautoreconf || die "autoreconf failed"
#	./bootstrap || die "boostrap failed"
}

src_compile() {
	# C::B is picky on CXXFLAG -fomit-frame-pointer
	# (project-wizard crash, instability ...)
	filter-flags -fomit-frame-pointer
	append-flags -fno-strict-aliasing

	cd "${S}"
	local myconf="$(use_enable pch)"
#			$(use_enable autosave) \
#			$(use_enable class-wizard) \
#			$(use_enable code-completion) \
#			$(use_enable compiler) \
#			$(use_enable debuger) \
#			$(use_enable mime-handler) \
#			$(use_enable open-files-list) \
#			
#			$(use_enable projects-importer) \
#			$(use_enable source-formatter) \
#			$(use_enable todo) \
#			$(use_enable xpmanifest)

	if use contrib; then
		myconf="${myconf} --with-contrib-plugins=all"
	fi
	econf	--with-wx-config="${WX_CONFIG}" \
			--enable-dependency-tracking \
			$(use_enable unicode) \
			$(use_enable debug) \
			$(use_enable static) \
			${myconf} || die "Died in action: econf ..."
	emake || die "Died in action: make ..."
}

src_install() {
	einstall || die "Install failed"
}



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-util/codeblocks: ChangeLog codeblocks-8.02.ebuild
@ 2009-02-12  4:42 Ryan Hill (dirtyepic)
  0 siblings, 0 replies; 2+ messages in thread
From: Ryan Hill (dirtyepic) @ 2009-02-12  4:42 UTC (permalink / raw
  To: gentoo-commits

dirtyepic    09/02/12 04:42:37

  Modified:             ChangeLog codeblocks-8.02.ebuild
  Log:
  Fix building with gcc-4.3 for bug #256218. Thanks to Nick S. Novikov for
  the patch.
  (Portage version: 2.2_rc23/cvs/Linux x86_64)

Revision  Changes    Path
1.14                 dev-util/codeblocks/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/codeblocks/ChangeLog?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/codeblocks/ChangeLog?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/codeblocks/ChangeLog?r1=1.13&r2=1.14

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/codeblocks/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog	1 Jun 2008 00:12:46 -0000	1.13
+++ ChangeLog	12 Feb 2009 04:42:37 -0000	1.14
@@ -1,6 +1,11 @@
 # ChangeLog for dev-util/codeblocks
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/codeblocks/ChangeLog,v 1.13 2008/06/01 00:12:46 jurek Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/codeblocks/ChangeLog,v 1.14 2009/02/12 04:42:37 dirtyepic Exp $
+
+  12 Feb 2009; Ryan Hill <dirtyepic@gentoo.org>
+  +files/codeblocks-8.02-gcc43.patch, codeblocks-8.02.ebuild:
+  Fix building with gcc-4.3 for bug #256218. Thanks to Nick S. Novikov for
+  the patch.
 
 *codeblocks-8.02 (01 Jun 2008)
 



1.3                  dev-util/codeblocks/codeblocks-8.02.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/codeblocks/codeblocks-8.02.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/codeblocks/codeblocks-8.02.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/codeblocks/codeblocks-8.02.ebuild?r1=1.2&r2=1.3

Index: codeblocks-8.02.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/codeblocks/codeblocks-8.02.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- codeblocks-8.02.ebuild	1 Jun 2008 03:34:09 -0000	1.2
+++ codeblocks-8.02.ebuild	12 Feb 2009 04:42:37 -0000	1.3
@@ -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/codeblocks/codeblocks-8.02.ebuild,v 1.2 2008/06/01 03:34:09 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/codeblocks/codeblocks-8.02.ebuild,v 1.3 2009/02/12 04:42:37 dirtyepic Exp $
 
 inherit autotools wxwidgets flag-o-matic eutils
 
@@ -35,6 +35,7 @@
 src_unpack() {
 	unpack ${A}
 	epatch "${FILESDIR}/${PV}-version.patch"
+	epatch "${FILESDIR}"/${P}-gcc43.patch
 	#epatch "${FILESDIR}/${PV}-install-plugins.patch"
 	cd "${S}"
 	find src/plugins -name Makefile.am -exec \






^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-02-12  4:42 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-12  4:42 [gentoo-commits] gentoo-x86 commit in dev-util/codeblocks: ChangeLog codeblocks-8.02.ebuild Ryan Hill (dirtyepic)
  -- strict thread matches above, loose matches on Subject: below --
2008-06-01  0:12 Jurek Bartuszek (jurek)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox