From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id BE1C91381F3 for ; Thu, 29 Nov 2012 11:46:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 711D721C047; Thu, 29 Nov 2012 11:46:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DD11221C047 for ; Thu, 29 Nov 2012 11:46:18 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D6E1733DB04 for ; Thu, 29 Nov 2012 11:46:17 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2264) id 9466420C65; Thu, 29 Nov 2012 11:46:16 +0000 (UTC) From: "Justin Lecher (jlec)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, jlec@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in sci-chemistry/gabedit: gabedit-2.4.5.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: gabedit-2.4.5.ebuild ChangeLog X-VCS-Directories: sci-chemistry/gabedit X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20121129114616.9466420C65@flycatcher.gentoo.org> Date: Thu, 29 Nov 2012 11:46:16 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 940b3deb-9898-4e6b-92be-cd91190c77e7 X-Archives-Hash: d00c8112fbd7e1ce48b7099b61cc8081 jlec 12/11/29 11:46:16 Modified: ChangeLog Added: gabedit-2.4.5.ebuild Log: sci-chemistry/gabedit: Version Bump, #444155 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 70EB7916) Revision Changes Path 1.18 sci-chemistry/gabedit/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/gabedit/ChangeLog?rev=1.18&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/gabedit/ChangeLog?rev=1.18&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/gabedit/ChangeLog?r1=1.17&r2=1.18 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/gabedit/ChangeLog,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- ChangeLog 2 Jul 2012 09:07:32 -0000 1.17 +++ ChangeLog 29 Nov 2012 11:46:16 -0000 1.18 @@ -1,6 +1,11 @@ # ChangeLog for sci-chemistry/gabedit # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/gabedit/ChangeLog,v 1.17 2012/07/02 09:07:32 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/gabedit/ChangeLog,v 1.18 2012/11/29 11:46:16 jlec Exp $ + +*gabedit-2.4.5 (29 Nov 2012) + + 29 Nov 2012; Justin Lecher +gabedit-2.4.5.ebuild: + Version Bump, #444155 *gabedit-2.4.3 (02 Jul 2012) 1.1 sci-chemistry/gabedit/gabedit-2.4.5.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/gabedit/gabedit-2.4.5.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/gabedit/gabedit-2.4.5.ebuild?rev=1.1&content-type=text/plain Index: gabedit-2.4.5.ebuild =================================================================== # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sci-chemistry/gabedit/gabedit-2.4.5.ebuild,v 1.1 2012/11/29 11:46:16 jlec Exp $ EAPI=4 inherit eutils toolchain-funcs versionator MY_PN=${PN/g/G} MY_PV=$(delete_all_version_separators) MY_P="${MY_PN}Src${MY_PV}" DESCRIPTION="GUI for computational chemistry packages" HOMEPAGE="http://gabedit.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" SLOT="0" LICENSE="as-is" KEYWORDS="~amd64 ~x86" IUSE="openmp" RDEPEND=" dev-libs/glib:2 x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:2 x11-libs/gtkglext x11-libs/gl2ps x11-libs/pango virtual/opengl virtual/glu" DEPEND="${RDEPEND} virtual/pkgconfig" S=${WORKDIR}/${MY_P} src_prepare() { sed -i "/rmdir tmp/d" "${S}"/Makefile || die sed \ -e "/GTK_DISABLE_DEPRECATED/s:define:undef:g" \ -i "${S}/Config.h" || die sed -e 's:-g::g' -i Makefile || die cp "${FILESDIR}"/CONFIG.Gentoo "${S}"/CONFIG if use openmp && tc-has-openmp; then cat <<- EOF >> "${S}/CONFIG" OMPLIB=-fopenmp OMPCFLAGS=-DENABLE_OMP -fopenmp EOF fi echo "COMMONCFLAGS = ${CFLAGS} -DENABLE_DEPRECATED \$(OMPCFLAGS) \$(DRAWGEOMGL)" >> CONFIG tc-export CC } src_compile() { emake clean emake external_gl2ps=1 } src_install() { local size dobin ${PN} dodoc ChangeLog dohtml -r html/* for size in 16 24 32 48; do doicon -s ${size} icons/Gabedit${size}.* done }