Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 279438 - [science overlay] sci-chemistry/gabedit-2.2.3 (new ebuild)
Summary: [science overlay] sci-chemistry/gabedit-2.2.3 (new ebuild)
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: AMD64 Linux
: High enhancement (vote)
Assignee: Default Assignee for New Packages
URL: http://gabedit.sourceforge.net/
Whiteboard: [sci-overlay]
Keywords: EBUILD, InOverlay
Depends on:
Blocks:
 
Reported: 2009-07-28 07:18 UTC by maxb
Modified: 2010-12-08 08:41 UTC (History)
2 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
gabedit-2.2.0.ebuild (gabedit-2.2.0.ebuild,825 bytes, text/plain)
2009-07-28 07:21 UTC, maxb
Details

Note You need to log in before you can comment on or make changes to this bug.
Description maxb 2009-07-28 07:18:17 UTC
Hi all,

I wrote an ebuild for Gabedit, please find gabedit-2.2.0.ebuild.

Gabedit is a graphical user interface to computational chemistry packages like Gamess-US, Gaussian, Molcas, Molpro, MPQC, OpenMopac, PCGamess and Q-Chem. It can display a variety of calculation results including support for most major molecular file formats. The advanced "Molecule Builder" allows to rapidly sketch in molecules and examine them in 3D. Graphics can be exported to various formats, including animations.

It is thus a really comprehensive tool for theoretical chemists. You can find more information about gabedit at http://gabedit.sourceforge.net/

Reproducible: Always
Comment 1 maxb 2009-07-28 07:21:05 UTC
Created attachment 199417 [details]
gabedit-2.2.0.ebuild

please check, if correct
Comment 2 Justin Lecher (RETIRED) gentoo-dev 2009-07-28 10:40:34 UTC
Comment on attachment 199417 [details]
gabedit-2.2.0.ebuild

><HTML><HEAD/><BODY><PRE># Copyright 1999-2009 Gentoo Foundation
># Distributed under the terms of the GNU General Public License v2
># $Header: $
>
>inherit eutils
>
>MY_PN="Gabedit"
>MY_PV="220"
>DESCRIPTION="GTK-based free graphical user interface for computational chemistry packages"
>HOMEPAGE="http://gabedit.sourceforge.net/"
>SRC_URI="http://downloads.sourceforge.net/project/${PN}/${PN}/${MY_PN}%20${PV}/${MY_PN}Src${MY_PV}.tar.gz"

better use mirror://sourceforge ... see examples in the tree

>
>LICENSE="as-is"
>SLOT="0"
>KEYWORDS="~x86 ~amd64"

both arches tested?

>IUSE=""
>
>RDEPEND=""
>DEPEND="${RDEPEND}
>	&gt;=x11-libs/gtk+-2.14.7"
># are included in the source-code of gabedit:
>#	x11-libs/gl2ps
>#	x11-libs/gtkglarea

Then you have to remove it from the build system, as we want to have it separate.

>
>src_compile() {
>	cd ${MY_PN}Src${MY_PV}

Use ${S}, see devmanual for more infos

>	einfo "Building ${MY_PN} ..."
>	emake "all" || die "gabedit emake failed"
>}
>
>src_install() {
>	cd ${MY_PN}Src${MY_PV}
>	dobin gabedit || die "failed to install gabedit executable."
>}
></PRE></BODY></HTML>
Comment 3 Justin Lecher (RETIRED) gentoo-dev 2010-12-08 08:41:07 UTC
In the tree now, thanks for the contribution.