summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2017-08-14 09:51:58 +0200
committerMichał Górny <mgorny@gentoo.org>2017-08-14 10:02:51 +0200
commit38919af969dc0bbfd3053c0efdc6821d26f68fd8 (patch)
tree03cda35d3af1fd1f8984e58a92e1cfe5f5577ed4 /sci-astronomy/skychart/skychart-3.10.2854.ebuild
parentsys-fs/dislocker: remove old versions, remove polarssl #618364 and newer ruby... (diff)
downloadgentoo-38919af969dc0bbfd3053c0efdc6821d26f68fd8.tar.gz
gentoo-38919af969dc0bbfd3053c0efdc6821d26f68fd8.tar.bz2
gentoo-38919af969dc0bbfd3053c0efdc6821d26f68fd8.zip
sci-astronomy/skychart: Remove last-rited pkg, #614860
Diffstat (limited to 'sci-astronomy/skychart/skychart-3.10.2854.ebuild')
-rw-r--r--sci-astronomy/skychart/skychart-3.10.2854.ebuild119
1 files changed, 0 insertions, 119 deletions
diff --git a/sci-astronomy/skychart/skychart-3.10.2854.ebuild b/sci-astronomy/skychart/skychart-3.10.2854.ebuild
deleted file mode 100644
index b90b51fdb2b6..000000000000
--- a/sci-astronomy/skychart/skychart-3.10.2854.ebuild
+++ /dev/null
@@ -1,119 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit toolchain-funcs gnome2-utils eutils
-
-DESCRIPTION="Planetarium for amauter astronomers"
-HOMEPAGE="http://www.ap-i.net/skychart/"
-
-MY_PV=${PV:0:4}-${PV:5:4}
-DATA_PKG="data_jpleph.tgz
- catalog_gcvs.tgz
- catalog_idx.tgz
- catalog_tycho2.tgz
- catalog_wds.tgz
- catalog_gcm.tgz
- catalog_gpn.tgz
- catalog_lbn.tgz
- catalog_ngc.tgz
- catalog_ocl.tgz
- catalog_pgc.tgz
- pictures_sac.tgz"
-SRC_URI="${DATA_SRC_URI}
- mirror://sourceforge/skychart/1-software/version_${PV:0:4}/skychart-${MY_PV}-src.tar.xz"
-for i in ${DATA_PKG} ; do
- SRC_URI="${SRC_URI} mirror://sourceforge/skychart/4-source_data/${i}"
-done
-unset i
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64"
-IUSE=""
-
-# pascal
-QA_FLAGS_IGNORED="usr/bin/cdcicon
- usr/bin/skychart
- usr/bin/varobs
- usr/bin/varobs_lpv_bulletin"
-
-CDEPEND="x11-libs/gtk+:2
- x11-libs/libX11"
-RDEPEND="${CDEPEND}
- x11-misc/xplanet"
-DEPEND="${CDEPEND}
- >=dev-lang/lazarus-1.0.4
- >=dev-lang/fpc-2.6.0"
-
-S=${WORKDIR}/${PN}-${MY_PV}-src
-
-src_unpack() {
- unpack skychart-${MY_PV}-src.tar.xz
-
- local i
- for i in ${DATA_PKG} ; do
- mkdir ${i} || die
- cd ${i} || die
- unpack ${i}
- cd ..
- done
-}
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-QA.patch
-}
-
-src_configure() {
- tc-export CC CXX
-
- ./configure \
- fpcbin="/usr/bin" \
- fpc="/usr/lib/fpc/$(fpc -iV)/source" \
- lazarus="/usr/share/lazarus" \
- prefix="/usr"
-}
-
-src_compile() {
- # this is ugly, but the build system sux, so don't bother me
- UNITDIR="/usr/share/lazarus/components/printers:/usr/share/lazarus/components/printers/unix" \
- INCDIR="/usr/share/lazarus/components/printers/unix:/usr/share/lazarus/components/printers" \
- emake -j1
-}
-
-src_install() {
- # use build system install rules on version bump
- # to check for new files
- dobin varobs/{varobs,varobs_lpv_bulletin}
- dobin skychart/cdcicon
- newbin skychart/cdc skychart
-
- dolib.so skychart/library/plan404/libplan404.so
- dolib.so skychart/library/getdss/libgetdss.so
- dolib.so skychart/library/wcs/libcdcwcs.so
-
- insinto /usr/share
- doins -r system_integration/Linux/share/{applications,appdata,icons,pixmaps}
-
- dodoc system_integration/Linux/share/doc/skychart/changelog
-
- insinto /usr/share/skychart
- doins -r tools/{cat,data}
- for i in ${DATA_PKG} ; do
- cd "${WORKDIR}/${i}" || die
- doins -r .
- done
-}
-
-pkg_preinst() {
- gnome2_icon_savelist
-}
-
-pkg_postinst() {
- gnome2_icon_cache_update
-}
-
-pkg_postrm() {
- gnome2_icon_cache_update
-}