diff options
author | Justin Lecher <jlec@gentoo.org> | 2012-03-21 13:47:43 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2012-03-21 13:47:43 +0000 |
commit | bd7bb5cb489ab4947250e1e61b517d52d1561c81 (patch) | |
tree | 6e8918757bfeddfd4ad6d9e40ed95b0031b48b18 /sci-chemistry | |
parent | New addition, written by me (diff) | |
download | historical-bd7bb5cb489ab4947250e1e61b517d52d1561c81.tar.gz historical-bd7bb5cb489ab4947250e1e61b517d52d1561c81.tar.bz2 historical-bd7bb5cb489ab4947250e1e61b517d52d1561c81.zip |
New addition, written by me
Package-Manager: portage-2.2.0_alpha93/cvs/Linux x86_64
Diffstat (limited to 'sci-chemistry')
-rw-r--r-- | sci-chemistry/pdbmat/ChangeLog | 10 | ||||
-rw-r--r-- | sci-chemistry/pdbmat/Manifest | 15 | ||||
-rw-r--r-- | sci-chemistry/pdbmat/files/CMakeLists.txt | 14 | ||||
-rw-r--r-- | sci-chemistry/pdbmat/metadata.xml | 34 | ||||
-rw-r--r-- | sci-chemistry/pdbmat/pdbmat-3.89.ebuild | 29 |
5 files changed, 102 insertions, 0 deletions
diff --git a/sci-chemistry/pdbmat/ChangeLog b/sci-chemistry/pdbmat/ChangeLog new file mode 100644 index 000000000000..25dccd8a23e2 --- /dev/null +++ b/sci-chemistry/pdbmat/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for sci-chemistry/pdbmat +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/pdbmat/ChangeLog,v 1.1 2012/03/21 13:47:43 jlec Exp $ + +*pdbmat-3.89 (21 Mar 2012) + + 21 Mar 2012; Justin Lecher <jlec@gentoo.org> +pdbmat-3.89.ebuild, + +files/CMakeLists.txt, +metadata.xml: + New addition, written by me + diff --git a/sci-chemistry/pdbmat/Manifest b/sci-chemistry/pdbmat/Manifest new file mode 100644 index 000000000000..024ab7ac2362 --- /dev/null +++ b/sci-chemistry/pdbmat/Manifest @@ -0,0 +1,15 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA512 + +AUX CMakeLists.txt 414 RMD160 797f3a4ceae9a60fe54d0a7065316d8dec32ee94 SHA1 a522bec6210a4904fd98521561576c61a421f922 SHA256 3892dbed23bf2283ce369dc5a2d89c0eded875d615704532fb038ccbe2c90436 +DIST pdbmat-3.89.tar.gz 124727 RMD160 8fa61884a89c8c615d1251ff9c337eaf81a70531 SHA1 e8784d36bd9f74b8605c6d9ec950195253850338 SHA256 98f75acd3da3f172213de0688825abad8b3a59c516b5b4ac411a494f6d355f72 +EBUILD pdbmat-3.89.ebuild 734 RMD160 b6562187b1576d7dfb840d50a9dd3122a6cd6a8f SHA1 1fb464e5c55bf562e0f43d319dee9c1caebe5ebf SHA256 296ca135d2632783681b3738f5a43fece38de46d79454fc6905963f96ab9329e +MISC ChangeLog 378 RMD160 9da989032a083852845e9a92e9f3488585cf5325 SHA1 459452dac79a44aed808bec2ca6bf567f8e991be SHA256 97fc4b7eef78213aca72bb74e8fec9965497e2c6eba20da2ec97e5f37676df7d +MISC metadata.xml 1269 RMD160 f0707ce6672b7a1961a99b89e5108373deac15d2 SHA1 dab202a55f19eef86ef3a1207a134a52ab5d337c SHA256 cb014b00d93749e2b8ec7706c70c9286fa2bac3514b1592aa5132cda1a3407b1 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v2.0.18 (GNU/Linux) + +iEYEAREKAAYFAk9p3AQACgkQgAnW8HDreRYv5gCfTsPtKf3cLA/8spQFkStCigvZ +ifEAn2ZwQZcJ1CfEW/Av3KR91fmDI2J1 +=hQCG +-----END PGP SIGNATURE----- diff --git a/sci-chemistry/pdbmat/files/CMakeLists.txt b/sci-chemistry/pdbmat/files/CMakeLists.txt new file mode 100644 index 000000000000..2f1937d84b3f --- /dev/null +++ b/sci-chemistry/pdbmat/files/CMakeLists.txt @@ -0,0 +1,14 @@ +cmake_minimum_required (VERSION 2.6) +project (PDBMAT Fortran) + +option (EXAMPLES "Instal additional example files" OFF) + +add_executable(diagstd diagstd.f) +add_executable(pdbmat pdbmat.f) + +install (TARGETS diagstd pdbmat DESTINATION bin) +install (FILES diagstd.README pdbmat.README DESTINATION share/doc/pdbmat) + +if ( EXAMPLES ) + install (DIRECTORY ../Try_ENM2011 DESTINATION share/pdbmat/examples) +endif (EXAMPLES) diff --git a/sci-chemistry/pdbmat/metadata.xml b/sci-chemistry/pdbmat/metadata.xml new file mode 100644 index 000000000000..110c57fb33b9 --- /dev/null +++ b/sci-chemistry/pdbmat/metadata.xml @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<!-- +$Header: /var/cvsroot/gentoo-x86/sci-chemistry/pdbmat/metadata.xml,v 1.1 2012/03/21 13:47:43 jlec Exp $ + +This is the example metadata file. +The root element of this file is <pkgmetadata>. Within this element a +number of subelements are allowed: herd, maintainer, and +longdescription. herd is a required subelement. + +For a full description look at: +http://www.gentoo.org/proj/en/devrel/handbook/handbook.xml?part=2&chap=4 + + +Before committing, please remove the comments from this file. They are +not relevant for general metadata.xml files. +--> +<pkgmetadata> + <!-- <herd>some-herd</herd> --> + <maintainer> + <email>@gentoo.org</email> + <!-- <description>Description of the maintainership</description> --> + </maintainer> + <!-- <longdescription>Long description of the package</longdescription> --> + <!-- +<use> + <flag name='flag'>Description of how USE='flag' affects this package</flag> + <flag name='userland_GNU'>Description of how USERLAND='GNU' affects this + package</flag> + <flag name='aspell'>Uses <pkg>app-text/aspell</pkg> for spell checking. + Requires an installed dictionary from <cat>app-dicts</cat></flag> +</use> +--> +</pkgmetadata> diff --git a/sci-chemistry/pdbmat/pdbmat-3.89.ebuild b/sci-chemistry/pdbmat/pdbmat-3.89.ebuild new file mode 100644 index 000000000000..598ca05c37c7 --- /dev/null +++ b/sci-chemistry/pdbmat/pdbmat-3.89.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/pdbmat/pdbmat-3.89.ebuild,v 1.1 2012/03/21 13:47:43 jlec Exp $ + +EAPI=4 + +inherit cmake-utils fortran-2 + +DESCRIPTION="Calculate Tirion's model from pdb structures" +HOMEPAGE="http://ecole.modelisation.free.fr/modes.html" +SRC_URI="http://ecole.modelisation.free.fr/enm2011.tar.gz -> ${P}.tar.gz" + +SLOT="0" +LICENSE="as-is" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="examples" + +S="${WORKDIR}"/Source_ENM2011 + +src_prepare() { + cp "${FILESDIR}"/CMakeLists.txt . || die +} + +src_configure() { + mycmakeargs=( + $(cmake-utils_use examples EXAMPLES) + ) + cmake-utils_src_configure +} |