diff options
author | Donnie Berkholz <spyderous@gentoo.org> | 2006-03-08 00:11:55 +0000 |
---|---|---|
committer | Donnie Berkholz <spyderous@gentoo.org> | 2006-03-08 00:11:55 +0000 |
commit | 34c326df918abbcd66471c67c8a8e84d8961aa6b (patch) | |
tree | c7624c41f1177511cf63215fdf101b689a6f05cf /sci-biology | |
parent | Version bump. (diff) | |
download | gentoo-2-34c326df918abbcd66471c67c8a8e84d8961aa6b.tar.gz gentoo-2-34c326df918abbcd66471c67c8a8e84d8961aa6b.tar.bz2 gentoo-2-34c326df918abbcd66471c67c8a8e84d8961aa6b.zip |
Bump to most recent modification date on upstream's unversioned tarball. Fixes problem with file-open dialog not finding files, among others.
(Portage version: 2.1_pre5-r2)
Diffstat (limited to 'sci-biology')
-rw-r--r-- | sci-biology/seaview/ChangeLog | 11 | ||||
-rw-r--r-- | sci-biology/seaview/files/digest-seaview-20060213 | 3 | ||||
-rw-r--r-- | sci-biology/seaview/seaview-20060213.ebuild | 31 |
3 files changed, 43 insertions, 2 deletions
diff --git a/sci-biology/seaview/ChangeLog b/sci-biology/seaview/ChangeLog index 14bd747e3087..42299581ebbf 100644 --- a/sci-biology/seaview/ChangeLog +++ b/sci-biology/seaview/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for sci-biology/seaview -# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/seaview/ChangeLog,v 1.6 2005/08/07 14:41:58 ribosome Exp $ +# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/seaview/ChangeLog,v 1.7 2006/03/08 00:11:54 spyderous Exp $ + +*seaview-20060213 (08 Mar 2006) + + 08 Mar 2006; Donnie Berkholz <spyderous@gentoo.org>; + +seaview-20060213.ebuild: + Bump to most recent modification date on upstream's unversioned tarball. + Fixes problem with file-open dialog not finding files, among others. *seaview-20050713 (07 Aug 2005) diff --git a/sci-biology/seaview/files/digest-seaview-20060213 b/sci-biology/seaview/files/digest-seaview-20060213 new file mode 100644 index 000000000000..331a45c8c96d --- /dev/null +++ b/sci-biology/seaview/files/digest-seaview-20060213 @@ -0,0 +1,3 @@ +MD5 f44a1ea1ef0922e97fb26cbfeb80ca9d seaview-20060213.tar.bz2 114995 +RMD160 c3409b5e06f15e983db4912812381ee5d5894ea9 seaview-20060213.tar.bz2 114995 +SHA256 be058f53f07cec46978f10ddad8794bbe79762cf089d18b5cbe7cb6ed15c54fc seaview-20060213.tar.bz2 114995 diff --git a/sci-biology/seaview/seaview-20060213.ebuild b/sci-biology/seaview/seaview-20060213.ebuild new file mode 100644 index 000000000000..2d9708b03041 --- /dev/null +++ b/sci-biology/seaview/seaview-20060213.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/seaview/seaview-20060213.ebuild,v 1.1 2006/03/08 00:11:54 spyderous Exp $ + +DESCRIPTION="A graphical multiple sequence alignment editor" +HOMEPAGE="http://pbil.univ-lyon1.fr/software/seaview.html" +SRC_URI="mirror://gentoo/${P}.tar.bz2" +LICENSE="public-domain" + +SLOT="0" +KEYWORDS="~x86 ~ppc ~amd64" +IUSE="" + +DEPEND="x11-libs/fltk + =media-libs/pdflib-6.0* + sci-biology/clustalw" + +src_compile() { + # Corrects location of libfltk. + CFLAGS="${CFLAGS} -c -I/usr/include/fltk-1.1" + sed -i -e "s%\"seaview.help\", %\"/usr/share/${PN}/seaview.help\", %" seaview.cxx || die + sed -i -e 's:-L$(FLTK)/lib:-L/usr/lib/fltk-1.1:' Makefile || die + + emake -e || die +} + +src_install() { + dobin seaview seaview_align.sh + insinto /usr/share/${PN} + doins protein.mase seaview.help +} |