wok rev 22987

updated kkedit (0.2.11 -> 0.4.2)
author Hans-G?nter Theisgen
date Sun Mar 01 16:20:31 2020 +0100 (2020-03-01)
parents cac55d0adf9e
children 166df6b2da67
files keepassx/description.txt kkedit/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/keepassx/description.txt	Sun Mar 01 16:20:31 2020 +0100
     1.3 @@ -0,0 +1,25 @@
     1.4 +KeePassX is an application for people with extremly high demands on 
     1.5 +secure personal data management. It has a light interface, is cross 
     1.6 +platform and published under the terms of the GNU General Public License.
     1.7 +
     1.8 +KeePassX saves many different information e.g. user names, passwords, 
     1.9 +urls, attachments and comments in one single database. For a better 
    1.10 +management user-defined titles and icons can be specified for each 
    1.11 +single entry. Furthermore the entries are sorted in groups, which 
    1.12 +are customizable as well. The integrated search function allows to 
    1.13 +search in a single group or the complete database.
    1.14 +KeePassX offers a little utility for secure password generation. 
    1.15 +The password generator is very customizable, fast and easy to use. 
    1.16 +Especially someone who generates passwords frequently will appreciate 
    1.17 +this feature.
    1.18 +
    1.19 +The complete database is always encrypted either with AES (alias Rijndael) 
    1.20 +or Twofish encryption algorithm using a 256 bit key. Therefore the saved 
    1.21 +information can be considered as quite safe. KeePassX uses a database 
    1.22 +format that is compatible with KeePass Password Safe. This makes the use 
    1.23 +of that application even more favourable.
    1.24 +
    1.25 +Originally KeePassX was called KeePass/L for Linux since it was a port 
    1.26 +of Windows password manager Keepass Password Safe. After KeePass/L became 
    1.27 +a cross platform application the name was not appropriate anymore and 
    1.28 +therefore, on 22 March 2006 it has been changed.
     2.1 --- a/kkedit/receipt	Sun Mar 01 12:47:04 2020 +0100
     2.2 +++ b/kkedit/receipt	Sun Mar 01 16:20:31 2020 +0100
     2.3 @@ -1,23 +1,27 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="kkedit"
     2.7 -VERSION="0.2.11"
     2.8 +VERSION="0.4.2"
     2.9  CATEGORY="development"
    2.10 -SHORT_DESC="Source code text editor"
    2.11 +SHORT_DESC="Source code text editor."
    2.12  MAINTAINER="al.bobylev@gmail.com"
    2.13  LICENSE="GPL3"
    2.14 -WEB_SITE="https://sites.google.com/site/kkeditlinuxtexteditor/home"
    2.15 +WEB_SITE="https://github.com/KeithDHedger/KKEdit"
    2.16 +
    2.17  TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.18 -WGET_URL="http://khapplications.darktech.org/zips/kkedit/KKEdit-$VERSION.tar.gz"
    2.19 +WGET_URL="$WEB_SKITE/archive/$TARBALL"
    2.20  
    2.21 +SUGGESTED="aspell"
    2.22  DEPENDS="gtk+ gtksourceview libunique"
    2.23 -BUILD_DEPENDS="automake autoconf gtk+-dev gtksourceview-dev libunique-dev \
    2.24 -ctags libxml2-dev libtool"
    2.25 +BUILD_DEPENDS="aspell-dev autoconf automake ctags gtk+-dev 
    2.26 +	gtksourceview-dev libtool libunique-dev libxml2-dev vte-dev"
    2.27  
    2.28  # Rules to configure and make the package.
    2.29  compile_rules()
    2.30  {
    2.31 -	./configure --disable-docviewer --prefix=/usr --&&
    2.32 +	./configure			\
    2.33 +		--disable-docviewer	\
    2.34 +		--prefix=/usr &&
    2.35  	make &&
    2.36  	make install
    2.37  }
    2.38 @@ -25,12 +29,12 @@
    2.39  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.40  genpkg_rules()
    2.41  {
    2.42 -	mkdir -p \
    2.43 -		$fs/usr/share/KKEdit \
    2.44 -		$fs/usr/share/applications \
    2.45 -		$fs/usr/share/pixmaps
    2.46 -	cp -a $install/usr/bin $fs/usr
    2.47 -	cp -a $stuff/*.desktop $fs/usr/share/applications
    2.48 -	cp -a $stuff/*.png $fs/usr/share/pixmaps
    2.49 -	cp -a $install/usr/share/KKEdit/tools $fs/usr/share/KKEdit
    2.50 +	mkdir -p $fs/usr/share/KKEdit
    2.51 +	mkdir -p $fs/usr/share/applications
    2.52 +	mkdir -p $fs/usr/share/pixmaps
    2.53 +
    2.54 +	cp -a $install/usr/bin			$fs/usr
    2.55 +	cp -a $stuff/*.desktop			$fs/usr/share/applications
    2.56 +	cp -a $stuff/*.png			$fs/usr/share/pixmaps
    2.57 +	cp -a $install/usr/share/KKEdit/tools	$fs/usr/share/KKEdit
    2.58  }