wok rev 25277

updated remind (03.01.16 -> 04.00.01)
author Hans-G?nter Theisgen
date Mon Jul 18 14:37:03 2022 +0100 (21 months ago)
parents 579ba8e60043
children 65021c2417fe
files recordmydesktop/description.txt remind/description.txt remind/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/recordmydesktop/description.txt	Mon Jul 18 14:37:03 2022 +0100
     1.3 @@ -0,0 +1,21 @@
     1.4 +RecordMyDesktop is a desktop session recorder for GNU / linux
     1.5 +that attemps to be easy to use, yet also effective at it's
     1.6 +primary task.
     1.7 +
     1.8 +As such, the program is separated in two parts; a simple command
     1.9 +line tool that performs the basic tasks of capturing and encoding
    1.10 +and an interface that exposes the program functionality in a
    1.11 +usable way.
    1.12 +
    1.13 +The commandline tool (which essentially is recordMyDesktop),
    1.14 +is written in C, while there are two frontends, written in python
    1.15 +with pyGtk (gtk-recordMyDesktop) and pyQt4 (qt-recordMyDesktop).
    1.16 +
    1.17 +RecordMyDesktop offers also the ability to record audio through
    1.18 +ALSA, OSS or the JACK audio server.
    1.19 +
    1.20 +Also, recordMyDesktop produces files using only open formats.
    1.21 +These are theora for video and vorbis for audio, using the ogg
    1.22 +container.
    1.23 +(To learn more about free formats visit Xiph.org, the foundation
    1.24 +responsible for the aformentioned formats).
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/remind/description.txt	Mon Jul 18 14:37:03 2022 +0100
     2.3 @@ -0,0 +1,12 @@
     2.4 +Remind is a sophisticated calendar and alarm program.
     2.5 +
     2.6 +It includes the following features:
     2.7 +
     2.8 +* A sophisticated scripting language and intelligent handling
     2.9 +  of exceptions and holidays.
    2.10 +* Plain-text, PDF, PostScript and HTML output.
    2.11 +* Timed reminders and pop-up alarms.
    2.12 +* A friendly graphical front-end for people who don't want to
    2.13 +  learn the scripting language.
    2.14 +* Facilities for both the Gregorian and Hebrew calendars.
    2.15 +* Support for 12 different languages.
     3.1 --- a/remind/receipt	Mon Jul 18 14:19:27 2022 +0100
     3.2 +++ b/remind/receipt	Mon Jul 18 14:37:03 2022 +0100
     3.3 @@ -1,18 +1,19 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="remind"
     3.7 -VERSION="03.01.16"
     3.8 +VERSION="04.00.01"
     3.9  CATEGORY="utilities"
    3.10 +TAGS="office calendar"
    3.11  SHORT_DESC="Sophisticated calendar and alarm program."
    3.12  MAINTAINER="paul@slitaz.org"
    3.13  LICENSE="GPL2"
    3.14  WEB_SITE="https://dianne.skoll.ca/projects/remind/"
    3.15  
    3.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    3.17 -WGET_URL="https://git.skoll.ca/Skollsoft-Public/Remind/archive/$VERSION.tar.gz"
    3.18 -TAGS="office calendar"
    3.19 +WGET_URL="${WEB_SITE}download/$TARBALL"
    3.20  
    3.21 -DEPENDS="tcl tcllib tk xorg-libXss"
    3.22 +DEPENDS="gcc83-lib-base tcl tcllib tk xorg-libXss"
    3.23 +BUILD_DEPENDS="gcc83"
    3.24  
    3.25  # What is the latest version available today?
    3.26  current_version()
    3.27 @@ -25,22 +26,22 @@
    3.28  compile_rules()
    3.29  {
    3.30  	./configure				\
    3.31 +		CC=gcc-83			\
    3.32  		--prefix=/usr			\
    3.33  		--infodir=/usr/share/info	\
    3.34  		--mandir=/usr/share/man		\
    3.35  		$CONFIGURE_ARGS &&
    3.36  	make &&
    3.37 -	make DESTDIR=$DESTDIR install
    3.38 +	make install DESTDIR=$DESTDIR
    3.39  }
    3.40  
    3.41  # Rules to gen a SliTaz package suitable for Tazpkg.
    3.42  genpkg_rules()
    3.43  {
    3.44 -	mkdir -p $fs/usr
    3.45  	mkdir -p $fs/etc/skel
    3.46  
    3.47  	touch $fs/etc/skel/.reminders
    3.48 -	cp -a $install/usr/bin $fs/usr
    3.49 +	cook_copy_folders	bin
    3.50  }
    3.51  
    3.52  post_install()
    3.53 @@ -50,8 +51,8 @@
    3.54  	for i in $(ls "$1/home" 2> /dev/null)
    3.55  	  do
    3.56  		[ -f "$1/home/$i/.reminders" ] && continue
    3.57 -		echo -en "${nl}Creating config file for $i ..."
    3.58 -		touch "$1/home/$i/.reminders" 
    3.59 +		echo -en "${nl}Creating configuration file for $i ..."
    3.60 +		touch "$1/home/$i/.reminders"
    3.61  		chroot "$1/" chown $(stat -c "%u.%g" "$1/home/$i") "/home/$i/.reminders"
    3.62  		status
    3.63  	  done
    3.64 @@ -59,5 +60,5 @@
    3.65  
    3.66  post_remove()
    3.67  {
    3.68 -	rm -f "$1"/home/*/.reminders
    3.69 +	rm -f	"$1"/home/*/.reminders
    3.70  }