diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /sci-biology/dialign2 | |
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-biology/dialign2')
-rw-r--r-- | sci-biology/dialign2/Manifest | 1 | ||||
-rw-r--r-- | sci-biology/dialign2/dialign2-2.2.1.ebuild | 35 | ||||
-rw-r--r-- | sci-biology/dialign2/metadata.xml | 8 |
3 files changed, 44 insertions, 0 deletions
diff --git a/sci-biology/dialign2/Manifest b/sci-biology/dialign2/Manifest new file mode 100644 index 000000000000..8f3f4080e56f --- /dev/null +++ b/sci-biology/dialign2/Manifest @@ -0,0 +1 @@ +DIST dialign-2.2.1-src.tar.gz 209015 SHA256 046361bb4ca6e4ab2ac5e634cfcd673f964a887006c09c1b8bd3310fac86f519 SHA512 eb51fbc8d81e384ac19e9cc957be233287a1d81a7f020d77ab16ee6943382bd4e81099c0c9028fcff130def62cdf19de59e9a9c08ea4cb67b9d8f1939eb3bc45 WHIRLPOOL a6c5cd25e8e1f3d3738ae0a7f9eaac2509a17400cc3492b9b0b5991c08df08b586c003bbaa3f92d22ae8dd13a66488e6acbbce0aca798cfd20938cb391a02f84 diff --git a/sci-biology/dialign2/dialign2-2.2.1.ebuild b/sci-biology/dialign2/dialign2-2.2.1.ebuild new file mode 100644 index 000000000000..58557729b529 --- /dev/null +++ b/sci-biology/dialign2/dialign2-2.2.1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit toolchain-funcs + +DESCRIPTION="Multiple sequence alignment" +HOMEPAGE="http://bibiserv.techfak.uni-bielefeld.de/dialign" +SRC_URI="http://bibiserv.techfak.uni-bielefeld.de/applications/dialign/resources/downloads/dialign-2.2.1-src.tar.gz" + +SLOT="0" +LICENSE="LGPL-2.1" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +S="${WORKDIR}"/dialign_package + +src_compile() { + emake -C src \ + CC="$(tc-getCC)" \ + CFLAGS="${CFLAGS} -I. -DCONS -c" +} + +src_install() { + dobin src/${PN}-2 + insinto /usr/share/${PN} + doins dialign2_dir/* + + cat >> "${T}"/80${PN} <<- EOF + DIALIGN2_DIR="${EPREFIX}/usr/share/${PN}" + EOF + doenvd "${T}"/80${PN} +} diff --git a/sci-biology/dialign2/metadata.xml b/sci-biology/dialign2/metadata.xml new file mode 100644 index 000000000000..7bc6ee8ea837 --- /dev/null +++ b/sci-biology/dialign2/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>jlec@gentoo.org</email> + <name>Justin Lecher</name> + </maintainer> +</pkgmetadata> |