summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCtibor Brančík <ctibor@brancik.cz>2020-01-08 19:45:32 +0100
committerCtibor Brančík <ctibor@brancik.cz>2020-01-08 19:45:32 +0100
commit3f6b4ff4c62055a311275ad8a561084daaadaf8d (patch)
treee9018c20470be33c075c2480cc0f384bca40ea01
parentacf6b1d88218a0592c35672f03ea005a120033cb (diff)
downloadbrancik-overlay-3f6b4ff4c62055a311275ad8a561084daaadaf8d.tar.gz
brancik-overlay-3f6b4ff4c62055a311275ad8a561084daaadaf8d.tar.bz2
Remove sci-astronomy/ccd, obsolete, depends on Qt4
-rw-r--r--sci-astronomy/ccd/Manifest1
-rw-r--r--sci-astronomy/ccd/ccd-1.2.10.ebuild51
-rw-r--r--sci-astronomy/ccd/files/ccd-1.2.9-fix_helper_scripts_paths.patch108
-rw-r--r--sci-astronomy/ccd/metadata.xml22
4 files changed, 0 insertions, 182 deletions
diff --git a/sci-astronomy/ccd/Manifest b/sci-astronomy/ccd/Manifest
deleted file mode 100644
index 1729812..0000000
--- a/sci-astronomy/ccd/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST ccd-1.2.10.tar.bz2 114302 SHA256 dc9eb9fa51eba11c50752b4299368490c9629b30080d83c63d8e5a8d810c21b9 SHA512 6da61ab7f2775a38ff0683b96cf0dfcb149cd126827cfa46c6e39af5ddb456e5c5daf316e7e74509e80e29e6c394593a34bd9397b5a70871ae7afe5d01306bd7 WHIRLPOOL 3622d5d00d937bc3772df1f7fda78de50acef881f763c24b6f7abdb46511e27c3100f7130b67fa411e523f5039230a80039097bd0cb655642dfacf8d11a1aabf
diff --git a/sci-astronomy/ccd/ccd-1.2.10.ebuild b/sci-astronomy/ccd/ccd-1.2.10.ebuild
deleted file mode 100644
index c7a19c4..0000000
--- a/sci-astronomy/ccd/ccd-1.2.10.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/indilib/indilib-0.7.2.ebuild,v 1.6 2011/10/30 15:47:38 ssuominen Exp $
-
-EAPI=5
-
-inherit qt4-r2
-
-DESCRIPTION="Simple astronomical CCD controller"
-HOMEPAGE="http://sourceforge.net/projects/cccd/"
-SRC_URI="http://downloads.sourceforge.net/project/cccd/${PN}/${PV}/${PN}-${PV}.tar.bz2"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
- virtual/libusb:1
- sys-apps/fxload
- media-libs/libgphoto2
- >=media-libs/libraw-0.9.1
- media-libs/tiff:0
- media-libs/lcms
- dev-qt/qtcore:4
- dev-qt/qtgui:4
- || ( <sci-libs/indilib-driver-qhy-9999 >=sci-libs/libqhy-9999 )"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/${PN}"
-
-PATCHES=( "${FILESDIR}/ccd-1.2.9-fix_helper_scripts_paths.patch")
-
-src_compile() {
- qt4-r2_src_compile
- cd "${S}"/shutter_procs/
- make
- cd "${S}"
-}
-
-src_install() {
- dobin ccd
- exeinto /usr/libexec/ccd
- doexe shutter_procs/shutter
- doexe utils/qhy6reset.sh
- doexe utils/qhy8reset.sh
- doexe utils/qhy8lreset.sh
- doexe utils/qhy9reset.sh
- dodoc readme
- dodoc readme.en
- dodoc readme.ru
-}
diff --git a/sci-astronomy/ccd/files/ccd-1.2.9-fix_helper_scripts_paths.patch b/sci-astronomy/ccd/files/ccd-1.2.9-fix_helper_scripts_paths.patch
deleted file mode 100644
index cd01cda..0000000
--- a/sci-astronomy/ccd/files/ccd-1.2.9-fix_helper_scripts_paths.patch
+++ /dev/null
@@ -1,108 +0,0 @@
-diff -ruN ccd/src/devices/cam_gphoto.cpp ccd.new/src/devices/cam_gphoto.cpp
---- ccd/src/devices/cam_gphoto.cpp 2015-01-29 00:01:59.743670552 +0100
-+++ ccd.new/src/devices/cam_gphoto.cpp 2015-01-29 00:03:52.200487268 +0100
-@@ -678,7 +678,7 @@
- else
- if( pid == 0 )
- {
-- execl( "./shutter", "shutter", cmd == open_shutter ? "1" : "0", m_high_params.use_mirror_lock ? "1" : "0", NULL );
-+ execl( "/usr/libexec/ccd/shutter", "shutter", cmd == open_shutter ? "1" : "0", m_high_params.use_mirror_lock ? "1" : "0", NULL );
- _exit( 127 );
- }
- else
-diff -ruN ccd/src/devices/cam_qhy6.cpp ccd.new/src/devices/cam_qhy6.cpp
---- ccd/src/devices/cam_qhy6.cpp 2013-07-31 14:24:53.000000000 +0200
-+++ ccd.new/src/devices/cam_qhy6.cpp 2015-01-29 00:03:26.818528628 +0100
-@@ -321,7 +321,7 @@
- //hardware BREAK
- for( int i = 0;i < ccamera_base::try_reset_cnt;i++ )
- {
-- int res = system( "utils/qhy6reset.sh" );
-+ int res = system( "/usr/libexec/ccd/qhy6reset.sh" );
- if( res < 0 )
- {
- log_e( "Failed to reset camera by script... '%s'", strerror(errno) );
-diff -ruN ccd/src/devices/cam_qhy8.cpp ccd.new/src/devices/cam_qhy8.cpp
---- ccd/src/devices/cam_qhy8.cpp 2013-07-31 14:40:11.000000000 +0200
-+++ ccd.new/src/devices/cam_qhy8.cpp 2015-01-29 00:03:13.501550331 +0100
-@@ -380,7 +380,7 @@
- //hardware BREAK
- for( int i = 0;i < ccamera_base::try_reset_cnt;i++ )
- {
-- int res = system( "utils/qhy8reset.sh" );
-+ int res = system( "/usr/libexec/ccd/qhy8reset.sh" );
- if( res < 0 )
- {
- log_e( "Failed to reset camera by script... '%s'", strerror(errno) );
-diff -ruN ccd/src/devices/cam_qhy8l.cpp ccd.new/src/devices/cam_qhy8l.cpp
---- ccd/src/devices/cam_qhy8l.cpp 2013-08-01 18:54:12.000000000 +0200
-+++ ccd.new/src/devices/cam_qhy8l.cpp 2015-01-29 00:03:16.166545988 +0100
-@@ -424,7 +424,7 @@
- //hardware BREAK
- for( int i = 0;i < ccamera_base::try_reset_cnt;i++ )
- {
-- int res = system( "utils/qhy8lreset.sh" );
-+ int res = system( "/usr/libexec/ccd/qhy8lreset.sh" );
- if( res < 0 )
- {
- log_e( "Failed to reset camera by script... '%s'", strerror(errno) );
-diff -ruN ccd/src/devices/cam_qhy9.cpp ccd.new/src/devices/cam_qhy9.cpp
---- ccd/src/devices/cam_qhy9.cpp 2013-07-31 10:28:44.000000000 +0200
-+++ ccd.new/src/devices/cam_qhy9.cpp 2015-01-29 00:03:17.622543615 +0100
-@@ -424,7 +424,7 @@
- //hardware BREAK
- for( int i = 0;i < ccamera_base::try_reset_cnt;i++ )
- {
-- int res = system( "utils/qhy9reset.sh" );
-+ int res = system( "/usr/libexec/ccd/qhy9reset.sh" );
- if( res < 0 )
- {
- log_e( "Failed to reset camera by script... '%s'", strerror(errno) );
-diff -ruN ccd/utils/qhy6reset.sh ccd.new/utils/qhy6reset.sh
---- ccd/utils/qhy6reset.sh 2012-03-07 19:17:55.000000000 +0100
-+++ ccd.new/utils/qhy6reset.sh 2015-01-28 23:11:38.000000000 +0100
-@@ -8,7 +8,7 @@
- # exit 0
- #fi
-
--fw="/lib/firmware/ccd/qhy6.hex"
-+fw="/lib/firmware/QHY6.HEX"
-
- bdir="/dev/bus/usb"
-
-diff -ruN ccd/utils/qhy8lreset.sh ccd.new/utils/qhy8lreset.sh
---- ccd/utils/qhy8lreset.sh 2012-01-25 20:17:20.000000000 +0100
-+++ ccd.new/utils/qhy8lreset.sh 2015-01-28 23:11:54.000000000 +0100
-@@ -8,7 +8,7 @@
- # exit 0
- #fi
-
--fw="/lib/firmware/ccd/qhy8l.hex"
-+fw="/lib/firmware/CCD/QHY8L.HEX"
-
- bdir="/dev/bus/usb"
-
-diff -ruN ccd/utils/qhy8reset.sh ccd.new/utils/qhy8reset.sh
---- ccd/utils/qhy8reset.sh 2013-07-30 21:54:56.000000000 +0200
-+++ ccd.new/utils/qhy8reset.sh 2015-01-28 23:12:04.000000000 +0100
-@@ -8,7 +8,7 @@
- # exit 0
- #fi
-
--fw="/lib/firmware/ccd/qhy8.hex"
-+fw="/lib/firmware/QHY8.HEX"
-
- bdir="/dev/bus/usb"
-
-diff -ruN ccd/utils/qhy9reset.sh ccd.new/utils/qhy9reset.sh
---- ccd/utils/qhy9reset.sh 2015-01-28 23:17:15.801043730 +0100
-+++ ccd.new/utils/qhy9reset.sh 2015-01-28 23:47:27.385068594 +0100
-@@ -8,7 +8,7 @@
- # exit 0
- #fi
-
--fw="/lib/firmware/ccd/qhy9.hex"
-+fw="/lib/firmware/QHY9.HEX"
-
- bdir="/dev/bus/usb"
- \ No newline at end of file
diff --git a/sci-astronomy/ccd/metadata.xml b/sci-astronomy/ccd/metadata.xml
deleted file mode 100644
index dfc8187..0000000
--- a/sci-astronomy/ccd/metadata.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>ctibor@brancik.cz</email>
- <name>Ctibor Brančík</name>
- </maintainer>
- <longdescription>
- CCD is a simple program for astro photography under Linux operating system. The program is intended for astrophotohraphers.
- Its main purpose is to simplify the surveying of the objects, as well assist in focusing. This program supports TSNK-lab ICX285AL
- cameras, QHY5, QHY6, QHY9, QHY8L, DSI2PRO, DSLR. It works with Mono images of 8, 12, 16 bits and RGB images of 24, 48 bits.
- Photo and video modes can be used. Histogram control of preview is available. There are two modes of capture: single frame mode and series.
- </longdescription>
- <upstream>
- <maintainer status="active">
- <email>galaxy_master@mail.ru</email>
- <name>Andrew Stepanenko</name>
- </maintainer>
- <bugs-to>mailto:galaxy_master@mail.ru</bugs-to>
- <remote-id type="sourceforge">cccd</remote-id>
- </upstream>
-</pkgmetadata>