wok-next rev 20854

Add xa, libicns; up vice (3.2)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Jun 26 14:16:09 2018 +0300 (2018-06-26)
parents 659d94ea297b
children ee3b11a5266b
files libicns/description.txt libicns/receipt vice/.icon.png vice/receipt vice/stuff/patches/disable-fc-cache.patch vice/stuff/patches/series xa/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libicns/description.txt	Tue Jun 26 14:16:09 2018 +0300
     1.3 @@ -0,0 +1,12 @@
     1.4 +libicns is a library for manipulation of the Mac OS icns resource format, also
     1.5 +known as the IconFamily resource type. It can read and write files from the
     1.6 +Mac OS X icns format, as well as read from Mac OS resource files and macbinary
     1.7 +encoded Mac OS resource forks.
     1.8 +
     1.9 +As of release 0.5.9, it can fully manipulate any 128x128 and smaller 32-bit
    1.10 +icons, and has partial support for manipulating 8-bit, 4-bit, and 1-bit icons.
    1.11 +
    1.12 +When linked with Jasper, it also has full support for 256x256 and 512x512 icon
    1.13 +sizes within the icon family.
    1.14 +
    1.15 +As of release 0.8.0, it can read the PNG format introduced with OS X Lion 10.7
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/libicns/receipt	Tue Jun 26 14:16:09 2018 +0300
     2.3 @@ -0,0 +1,34 @@
     2.4 +# SliTaz package receipt v2.
     2.5 +
     2.6 +PACKAGE="libicns"
     2.7 +VERSION="0.8.1"
     2.8 +CATEGORY="graphics"
     2.9 +SHORT_DESC="Apple macOS Icon Image (.icns) tools"
    2.10 +MAINTAINER="al.bobylev@gmail.com"
    2.11 +LICENSE="GPL2 LGPL2 LGPL2.1"
    2.12 +WEB_SITE="https://sourceforge.net/projects/icns/"
    2.13 +
    2.14 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.15 +WGET_URL="$SF_MIRROR/icns/$TARBALL"
    2.16 +
    2.17 +BUILD_DEPENDS="libpng16-dev jasper-dev"
    2.18 +SPLIT="libicns-dev"
    2.19 +
    2.20 +compile_rules() {
    2.21 +	./configure $CONFIGURE_ARGS &&
    2.22 +	fix libtool &&
    2.23 +	make &&
    2.24 +	make install
    2.25 +}
    2.26 +
    2.27 +genpkg_rules() {
    2.28 +	case $PACKAGE in
    2.29 +		libicns)
    2.30 +			copy @std
    2.31 +			DEPENDS="jasper libpng16"
    2.32 +			;;
    2.33 +		*-dev)
    2.34 +			copy @dev
    2.35 +			;;
    2.36 +	esac
    2.37 +}
     3.1 Binary file vice/.icon.png has changed
     4.1 --- a/vice/receipt	Sun Jun 24 19:03:37 2018 +0300
     4.2 +++ b/vice/receipt	Tue Jun 26 14:16:09 2018 +0300
     4.3 @@ -1,33 +1,47 @@
     4.4 -# SliTaz package receipt.
     4.5 +# SliTaz package receipt v2.
     4.6  
     4.7  PACKAGE="vice"
     4.8 -VERSION="3.1"
     4.9 +VERSION="3.2"
    4.10  CATEGORY="games"
    4.11 -SHORT_DESC="Commodore 64 and others emulator."
    4.12 +SHORT_DESC="The Versatile Commodore 8-bit Emulator"
    4.13  MAINTAINER="devl547@gmail.com"
    4.14  LICENSE="GPL2"
    4.15 +WEB_SITE="http://vice-emu.sourceforge.net/"
    4.16 +
    4.17  TARBALL="$PACKAGE-$VERSION.tar.gz"
    4.18 -WEB_SITE="http://www.viceteam.org/"
    4.19 -WGET_URL="http://www.zimmers.net/anonftp/pub/cbm/crossplatform/emulators/VICE/$TARBALL"
    4.20 +WGET_URL="$SF_MIRROR/vice-emu/$TARBALL"
    4.21  
    4.22 -DEPENDS="gtk+"
    4.23 -BUILD_DEPENDS="gtk+-dev gettext-tools xorg-bdftopcf xorg-mkfontdir"
    4.24 +BUILD_DEPENDS="automake xa gettext ffmpeg-dev alsa-lib-dev lame-dev \
    4.25 +libvorbis-dev flac-dev pciutils-dev readline-dev libpng16-dev giflib-dev \
    4.26 +libjpeg-turbo-dev portaudio-dev mpg123-dev xorg-libICE-dev gtk+-dev \
    4.27 +vte-gtk2-dev gtkglext-dev mesa-dev xorg-libXxf86vm-dev xorg-libXrandr-dev \
    4.28 +xorg-bdftopcf xorg-mkfontdir" # pulseaudio-dev
    4.29  
    4.30 -# Rules to configure and make the package.
    4.31 -compile_rules()
    4.32 -{
    4.33 -	unset HOME
    4.34 +compile_rules() {
    4.35 +	rm -r src/lib/liblame src/lib/libx264 src/lib/libffmpeg
    4.36 +	sed -i 's/lib64/lib/g' configure.ac
    4.37 +	autoreconf -fi
    4.38 +	sed \
    4.39 +		-e 's|CODEC_CAP_VARIABLE_FRAME_SIZE|AV_&|g' \
    4.40 +		-e 's|CODEC_FLAG_GLOBAL_HEADER|AV_&|g' \
    4.41 +		-e 's|\& AVFMT_RAWPICTURE||' \
    4.42 +		-i src/gfxoutputdrv/ffmpegdrv.c # Fix build with ffmpeg 4
    4.43 +
    4.44  	./configure \
    4.45  		--prefix=/usr \
    4.46 +		--libdir=/usr/lib \
    4.47  		--enable-gnomeui \
    4.48 +		--enable-external-ffmpeg \
    4.49  		$CONFIGURE_ARGS &&
    4.50 -	make $MAKEFLAGS && make -j 1 DESTDIR=$DESTDIR install
    4.51 +	make &&
    4.52 +	make -j1 \
    4.53 +		DESTDIR="$install" \
    4.54 +		install
    4.55  }
    4.56  
    4.57 -# Rules to gen a SliTaz package suitable for Tazpkg.
    4.58 -genpkg_rules()
    4.59 -{
    4.60 -	mkdir -p $fs/usr/
    4.61 -	cp -a $install/usr/bin $fs/usr/
    4.62 -	cp -a $install/usr/lib $fs/usr/
    4.63 +genpkg_rules() {
    4.64 +	copy @std
    4.65 +	DEPENDS="alsa-lib cairo flac gdk-pixbuf giflib glib gtk+ gtkglext \
    4.66 +	libjpeg-turbo libogg libpng16 libvorbis mesa mpg123 pango pciutils \
    4.67 +	portaudio readline vte-gtk2 xorg-libX11 xorg-libXrandr xorg-libXxf86vm zlib"
    4.68  }
     5.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.2 +++ b/vice/stuff/patches/disable-fc-cache.patch	Tue Jun 26 14:16:09 2018 +0300
     5.3 @@ -0,0 +1,16 @@
     5.4 +--- a/configure.ac.orig	2016-12-15 04:44:32.000000000 +0100
     5.5 ++++ b/configure.ac	2017-01-05 23:24:59.072247182 +0100
     5.6 +@@ -2998,12 +2998,7 @@ if test x"$enable_lame" != "xno" ; then
     5.7 + 
     5.8 + fi
     5.9 + 
    5.10 +-AC_PATH_PROGS(FCCACHE, fc-cache, false)
    5.11 +-if test x"$FCCACHE" = "xfalse"; then
    5.12 +-  AM_CONDITIONAL(HAVE_FC_CACHE, false)
    5.13 +-else
    5.14 +-  AM_CONDITIONAL(HAVE_FC_CACHE, true)
    5.15 +-fi
    5.16 ++AM_CONDITIONAL(HAVE_FC_CACHE, false)
    5.17 + 
    5.18 + if test x"$is_amigaos4" = "xyes"; then
    5.19 +   if test x"$enable_sdlui" != "xyes" -a x"$enable_sdlui2" != "xyes"; then
     6.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     6.2 +++ b/vice/stuff/patches/series	Tue Jun 26 14:16:09 2018 +0300
     6.3 @@ -0,0 +1,2 @@
     6.4 +# from https://www.archlinux.org/packages/extra/x86_64/vice/
     6.5 +-p1|disable-fc-cache.patch
     7.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     7.2 +++ b/xa/receipt	Tue Jun 26 14:16:09 2018 +0300
     7.3 @@ -0,0 +1,21 @@
     7.4 +# SliTaz package receipt v2.
     7.5 +
     7.6 +PACKAGE="xa"
     7.7 +VERSION="2.3.8"
     7.8 +CATEGORY="development"
     7.9 +SHORT_DESC="Cross-assembler for 6502 microprocessor"
    7.10 +MAINTAINER="al.bobylev@gmail.com"
    7.11 +LICENSE="GPL2"
    7.12 +WEB_SITE="http://www.floodgap.com/retrotech/xa/"
    7.13 +
    7.14 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    7.15 +WGET_URL="http://www.floodgap.com/retrotech/xa/dists/$TARBALL"
    7.16 +
    7.17 +compile_rules() {
    7.18 +	make &&
    7.19 +	make DESTDIR="$install/usr" install
    7.20 +}
    7.21 +
    7.22 +genpkg_rules() {
    7.23 +	copy @std
    7.24 +}