From 525edcce8f76cc1deebb7d4d1c8d046578d88ac6 Mon Sep 17 00:00:00 2001 From: R. S. Ananda Murthy Date: Sun, 4 May 2014 22:24:55 +0700 Subject: academic/iTest: Added (computer-based tests software). Signed-off-by: Willy Sudiarto Raharjo --- academic/iTest/README | 8 ++ academic/iTest/iTest.SlackBuild | 140 ++++++++++++++++++++++++++++ academic/iTest/iTest.info | 10 ++ academic/iTest/itestserver-session_cpp.diff | 11 +++ academic/iTest/slack-desc | 19 ++++ 5 files changed, 188 insertions(+) create mode 100644 academic/iTest/README create mode 100644 academic/iTest/iTest.SlackBuild create mode 100644 academic/iTest/iTest.info create mode 100644 academic/iTest/itestserver-session_cpp.diff create mode 100644 academic/iTest/slack-desc (limited to 'academic/iTest') diff --git a/academic/iTest/README b/academic/iTest/README new file mode 100644 index 0000000000..9966b45a5f --- /dev/null +++ b/academic/iTest/README @@ -0,0 +1,8 @@ +iTest (A free software for implementing computer-based tests) + +iTest is an application which allows you to take advantage +of the best of computerised examination. iTest consists of two programs +-- iTestServer and iTestClient. The server has question and answer +database editor. It works as exam server. The client is used by the +students to connect to the server. Using this program we can conduct +computer-based tests in schools and colleges. diff --git a/academic/iTest/iTest.SlackBuild b/academic/iTest/iTest.SlackBuild new file mode 100644 index 0000000000..4d1fb23da1 --- /dev/null +++ b/academic/iTest/iTest.SlackBuild @@ -0,0 +1,140 @@ +#!/bin/sh + +# Slackware build script for iTest + +# Copyright 2014 R. S. Ananda Murthy, Mysore, India +# 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=iTest +VERSION=${VERSION:-1.4.2_PREVIEW4} +SRCVER=$(echo $VERSION | tr _ -) +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION-src +tar xvf $CWD/$PRGNAM-$SRCVER-src.tar.gz +cd $PRGNAM-$SRCVER-src + +# Replace-direct-calls-to-constructor +find . -name "*.cpp" -type f -exec sed -i -e 's|QColor::QColor|QColor|g' -e 's|QBrush::QBrush|QBrush|g' -e 's|QDate::QDate|QDate|g' -e 's|QTime::QTime|QTime|g' -e 's|QDateTime::QDateTime|QDateTime|g' -e 's|QIcon::QIcon|QIcon|g' -e 's|QSize::QSize|QSize|g' -e 's|QFont::QFont|QFont|g' {} \; +find . -name "*.h" -type f -exec sed -i -e 's|QColor::QColor|QColor|g' -e 's|QBrush::QBrush|QBrush|g' -e 's|QDate::QDate|QDate|g' -e 's|QTime::QTime|QTime|g' -e 's|QDateTime::QDateTime|QDateTime|g' -e 's|QIcon::QIcon|QIcon|g' -e 's|QSize::QSize|QSize|g' -e 's|QFont::QFont|QFont|g' {} \; + +patch -p0 < $CWD/itestserver-session_cpp.diff + +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +cd iTestServer +lrelease iTestServer.pro +cd .. +cd iTestClient +lrelease iTestClient.pro +cd .. +qmake -config release +make + +#copying files to packaging directory +cd $PKG +mkdir -p $PKG/usr/bin +mkdir -p $PKG/usr/share/{applications,icons/hicolor/48x48/apps} +install -m 755 -p $TMP/$PRGNAM-$SRCVER-src/bin/iTestServer $PKG/usr/bin + +#create desktop file for server +cat << "EOF" >$PKG/usr/share/applications/iTestServer.desktop +[Desktop Entry] +Encoding=UTF-8 +Name=iTest Server +Exec=iTestServer +Comment=iTest Server +GenericName=iTest Server +Terminal=false +Type=Application +Categories=Education; +Icon=iTestServer +EOF + +cp -f $TMP/$PRGNAM-$SRCVER-src/iTestServer/images/itest48.png $PKG/usr/share/icons/hicolor/48x48/apps/iTestServer.png +install -m 755 -p $TMP/$PRGNAM-$SRCVER-src/bin/iTestClient $PKG/usr/bin + +#create desktop file +cat << "EOF" >$PKG/usr/share/applications/iTestClient.desktop +[Desktop Entry] +Encoding=UTF-8 +Name=iTest Client +Exec=iTestClient +Comment=iTest Client +GenericName=iTest Client +Terminal=false +Type=Application +Categories=Education; +Icon=iTestClient +EOF + +cp -f $TMP/$PRGNAM-$SRCVER-src/iTestClient/images/itcl.png $PKG/usr/share/icons/hicolor/48x48/apps/iTestClient.png + +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a $TMP/$PRGNAM-$SRCVER-src/readme.txt \ + $TMP/$PRGNAM-$SRCVER-src/gpl.txt $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/academic/iTest/iTest.info b/academic/iTest/iTest.info new file mode 100644 index 0000000000..093a59a20d --- /dev/null +++ b/academic/iTest/iTest.info @@ -0,0 +1,10 @@ +PRGNAM="iTest" +VERSION="1.4.2_PREVIEW4" +HOMEPAGE="http://itest.sourceforge.net/" +DOWNLOAD="http://sourceforge.net/projects/itest/files/itest-prereleases/iTest-1.4.2-PREVIEW4-src.tar.gz" +MD5SUM="8e4b055c42850ec740cccc18db681bd6" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="R. S. Ananda Murthy" +EMAIL="rsamurti@gmail.com" diff --git a/academic/iTest/itestserver-session_cpp.diff b/academic/iTest/itestserver-session_cpp.diff new file mode 100644 index 0000000000..12e6f49d44 --- /dev/null +++ b/academic/iTest/itestserver-session_cpp.diff @@ -0,0 +1,11 @@ +--- session.cpp.orig 2011-09-08 00:59:26.732260001 +0200 ++++ iTestServer/session.cpp 2011-09-08 01:00:36.932260001 +0200 +@@ -111,7 +111,7 @@ + + void Session::addLogEntry(int bgr, int bgg, int bgb, int fgr, int fgg, int fgb, const QString & text) + { +- s_log << LogEntry::LogEntry(bgr, bgg, bgb, fgr, fgg, fgb, text); ++ s_log << LogEntry(bgr, bgg, bgb, fgr, fgg, fgb, text); + } + + int Session::numLogEntries() { return s_log.count(); } \ No newline at end of file diff --git a/academic/iTest/slack-desc b/academic/iTest/slack-desc new file mode 100644 index 0000000000..9182ea9ef1 --- /dev/null +++ b/academic/iTest/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +iTest: iTest (computer-based tests software) +iTest: +iTest: iTest is an application which allows you to take advantage of the +iTest: best of computerised examination. iTest consists of two programs +iTest: -- iTestServer and iTestClient. The server has question and answer +iTest: database editor. It works as exam server. The client is used by the +iTest: students to connect to the server. Using this program we can conduct +iTest: computer-based tests in schools and colleges. +iTest: +iTest: +iTest: -- cgit v1.2.3