libfreehand, libqxp, libzmf new package

This commit is contained in:
Rmys
2023-05-17 23:42:08 +03:00
parent 59fee5195e
commit f096cc7ace
14 changed files with 5528 additions and 2238 deletions
+5206 -2236
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1 +1 @@
dfe94c373029da0da99735d7a6eb8392e0776a36
83505cc6ee53eecee1e57f1acdb64b4339e07cd7
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
63c3d0f9cf252efc17d4592299e99a1601762875
b064dbc56eb10dfc7e79a4a4bb9ebf12610c2513
@@ -0,0 +1,20 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.configure("--disable-werror")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README")
@@ -0,0 +1,29 @@
From af3197f795625f5188602073205a34369698b6df Mon Sep 17 00:00:00 2001
From: Heiko Becker <heirecka@exherbo.org>
Date: Fri, 4 Oct 2019 01:46:12 +0200
Subject: [PATCH] Add missing semicolon to fix build with icu 65.1
Change-Id: I7a0b0d600e9f7770245a7485813a944bfac4f088
Reviewed-on: https://gerrit.libreoffice.org/80224
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Miklos Vajna <vmiklos@collabora.com>
---
src/lib/libfreehand_utils.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/lib/libfreehand_utils.cpp b/src/lib/libfreehand_utils.cpp
index 439c457..32f23e0 100644
--- a/src/lib/libfreehand_utils.cpp
+++ b/src/lib/libfreehand_utils.cpp
@@ -162,7 +162,7 @@ void libfreehand::_appendUTF16(librevenge::RVNGString &text, std::vector<unsigne
while (j < length)
{
UChar32 c;
- U16_NEXT(s, j, length, c)
+ U16_NEXT(s, j, length, c);
unsigned char outbuf[U8_MAX_LENGTH+1];
int i = 0;
U8_APPEND_UNSAFE(&outbuf[0], i, c);
--
2.23.0
+69
View File
@@ -0,0 +1,69 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libfreehand</Name>
<Homepage>https://wiki.documentfoundation.org/DLP/Libraries/libfreehand</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>MPL2</License>
<IsA>library</IsA>
<Summary>A library for import of Aldus/Macromedia/Adobe FreeHand documents</Summary>
<Icon>libfreehand</Icon>
<Description>A library for import of Aldus/Macromedia/Adobe FreeHand documents</Description>
<Archive sha1sum="f945b23b7801a3601998973028a054ee379967cb" type="tarxz">https://dev-www.libreoffice.org/src/libfreehand/libfreehand-0.1.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>gperf</Dependency>
<Dependency>doxygen</Dependency>
<Dependency>zlib-devel</Dependency>
<Dependency>icu4c-devel</Dependency>
<Dependency>boost-devel</Dependency>
<Dependency>cppunit-devel</Dependency>
<Dependency>lcms2-devel</Dependency>
<Dependency>librevenge-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">libfreehand-0.1.2-icu-fix.patch</Patch>
</Patches>
</Source>
<Package>
<Name>libfreehand</Name>
<RuntimeDependencies>
<Dependency>zlib</Dependency>
<Dependency>lcms2</Dependency>
<Dependency>librevenge</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>libfreehand-devel</Name>
<Summary>Development files for libfreehand</Summary>
<RuntimeDependencies>
<Dependency>zlib-devel</Dependency>
<Dependency>librevenge-devel</Dependency>
<Dependency release="current">libfreehand</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2023-05-17</Date>
<Version>0.1.2</Version>
<Comment>First release</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>libfreehand</Name>
<Summary xml:lang="tr">A library for import of Aldus/Macromedia/Adobe FreeHand documents</Summary>
<Description xml:lang="tr">A library for import of Aldus/Macromedia/Adobe FreeHand documents</Description>
</Source>
</PISI>
+20
View File
@@ -0,0 +1,20 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.configure()
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README")
+67
View File
@@ -0,0 +1,67 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libqxp</Name>
<Homepage>https://wiki.documentfoundation.org/DLP/Libraries/libqxp</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>MPL2</License>
<IsA>library</IsA>
<Summary>A library that parses the file format of QuarkXPress documents</Summary>
<Icon>libqxp</Icon>
<Description>A library that parses the file format of QuarkXPress documents</Description>
<Archive sha1sum="f0e1b3d7996f2340a95309b61d9b27b596aca3da" type="tarxz">https://dev-www.libreoffice.org/src/libqxp/libqxp-0.0.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>doxygen</Dependency>
<Dependency>boost-devel</Dependency>
<Dependency>icu4c-devel</Dependency>
<Dependency>cppunit-devel</Dependency>
<Dependency>librevenge-devel</Dependency>
</BuildDependencies>
<!--
<Patches>
<Patch>libqxp.patch</Patch>
<Patch level="1">libqxp.patch</Patch>
</Patches>
-->
</Source>
<Package>
<Name>libqxp</Name>
<RuntimeDependencies>
<Dependency>icu4c</Dependency>
<Dependency>librevenge</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>libqxp-devel</Name>
<Summary>Development files for libqxp</Summary>
<RuntimeDependencies>
<Dependency>librevenge-devel</Dependency>
<Dependency release="current">libqxp</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2023-05-17</Date>
<Version>0.0.2</Version>
<Comment>First release</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>libqxp</Name>
<Summary xml:lang="tr">A library that parses the file format of QuarkXPress documents</Summary>
<Description xml:lang="tr">A library that parses the file format of QuarkXPress documents</Description>
</Source>
</PISI>
+20
View File
@@ -0,0 +1,20 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.configure("--disable-werror")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README*")
+71
View File
@@ -0,0 +1,71 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libzmf</Name>
<Homepage>https://wiki.documentfoundation.org/DLP/Libraries/libzmf</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>MPL</License>
<IsA>library</IsA>
<Summary>A library for import of Zoner drawing and bitmap files</Summary>
<Icon>libzmf</Icon>
<Description>A library for import of Zoner drawing and bitmap files</Description>
<Archive sha1sum="c0dc491800f4aa24960d20fa38b9f84df1c15e07" type="tarxz">https://dev-www.libreoffice.org/src/libzmf/libzmf-0.0.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>doxygen</Dependency>
<Dependency>zlib-devel</Dependency>
<Dependency>icu4c-devel</Dependency>
<Dependency>boost-devel</Dependency>
<Dependency>cppunit-devel</Dependency>
<Dependency>libpng-devel</Dependency>
<Dependency>librevenge-devel</Dependency>
</BuildDependencies>
<!--
<Patches>
<Patch>libzmf.patch</Patch>
<Patch level="1">libzmf.patch</Patch>
</Patches>
-->
</Source>
<Package>
<Name>libzmf</Name>
<RuntimeDependencies>
<Dependency>zlib</Dependency>
<Dependency>icu4c</Dependency>
<Dependency>libpng</Dependency>
<Dependency>librevenge</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>libzmf-devel</Name>
<Summary>Development files for libzmf</Summary>
<RuntimeDependencies>
<Dependency>librevenge-devel</Dependency>
<Dependency release="current">libzmf</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2023-05-17</Date>
<Version>0.0.2</Version>
<Comment>First release</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>libzmf</Name>
<Summary xml:lang="tr">A library for import of Zoner drawing and bitmap files</Summary>
<Description xml:lang="tr">A library for import of Zoner drawing and bitmap files</Description>
</Source>
</PISI>