diff options
author | Andrey Kislyuk <weaver@gentoo.org> | 2009-04-03 16:38:07 +0000 |
---|---|---|
committer | Andrey Kislyuk <weaver@gentoo.org> | 2009-04-03 16:38:07 +0000 |
commit | 5dd650807e67e18b70aaf6fcef563ee07d31aaa5 (patch) | |
tree | 7b32582b765a70702c96c439cb43923eac31cecd /sci-libs/libmuscle/libmuscle-9999.ebuild | |
parent | New package, dependency of sci-biology/mauve (diff) | |
download | gentoo-2-5dd650807e67e18b70aaf6fcef563ee07d31aaa5.tar.gz gentoo-2-5dd650807e67e18b70aaf6fcef563ee07d31aaa5.tar.bz2 gentoo-2-5dd650807e67e18b70aaf6fcef563ee07d31aaa5.zip |
New package, dependency of sci-biology/mauve
(Portage version: 2.2_rc20/cvs/Linux 2.6.26-gentoo-r4 x86_64)
Diffstat (limited to 'sci-libs/libmuscle/libmuscle-9999.ebuild')
-rw-r--r-- | sci-libs/libmuscle/libmuscle-9999.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/sci-libs/libmuscle/libmuscle-9999.ebuild b/sci-libs/libmuscle/libmuscle-9999.ebuild new file mode 100644 index 000000000000..ac501bc9c4d6 --- /dev/null +++ b/sci-libs/libmuscle/libmuscle-9999.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libmuscle/libmuscle-9999.ebuild,v 1.1 2009/04/03 16:38:07 weaver Exp $ + +EAPI="2" + +ESVN_REPO_URI="https://mauve.svn.sourceforge.net/svnroot/mauve/muscle/trunk" + +inherit subversion autotools + +DESCRIPTION="Library for sci-biology/mauve" +HOMEPAGE="http://gel.ahabs.wisc.edu/mauve/" +SRC_URI="" + +LICENSE="public-domain" +SLOT="0" +IUSE="doc" +KEYWORDS="" + +DEPEND="doc? ( app-doc/doxygen )" +RDEPEND="" + +S="${WORKDIR}" + +src_prepare() { + eautoreconf +} + +src_compile() { + emake -j1 || die +} + +src_install() { + emake install DESTDIR="${D}" || die +} |