diff --git a/programming/library/cdk/actions.py b/programming/library/cdk/actions.py index b898025b39..db26edfe1b 100644 --- a/programming/library/cdk/actions.py +++ b/programming/library/cdk/actions.py @@ -8,20 +8,19 @@ from pisi.actionsapi import autotools, pisitools, get i = ''.join([ ' --enable-hdr-subdir', - ' --with-Xaw3d', - ' --with-Xaw3dxft', + ' --enable-pc-files', + ' --with-Xaw3d{,xft}', ' --with-shared ' ]) def setup(): -# shelltools.export("CFLAGS", "") - autotools.configure(i) + autotools.configure(i) def build(): - autotools.make() + autotools.make() def install(): - autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - pisitools.dodoc("CHANGES") + pisitools.dodoc("CHANGES") diff --git a/programming/library/cdk/pspec.xml b/programming/library/cdk/pspec.xml index 2754f12b57..11cc459514 100644 --- a/programming/library/cdk/pspec.xml +++ b/programming/library/cdk/pspec.xml @@ -1,77 +1,84 @@ - - cdk - https://invisible-island.net/cdk/cdk.html - - PisiLinux Community - admins@pisilinux.org - - custom - library - programming.library - This is a modified/enhanced version of Cdk. - - Cdk stands for 'Curses Development Kit' and it currently contains 21 ready to use widgets which facilitate the speedy development of full screen curses programs. This little project of mine started as a test to see how compatible my Linux machine was to other UNIX breeds. While doing this I discovered Ncurses, and played with it. These widgets are the result of over a years worth of playing. - - - https://invisible-mirror.net/archives/cdk/cdk-5.0-20221025.tgz - - - Xaw3d-devel - ncurses-devel - - + + cdk + https://invisible-island.net/cdk/cdk.html + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.library + cdk - Curses Development Kit. + Cdk provides functions to use a large number of predefined curses widgets. + https://invisible-island.net/archives/cdk/cdk-5.0-20250116.tgz + + Xaw3d-devel + ncurses-devel + libXaw3dxft-devel + + - - cdk - - ncurses - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - + + cdk + + Xaw3d + ncurses + libXaw3dxft + + + /usr/lib + /usr/share/man + /usr/share/doc + + - - cdk-devel - - ncurses-devel - perl - cdk - - - /usr/include - /usr/lib/pkgconfig - - + + cdk-devel + + Xaw3d-devel + ncurses-devel + libXaw3dxft-devel + cdk + + + /usr/bin + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man1 + + - - - 2023-01-03 - 5.0.20221025 - Version bump. - fury - uglyside@yandex.ru - - - 2022-01-17 - 5.0.20211216 - Version bump. - fury - uglyside@yandex.ru - - - 2020-11-28 - 5.0.20200923 - First build. - fury - uglyside@yandex.ru - - + + + 2025-06-17 + 5.0.20250116 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2023-01-03 + 5.0.20221025 + Version bump. + fury + uglyside@yandex.ru + + + 2022-01-17 + 5.0.20211216 + Version bump. + fury + uglyside@yandex.ru + + + 2020-11-28 + 5.0.20200923 + First build. + fury + uglyside@yandex.ru + + - diff --git a/util/misc/zsync/actions.py b/util/misc/zsync/actions.py index 008caa36bb..a7b26f2e73 100644 --- a/util/misc/zsync/actions.py +++ b/util/misc/zsync/actions.py @@ -2,10 +2,9 @@ # -*- coding: utf-8 -*- # # Licensed under the GNU General Public License, version 3. -# See the file http://www.gnu.org/licenses/gpl.txt +# See the file https://www.gnu.org/licenses/gpl-3.0.txt from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools from pisi.actionsapi import get def setup(): @@ -15,5 +14,5 @@ def build(): autotools.make() def install(): - autotools.rawInstall("PREFIX=/%s DESTDIR=%s" % (get.defaultprefixDIR(), get.installDIR())) + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) diff --git a/util/misc/zsync/pspec.xml b/util/misc/zsync/pspec.xml index 924d5f1240..cdf4916169 100644 --- a/util/misc/zsync/pspec.xml +++ b/util/misc/zsync/pspec.xml @@ -3,7 +3,7 @@ zsync - http://zsync.moria.org.uk/ + https://zsync.moria.org.uk/index PisiLinux Community admins@pisilinux.org @@ -12,24 +12,25 @@ app:console A file transfer program that's able to connect to rsync servers A file transfer program that's able to connect to rsync servers - http://zsync.moria.org.uk/download/zsync-0.6.2.tar.bz2 - - + https://zsync.moria.org.uk/download/zsync-0.6.3.tar.bz2 zsync - - glibc - /usr/bin - /usr/share/man/man1 - /usr/share/doc + /usr/share + + 2025-06-16 + 0.6.3 + Version bump. + Erkan IŞIK + erkanisik@pisilinux.org + 2021-11-18 0.6.2 diff --git a/x11/library/libXaw3dxft/actions.py b/x11/library/libXaw3dxft/actions.py new file mode 100644 index 0000000000..81dbc9994d --- /dev/null +++ b/x11/library/libXaw3dxft/actions.py @@ -0,0 +1,18 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file https://www.gnu.org/licenses/gpl-3.0.txt + +from pisi.actionsapi import autotools, pisitools, get + +def setup(): + autotools.configure("--prefix=/usr --disable-static") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "COPYING") diff --git a/x11/library/libXaw3dxft/pspec.xml b/x11/library/libXaw3dxft/pspec.xml new file mode 100644 index 0000000000..c0d22d2892 --- /dev/null +++ b/x11/library/libXaw3dxft/pspec.xml @@ -0,0 +1,59 @@ + + + + + libXaw3dxft + https://github.com/DaveFlater/libXaw3dXft + + Kamil Atlı + suvari@pisilinux.org + + MIT/X11 + x11.library + Athena Widgets + 3D + FreeType font support. + libXaw3dXft is an extension of libXaw3d that adds FreeType font support. + https://github.com/DaveFlater/libXaw3dXft/releases/download/v1.6.3/libxaw3dxft-1.6.3.tar.xz + + Xaw3d-devel + libXft-devel + + + + + + + + libXaw3dxft + + Xaw3d + libXft + + + /usr/lib + /usr/share + + + + + libXaw3dxft-devel + + Xaw3d-devel + libXft-devel + libXaw3dxft + + + /usr/include + /usr/lib/pkgconfig + + + + + + 2025-06-17 + 1.6.3 + First release. + Kamil Atlı + suvari@pisilinux.org + + +