mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
academic/treeview: Upgraded to version 0.5.
Yes, the previous version was 0.5.1, and YES, somehow 0.5 is newer. Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
parent
68e74dd70b
commit
054cb56659
8 changed files with 48 additions and 1841 deletions
|
@ -1,21 +1,21 @@
|
|||
TreeView is a simple program for displaying phylogenies. Some of its
|
||||
TreeView X is a simple program for displaying phylogenies. Some of its
|
||||
features include:
|
||||
|
||||
- reads many different tree file formats (including NEXUS, PHYLIP,
|
||||
- reads many different tree file formats (including NEXUS, PHYLIP,
|
||||
Hennig86, NONA, MEGA, and ClustalW/X)
|
||||
- supports standard the TrueType and Postscript fonts
|
||||
- supports native graphics file format for copying pictures into
|
||||
- supports native graphics file format for copying pictures into
|
||||
other applications, and for saving graphics files
|
||||
- print preview
|
||||
- can print multiple trees per page and/or one tree over more than
|
||||
- can print multiple trees per page and/or one tree over more than
|
||||
one page
|
||||
- has drag-and-drop facility for easy opening of files
|
||||
- Web-based online help
|
||||
- tree editor
|
||||
|
||||
For details and citation:
|
||||
Page, R. D. M. 1996. TREEVIEW: An application to display phylogenetic
|
||||
trees on personal computers. Computer Applications in the Biosciences
|
||||
12: 357-358.
|
||||
Page, R. D. M. 1996. TREEVIEW: An application to display phylogenetic
|
||||
trees on personal computers. Computer Applications in the Biosciences
|
||||
12: 357-358.
|
||||
|
||||
This requires wxGTK or wxPython, available at SlackBuilds.org.
|
||||
This requires either wxGTK or wxPython.
|
||||
|
|
|
@ -1 +1,3 @@
|
|||
Page, R. D. M. 1996. TREEVIEW: An application to display phylogenetic trees on personal computers. Computer Applications in the Biosciences 12: 357-358.
|
||||
Page, R. D. M. 1996. TREEVIEW: An application to display phylogenetic
|
||||
trees on personal computers. Computer Applications in the Biosciences
|
||||
12: 357-358
|
||||
|
|
|
@ -8,12 +8,12 @@
|
|||
|-----handy-ruler------------------------------------------------------|
|
||||
treeview: treeview (Program to display phylogenetic trees)
|
||||
treeview:
|
||||
treeview: TreeView provides a simple way to view the contents of a NEXUS,
|
||||
treeview: TreeView X provides a simple way to view the contents of a NEXUS,
|
||||
treeview: PHYLIP, Hennig86, Clustal, or other format tree file.
|
||||
treeview:
|
||||
treeview:
|
||||
treeview:
|
||||
treeview:
|
||||
treeview:
|
||||
treeview: References: /usr/doc/treeview-$VERSION/References
|
||||
treeview: Home: http://darwin.zoology.gla.ac.uk/~rpage/treeviewx/
|
||||
treeview: Home: http://code.google.com/p/treeviewx/
|
||||
treeview:
|
||||
treeview:
|
||||
treeview:
|
||||
treeview:
|
||||
|
|
|
@ -1,20 +1,29 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for treeview
|
||||
# Written by Petar Petrov, <ppetrov@paju.oulu.fi> and
|
||||
# hereby submitted to the public domain
|
||||
|
||||
# Based on the treeview PKGBUILD from Archlinux AUR
|
||||
# (http://aur.archlinux.org/packages.php?ID=19489).
|
||||
# PKGBUILD submitter is abhidg and PKGBUILD maintainer
|
||||
# is Stunts. Thank you!
|
||||
|
||||
# THIS SLACKBUILD IS DISTRIBUTETD IN THE HOPE OF BEING
|
||||
# USEFUL BUT WITHOUT ANY WARRANTY. THE AUTHOR IS _NOT_
|
||||
# RESPONSIBLE FOR ANY DAMAGE OR DATA LOSS CAUSED BY IT.
|
||||
# Copyright 2011 Petar Petrov, ppetrov@paju.oulu.fi
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
# permitted provided that the following conditions are met:
|
||||
#
|
||||
# 1. Redistributions of this script must retain the above copyright
|
||||
# notice, this list of conditions and the following disclaimer.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
|
||||
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
||||
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
||||
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=treeview
|
||||
VERSION=${VERSION:-0.5.1}
|
||||
VERSION=${VERSION:-0.5}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -62,13 +71,6 @@ find . \
|
|||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
|
||||
# The patch is from Archlinux AUR, as mentioned above.
|
||||
# For AUR it has been taken from Debian. Thank you both!
|
||||
patch -p1 < $CWD/treeviewx_0.5.1-7.diff
|
||||
for i in ./debian/patches/*.diff; do
|
||||
patch -p1 < $i
|
||||
done
|
||||
|
||||
# Disable SVG support. If you want it, you should build
|
||||
# wxGTK or wxPython including svg from contrib/src/svg
|
||||
# Then, of course comment the next line.
|
||||
|
@ -91,13 +93,11 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr
|
|||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
mkdir -p $PKG/usr/share/{applications,pixmaps}
|
||||
cp $CWD/tv.desktop $PKG/usr/share/applications
|
||||
cp $CWD/tv.png $PKG/usr/share/pixmaps
|
||||
cp $CWD/$PRGNAM.desktop $PKG/usr/share/applications
|
||||
cp $CWD/$PRGNAM.png $PKG/usr/share/pixmaps
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a \
|
||||
COPYING INSTALL \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a COPYING INSTALL $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/References > $PKG/usr/doc/$PRGNAM-$VERSION/References
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
[Desktop Entry]
|
||||
Categories=Education;
|
||||
Exec=tv
|
||||
Icon=tv.png
|
||||
Name=TreeView
|
||||
Icon=treeview
|
||||
Name=TreeView X
|
||||
StartupNotify=false
|
||||
Type=Application
|
||||
GenericName=
|
|
@ -1,10 +1,10 @@
|
|||
PRGNAM="treeview"
|
||||
VERSION="0.5.1"
|
||||
HOMEPAGE="http://taxonomy.zoology.gla.ac.uk/rod/treeview.html"
|
||||
DOWNLOAD="http://darwin.zoology.gla.ac.uk/%7Erpage/treeviewx/download/0.5/tv-0.5.1.tar.gz"
|
||||
MD5SUM="07e1ed8873c5f19ded7294668233bae1"
|
||||
VERSION="0.5"
|
||||
HOMEPAGE="http://code.google.com/p/treeviewx/"
|
||||
DOWNLOAD="http://treeviewx.googlecode.com/files/tv-0.5.tar.gz"
|
||||
MD5SUM="8059a306b723e6fb4d3befcf302b2920"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Petar Petrov"
|
||||
EMAIL="ppetrov@paju.oulu.fi"
|
||||
APPROVED="Niels Horn"
|
||||
APPROVED="rworkman"
|
||||
|
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue