Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Pol Vinogradov (1c1877bfa5b8aebaba127642d3704a8d89ec632d)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Pol Vinogradov <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Pol Vinogradov (1c1877bfa5b8aebaba127642d3704a8d89ec632d)
  • Date: Mon, 7 Sep 2009 11:20:43 -0500

GIT changes to master grimoire by Pol Vinogradov <vin.public AT gmail.com>:

ChangeLog | 3 ++
disk/qpxtool/BUILD | 7 ++++++
disk/qpxtool/DEPENDS | 2 +
disk/qpxtool/DETAILS | 53
+++++++++++++++++++++++++++++++++++++++++++++++++
disk/qpxtool/HISTORY | 3 ++
disk/qpxtool/INSTALL | 5 ++++
disk/qpxtool/PRE_BUILD | 5 ++++
7 files changed, 78 insertions(+)

New commits:
commit 1c1877bfa5b8aebaba127642d3704a8d89ec632d
Author: Pol Vinogradov <vin.public AT gmail.com>
Commit: Pol Vinogradov <vin.public AT gmail.com>

disk/qpxtool: new spell, tool for recovering and testing CD/DVD media data

diff --git a/ChangeLog b/ChangeLog
index e36e9b9..d4e7c9e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2009-09-07 Pol Vinogradova <vin.public AT gmail.com>
+ * disk/qpxtool: new spell, tool for recovering and testing CD/DVD
media data
+
2009-09-06 Vlad Glagolev <stealth AT sourcemage.org>
* utils/nss-pam-ldapd: new spell, NSS and PAM modules for name
lookups using
LDAP
diff --git a/disk/qpxtool/BUILD b/disk/qpxtool/BUILD
new file mode 100755
index 0000000..650edba
--- /dev/null
+++ b/disk/qpxtool/BUILD
@@ -0,0 +1,7 @@
+QTDIR="${QTDIR:-$INSTALL_ROOT/usr}"
+PATH="$QTDIR/bin/qt4:$PATH"
+make cli &&
+if is_depends_enabled $SPELL qt4
+en
+ make gui
+fi
diff --git a/disk/qpxtool/DEPENDS b/disk/qpxtool/DEPENDS
new file mode 100755
index 0000000..09289bb
--- /dev/null
+++ b/disk/qpxtool/DEPENDS
@@ -0,0 +1,2 @@
+depends g++ &&
+optional_depends qt4 "" "" "to build gui"
diff --git a/disk/qpxtool/DETAILS b/disk/qpxtool/DETAILS
new file mode 100755
index 0000000..9857bf9
--- /dev/null
+++ b/disk/qpxtool/DETAILS
@@ -0,0 +1,53 @@
+ SPELL=qpxtool
+ VERSION=0.7.0pre2
+ SOURCE=$SPELL-$VERSION.tar.bz2
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+
SOURCE_URL[0]=$SOURCEFORGE_URL/project/$SPELL/$SPELL/${VERSION:0:5}/$SOURCE
+
SOURCE_HASH=sha512:b8279991c8a8cdd5b470ed5d6a5dce60be8a9a844011976d378ba82b1fd341789dea3664d50fa1e0b29f2f4dfc2a537f86e5c2cc1e25cf5186347c9e1707a16b
+ WEB_SITE=http://qpxtool.sourceforge.net
+ LICENSE[0]=GPL
+ ENTERED=20090907
+ KEYWORDS="disk"
+ SHORT="Tool for recovering and testing CD/DVD media data"
+cat << EOF
+Tool for recovering and testing CD/DVD media data
+Features:
+ - bus scanning
+ - detecting media type (CD-ROM/R/RW, DVD-ROM/RAM/R/RDL/RW/+R/+RW/+RDL),
+ MID code for DVD's and CD-R(W) manufacturer
+ - detecting R/W and general features of drive
+ - speed setting (works incorrectly on some drives)
+ - spindown time setting
+ - Plextor features (also can be controled by pxcontrol):
+ - Hide-CDR
+ - Single-Session
+ - Speed Read
+ - GigaRec
+ - PoweRec
+ - Silent mode
+ - VariRec (CD & DVD)
+ - Bitsetting on DVD+R & DVD+R DL
+ - Simulation on DVD+R(W)
+ - AutoStrategy
+ - Media Quality Check
+ - PlexEraser
+ - SecuRec
+ - Other vendors features:
+ - Pioneer DVR-A**XL QuietMode (tested on A09)
+ - Read transfer rate test
+ - CD quality tests:
+ - C1/C2/CU (logarythmic scale)
+ - Extended CD scan on Plextor drives (BLER, E11, E21, E31,
E12,
+E22, E32)
+ - Beta/Jitter
+ - DVD quality tests:
+ - PIE (sum8) +POF on Plextor's (logarythmic scale) +PIF on
+\non-(Plextor | Nec)
+ - PIF (sum1 on Plextor & Nec, sum8 on other drives)
(logarythmic
+scale)
+ - Beta/Jitter (Plextor only)
+ - FE/TE (Plextor only)
+ - TA (only PX-7[14|16|55|60] can do this)
+ - Displays tracks information(type, duration...)
+ - Saving test results as .html or individual .png's
+EOF
diff --git a/disk/qpxtool/HISTORY b/disk/qpxtool/HISTORY
new file mode 100644
index 0000000..d3cc46f
--- /dev/null
+++ b/disk/qpxtool/HISTORY
@@ -0,0 +1,3 @@
+2009-09-07 Pol Vinogradova <vin.public AT gmail.com>
+ * BUILD, DEPENDS, DETAILS, INSTALL, PRE_BUILD: created this spell
+
diff --git a/disk/qpxtool/INSTALL b/disk/qpxtool/INSTALL
new file mode 100755
index 0000000..8031fd2
--- /dev/null
+++ b/disk/qpxtool/INSTALL
@@ -0,0 +1,5 @@
+make cli install &&
+if is_depends_enabled $SPELL qt4
+then
+ make gui install
+fi
diff --git a/disk/qpxtool/PRE_BUILD b/disk/qpxtool/PRE_BUILD
new file mode 100755
index 0000000..adc6707
--- /dev/null
+++ b/disk/qpxtool/PRE_BUILD
@@ -0,0 +1,5 @@
+default_pre_build &&
+cd $SOURCE_DIRECTORY &&
+sed -i "s:/usr:${INSTALL_ROOT}/usr:" Makefile.defs.linux &&
+sed -i "s:qmake-qt4:qmake:" Makefile.defs.linux &&
+sed -i "s:#include <sys/time.h>:#include <sys/time.h>\n#include <limits.h>:"
lib/qpxtransport/qpx_transport.cpp



  • [SM-Commit] GIT changes to master grimoire by Pol Vinogradov (1c1877bfa5b8aebaba127642d3704a8d89ec632d), Pol Vinogradov, 09/07/2009

Archive powered by MHonArc 2.6.24.

Top of Page