wok rev 25627

updated htmldoc (1.9.8 -> 1.9.11)
author Hans-G?nter Theisgen
date Mon Nov 13 15:54:00 2023 +0100 (5 months ago)
parents c50854f9fd59
children c228e4370f9d
files htmldoc/description.txt htmldoc/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/htmldoc/description.txt	Mon Nov 13 15:54:00 2023 +0100
     1.3 @@ -0,0 +1,7 @@
     1.4 +HTMLDOC converts HTML and Markdown source files or web pages to EPUB, PostScript, or PDF files
     1.5 +with an optional table of contents.
     1.6 +While it currently does not support many things in “the modern web” such as
     1.7 +Cascading Style Sheets (CSS), forms, full Unicode, and Emoji characters,
     1.8 +it is still useful for converting HTML documentation, invoices, and reports.
     1.9 +It provides a convenient GUI and can be integrated with many continuous integration
    1.10 +and web server solutions.
     2.1 --- a/htmldoc/receipt	Thu Nov 09 09:26:20 2023 +0000
     2.2 +++ b/htmldoc/receipt	Mon Nov 13 15:54:00 2023 +0100
     2.3 @@ -1,18 +1,19 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="htmldoc"
     2.7 -VERSION="1.9.8"
     2.8 +VERSION="1.9.11"
     2.9  CATEGORY="utilities"
    2.10 -SHORT_DESC="Convert HTML pages into a PDF document."
    2.11 +SHORT_DESC="Convert HTML and markdown to EPUB, HTML, PS or PDF document."
    2.12  MAINTAINER="gokhlayeh@slitaz.org"
    2.13  LICENSE="GPL2"
    2.14 -WEB_SITE="https://www.htmldoc.org"
    2.15 +WEB_SITE="https://www.msweet.org/htmldoc"
    2.16  
    2.17  TARBALL="$PACKAGE-$VERSION-source.tar.gz"
    2.18  WGET_URL="https://github.com/michaelrsweet/$PACKAGE/releases/download/v$VERSION/$TARBALL"
    2.19  
    2.20 +SUGGESTED="gnutls"	# for https://uri
    2.21  DEPENDS="fltk jpeg libpng"
    2.22 -BUILD_DEPENDS="fltk-dev jpeg-dev libpng-dev"
    2.23 +BUILD_DEPENDS="fltk-dev gnutls-dev jpeg-dev libpng-dev"
    2.24  
    2.25  # What is the latest version available today?
    2.26  current_version()
    2.27 @@ -29,16 +30,17 @@
    2.28  		htmldoc/image.cxx
    2.29  
    2.30  	# make sure not to use the libraries htmldoc ships with
    2.31 -	mkdir	foo
    2.32 -	mv jpeg	foo/
    2.33 -	mv png	foo/
    2.34 -	mv zlib	foo/
    2.35 +	mkdir	donotuse
    2.36 +	mv jpeg donotuse/
    2.37 +	mv png	donotuse/
    2.38 +	mv zlib	donotuse/
    2.39  
    2.40  	./configure		\
    2.41  		--prefix=/usr	\
    2.42 +		--enable-gnutls	\
    2.43  		$CONFIGURE_ARGS &&
    2.44  	make &&
    2.45 -	make prefix=$DESTDIR/usr install
    2.46 +	make install prefix=$DESTDIR/usr
    2.47  
    2.48  	# fix freedesktop stuff
    2.49  	install -Dm 644 desktop/htmldoc-128.png \