Merge pull request #1103 from ayhanyalcinsoy/master

scribus and deps
This commit is contained in:
Ertuğrul Erata
2016-01-24 21:37:26 +02:00
11 changed files with 108864 additions and 108419 deletions
+25
View File
@@ -0,0 +1,25 @@
#!/usr/bin/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 shelltools
from pisi.actionsapi import get
def setup():
autotools.configure("--disable-static \
--without-docs")
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.install()
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING*", "NEWS", "README")
+120
View File
@@ -0,0 +1,120 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libmspub</Name>
<Homepage>http://www.freedesktop.org/wiki/Software/libmspub</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<License>LGPLv2.1</License>
<License>MPLv1.1</License>
<IsA>app:gui</IsA>
<Summary>Library parsing the Microsoft Publisher documents</Summary>
<Description>Libmspub is library providing ability to interpret and import Microsoft Publisher content into various applications. You can find it being used in libreoffice. </Description>
<Archive sha1sum="0a6743a07ee3393bd4437a8bbee12fa62c9cd0f4" type="tarbz2">http://dev-www.libreoffice.org/src/libmspub-0.1.2.tar.bz2</Archive>
<BuildDependencies>
<Dependency>boost-devel</Dependency>
<Dependency>doxygen</Dependency>
<Dependency>help2man</Dependency>
<Dependency>icu4c-devel</Dependency>
<Dependency>librevenge-devel</Dependency>
<Dependency>zlib-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>libmspub</Name>
<RuntimeDependencies>
<Dependency>icu4c</Dependency>
<Dependency>librevenge</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="data">/usr/bin</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="library">/usr/lib</Path>
</Files>
</Package>
<Package>
<Name>libmspub-devel</Name>
<Summary>libmspub için geliştirme dosyaları</Summary>
<RuntimeDependencies>
<Dependency>icu4c-devel</Dependency>
<Dependency>librevenge-devel</Dependency>
<Dependency release="current">libmspub</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="9">
<Date>2016-01-24</Date>
<Version>0.1.2</Version>
<Comment>version bump</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="8">
<Date>2015-01-02</Date>
<Version>0.1.1</Version>
<Comment>Dep Fixed.</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
<Update release="7">
<Date>2014-09-26</Date>
<Version>0.1.1</Version>
<Comment>Version bump.</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2014-05-28</Date>
<Version>0.0.6</Version>
<Comment>Version bump.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2014-02-22</Date>
<Version>0.0.5</Version>
<Comment>Rebuild Unused</Comment>
<Name>Varol Maksutoğlu</Name>
<Email>waroi@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2013-10-14</Date>
<Version>0.0.5</Version>
<Comment>Rebuild for icu4c</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-03-14</Date>
<Version>0.0.5</Version>
<Comment>Version bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-02-17</Date>
<Version>0.0.4</Version>
<Comment>Version bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2013-01-23</Date>
<Version>0.0.3</Version>
<Comment>First release</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
+13
View File
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>libmspub</Name>
<Summary xml:lang="en">Library parsing the Microsoft Publisher documents</Summary>
<Description xml:lang="en">Libmspub is library providing ability to interpret and import Microsoft Publisher content into various applications. You can find it being used in libreoffice. </Description>
</Source>
<Package>
<Name>libmspub-devel</Name>
<Summary xml:lang="tr">libmspub için geliştirme dosyaları</Summary>
</Package>
</PISI>
+21
View File
@@ -0,0 +1,21 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/copyleft/gpl.txt
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
from pisi.actionsapi import pisitools
from pisi.actionsapi import autotools
def setup():
autotools.configure("--disable-silent-rules --disable-static --disable-werror")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("COPYING")
+58
View File
@@ -0,0 +1,58 @@
<PISI>
<Source>
<Name>libpagemaker</Name>
<Homepage>https://wiki.documentfoundation.org/DLP/Libraries/libpagemaker</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>MPL2</License>
<Icon>libpagemaker</Icon>
<IsA>library</IsA>
<Summary>a library that parses the file format of Aldus/Adobe PageMaker documents</Summary>
<Description>a library that parses the file format of Aldus/Adobe PageMaker documents</Description>
<Archive sha1sum="f4b57adf287a39daf60dfb82650be38eb2758c8a" type="targz">http://dev-www.libreoffice.org/src/libpagemaker/libpagemaker-0.0.2.tar.gz</Archive>
<BuildDependencies>
<Dependency>boost-devel</Dependency>
<Dependency>doxygen</Dependency>
<Dependency>help2man</Dependency>
<Dependency>librevenge-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>libpagemaker</Name>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
<Dependency>librevenge</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="library">/usr/lib/libpagemaker-*</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>libpagemaker-devel</Name>
<RuntimeDependencies>
<Dependency>librevenge-devel</Dependency>
<Dependency release="current">libpagemaker</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2016-01-24</Date>
<Version>0.0.2</Version>
<Comment>First Release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
+2 -1
View File
@@ -14,7 +14,8 @@ def setup():
pisitools.dosed("CMakeLists.txt", "\"share\/doc\/\$\{MAIN_DIR_NAME\}.*", "\"share/doc/${MAIN_DIR_NAME}/\")")
cmaketools.configure("-DWANT_DISTROBUILD=YES \
-DWANT_QT5SUPPORT=ON")
-DWANT_QT5SUPPORT=ON \
-DWANT_GRAPHICSMAGICK=1")
def build():
+5 -1
View File
@@ -28,7 +28,7 @@
<Dependency>python-devel</Dependency>
<Dependency>ghostscript-devel</Dependency>
<Dependency>gnutls-devel</Dependency>
<!-- <Dependency>python-imaging</Dependency> -->
<Dependency>poppler-devel</Dependency>
<Dependency>qt5-base-devel</Dependency>
<Dependency>qt5-webkit-devel</Dependency>
<Dependency>qt5-location-devel</Dependency>
@@ -41,6 +41,10 @@
<Dependency>boost-devel</Dependency>
<Dependency>libwpg-devel</Dependency>
<Dependency>podofo-devel</Dependency>
<Dependency>libvisio-devel</Dependency>
<Dependency>libcdr-devel</Dependency>
<Dependency>GraphicsMagick-devel</Dependency>
<Dependency>libpagemaker-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch>scribus-standard-font-paths.patch</Patch>
+108618 -108415
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1 +1 @@
8f7ad02444ea130cec216aba1c65d4a4b2ef65e5
9073a15b024e2de0261379a20862d3c867870fd7
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
97d98a628db02cd0c0be4778270205af7098f2e3
df28c7fdff959c90182a8f7fccbd7ca4f8f5fdf0