From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- sci-chemistry/xdsgui/Manifest | 2 ++ sci-chemistry/xdsgui/metadata.xml | 15 ++++++++++ sci-chemistry/xdsgui/xdsgui-0_p130530.ebuild | 42 ++++++++++++++++++++++++++++ 3 files changed, 59 insertions(+) create mode 100644 sci-chemistry/xdsgui/Manifest create mode 100644 sci-chemistry/xdsgui/metadata.xml create mode 100644 sci-chemistry/xdsgui/xdsgui-0_p130530.ebuild (limited to 'sci-chemistry/xdsgui') diff --git a/sci-chemistry/xdsgui/Manifest b/sci-chemistry/xdsgui/Manifest new file mode 100644 index 000000000000..1156cfea39a4 --- /dev/null +++ b/sci-chemistry/xdsgui/Manifest @@ -0,0 +1,2 @@ +DIST xdsgui-0_p130530.32 10372936 SHA256 f9af76a1e4ef96ac5930a0f51f0052ecf02b0a2496ce832403c31b216a033ebd SHA512 f9ef5d914afb8e6a64f936508fee2e84f4e579898726774dc995e920e5a953341c48022e8078eb60f9a2a288190765949da03f394f221a48916d12dc26a898b1 WHIRLPOOL d7792edfcd273c37569c303e6c4f5acf9d832d4bc4f67048a063a25894e375f1dc1b612f879edc14e3c7fdc6ddda84f25990cb8a3d3fbea35f1784835a3febc5 +DIST xdsgui-0_p130530.64 12220790 SHA256 333de2bc7dd88051a43a912dc6e0903bdc17d0d32c16f8c175fa9ec27289f76a SHA512 bd54ddacf44a9156306354249c5b1b61deb9b1f9ebdad879b98d01354ccb51ab60c183e3c58c2be2bb1a42b55b96cea470ee70538110f0fc1b9e3b46ffce3d40 WHIRLPOOL 1002646b1e22cfad35f81287602c496d8d5c323cf9285604ceb9f3717e2a2b1416e9d1f9ef730e0284d972e4f090752a0d41b9bfcefa403a8d746bbc84b3feb2 diff --git a/sci-chemistry/xdsgui/metadata.xml b/sci-chemistry/xdsgui/metadata.xml new file mode 100644 index 000000000000..f80752c40789 --- /dev/null +++ b/sci-chemistry/xdsgui/metadata.xml @@ -0,0 +1,15 @@ + + + + sci-chemistry + + jlec@gentoo.org + + +XDSgui is a GUI (graphical user interface) for XDS that is supposed to help both +novice and experienced users. It graphically displays the ASCII and cbf files +that XDS writes, and can run useful shell commands with a simple mouse click. +The design goal of the program is to enable XDS data processing without the +commandline, and to supply additional graphical information. + + diff --git a/sci-chemistry/xdsgui/xdsgui-0_p130530.ebuild b/sci-chemistry/xdsgui/xdsgui-0_p130530.ebuild new file mode 100644 index 000000000000..0922da53b023 --- /dev/null +++ b/sci-chemistry/xdsgui/xdsgui-0_p130530.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +DESCRIPTION="GUI for XDS that is supposed to help both novice and experienced users" +HOMEPAGE="http://strucbio.biologie.uni-konstanz.de/xdswiki/index.php/XdsGUI" +SRC_URI=" + amd64? ( ftp://turn5.biologie.uni-konstanz.de/pub/xdsGUI.rhel6.64 -> ${P}.64 ) + x86? ( ftp://turn5.biologie.uni-konstanz.de/pub/xdsGUI.rhel6.32 -> ${P}.32 )" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="-* ~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND=" + dev-qt/qtcore:4 + dev-qt/qtgui:4 + dev-util/xxdiff + sci-chemistry/xds-bin + sci-chemistry/xdsstat-bin + sci-visualization/xds-viewer" +DEPEND="" + +S="${WORKDIR}" + +QA_PREBUILT="opt/bin/*" + +src_unpack() { + if use amd64; then + cp -rf "${DISTDIR}"/${P}.64 ${PN} || die + elif use x86; then + cp -rf "${DISTDIR}"/${P}.32 ${PN} || die + fi +} + +src_install() { + exeinto /opt/bin + doexe ${PN} +} -- cgit v1.2.3-65-gdbad