bicatali 09/11/04 06:25:15
Modified: ChangeLog
Added: ds9-5.7.ebuild
Removed: ds9-5.5.ebuild ds9-5.2.ebuild
Log:
Version bump. Updated all patches, added icon and fix for tcl-8.5 (bug #267558)
(Portage version: 2.2_rc48/cvs/Linux x86_64)
Revision Changes Path
1.20 sci-astronomy/ds9/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/ds9/ChangeLog?rev=1.20&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/ds9/ChangeLog?rev=1.20&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/ds9/ChangeLog?r1=1.19&r2=1.20
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/ds9/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog 25 Feb 2009 17:17:33 -0000 1.19
+++ ChangeLog 4 Nov 2009 06:25:14 -0000 1.20
@@ -1,6 +1,19 @@
# ChangeLog for sci-astronomy/ds9
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/ds9/ChangeLog,v 1.19 2009/02/25 17:17:33 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/ds9/ChangeLog,v 1.20 2009/11/04 06:25:14 bicatali Exp $
+
+*ds9-5.7 (04 Nov 2009)
+
+ 04 Nov 2009; Sébastien Fabbro <bicatali@g.o>
+ -files/ds9-5.1-gcc4.2-x86.patch, -ds9-5.2.ebuild,
+ -files/ds9-5.2-Makefile.patch, -files/ds9-5.2-gcc43.patch,
+ -files/ds9-5.4-gcc43.patch, -files/ds9-5.4-saotk.patch, -ds9-5.5.ebuild,
+ -files/ds9-5.5-main.patch, -files/ds9-5.5-makefile.patch,
+ -files/ds9-5.5-src.patch, +ds9-5.7.ebuild, +files/ds9-5.7-main.patch,
+ +files/ds9-5.7-makefile.patch, +files/ds9-5.7-saotk.patch,
+ +files/ds9-5.7-src.patch, +files/ds9-5.7-tcl85.patch, +files/ds9.png:
+ Version bump. Updated all patches, added icon and fix for tcl-8.5 (bug
+ #267558)
25 Feb 2009; Sébastien Fabbro <bicatali@g.o>
-files/ds9-5.4-fitsy.patch, -files/ds9-5.4-main.patch,
1.1 sci-astronomy/ds9/ds9-5.7.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/ds9/ds9-5.7.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/ds9/ds9-5.7.ebuild?rev=1.1&content-type=text/plain
Index: ds9-5.7.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/ds9/ds9-5.7.ebuild,v 1.1 2009/11/04 06:25:14 bicatali Exp $
EAPI=2
inherit eutils
DESCRIPTION="Data visualization application for astronomical FITS images"
HOMEPAGE="http://hea-www.harvard.edu/RD/ds9"
SRC_URI="http://hea-www.harvard.edu/saord/download/${PN}/source/${PN}.${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND="dev-tcltk/blt
>=dev-tcltk/tcllib-1.10
>=dev-tcltk/tclxml-3.1
dev-tcltk/tkcon
dev-tcltk/tkimg
dev-tcltk/tktable
x11-libs/libX11
x11-libs/libXau
x11-libs/libXdmcp
x11-libs/xpa
sci-astronomy/ast
sci-astronomy/funtools"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
S="${WORKDIR}/sao${PN}"
src_prepare() {
# some patches are adapted from fedora
# most of them are to use system libraries instead of bundled-ones
epatch "${FILESDIR}"/${PN}-5.4-htmlwidget.patch
epatch "${FILESDIR}"/${P}-makefile.patch
epatch "${FILESDIR}"/${P}-src.patch
epatch "${FILESDIR}"/${P}-main.patch
epatch "${FILESDIR}"/${P}-saotk.patch
epatch "${FILESDIR}"/${P}-tcl85.patch
# remove build-time dependency on etags (i.e. emacs or xemacs)
sed -i -e '/^all/s/TAGS//' saotk/*/Makefile || die "sed failed"
cp "${FILESDIR}"/make.gentoo make.include
use amd64 && \
export EXTRA_CPPFLAGS="-D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64"
export OPTS="${CXXFLAGS}"
}
src_install () {
dobin bin/ds9 || die "failed installing ds9 binary"
insinto /usr/share/${PN}
doins -r ds9/zipdir/zvfsmntpt/* || die
dodoc README acknowledgement || die "failed installing basic doc"
dosym ../../${PN}/doc /usr/share/doc/${PF}/html
doicon "${FILESDIR}"/${PN}.png
make_desktop_entry ds9 "SAOImage DS9"
}
|