diff options
author | 2015-08-08 13:49:04 -0700 | |
---|---|---|
committer | 2015-08-08 17:38:18 -0700 | |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /sci-chemistry/mars | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
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 <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'sci-chemistry/mars')
-rw-r--r-- | sci-chemistry/mars/Manifest | 1 | ||||
-rw-r--r-- | sci-chemistry/mars/mars-1.2.ebuild | 44 | ||||
-rw-r--r-- | sci-chemistry/mars/metadata.xml | 8 |
3 files changed, 53 insertions, 0 deletions
diff --git a/sci-chemistry/mars/Manifest b/sci-chemistry/mars/Manifest new file mode 100644 index 000000000000..6266916bc856 --- /dev/null +++ b/sci-chemistry/mars/Manifest @@ -0,0 +1 @@ +DIST mars-1.2_linux.tar.gz 2058733 SHA256 c909aa781296d806f89c8d51d89b7345c3e94dd33fc8cc72554573a78ff21b2b SHA512 ba7ec4e94cf5918d22405022c75feabf3e5b345d96075eabf50eb24857101575bb41d15e5686822c2b2f25ba554aa7d7a2b65122dd47304939234a4a884ae4d2 WHIRLPOOL 3cbc59474d776cc79d3c392ae55ce6effe13ae088ff544afd3537daf157adc2c14e1074a38b937e197c87d262f37371dc7109d31f758d25c4c210847a5fb6a79 diff --git a/sci-chemistry/mars/mars-1.2.ebuild b/sci-chemistry/mars/mars-1.2.ebuild new file mode 100644 index 000000000000..3e3aa6a7948f --- /dev/null +++ b/sci-chemistry/mars/mars-1.2.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=4 + +MY_P="${P}_linux" + +DESCRIPTION="Robust automatic backbone assignment of proteins" +HOMEPAGE="http://www.mpibpc.mpg.de/groups/zweckstetter/_links/software_mars.htm" +SRC_URI="http://www.mpibpc.mpg.de/groups/zweckstetter/_software_files/_${PN}/${MY_P}.tar.gz" + +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +LICENSE="all-rights-reserved" +IUSE="examples" + +RDEPEND="sci-biology/psipred" +DEPEND="" + +RESTRICT=mirror + +S="${WORKDIR}"/${MY_P} + +QA_PREBUILT="opt/mars/*" + +src_install() { + dobin bin/runmars* + + exeinto /opt/${PN}/ + doexe bin/{${PN},calcJC-S2,runmars*,*.awk} *.awk + insinto /opt/${PN}/ + doins bin/*.{tab,txt} + if use examples; then + insinto /usr/share/${PN}/ + doins -r examples + fi + + cat >> "${T}"/23mars <<- EOF + MARSHOME="${EPREFIX}/opt/${PN}" + EOF + + doenvd "${T}"/23mars +} diff --git a/sci-chemistry/mars/metadata.xml b/sci-chemistry/mars/metadata.xml new file mode 100644 index 000000000000..ae9ec7c5f6a4 --- /dev/null +++ b/sci-chemistry/mars/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>sci-chemistry</herd> + <maintainer> + <email>jlec@gentoo.org</email> + </maintainer> +</pkgmetadata> |