ghostscript:ver bump

This commit is contained in:
blue-devil
2020-09-16 00:35:15 +02:00
parent ee4f57a145
commit 016baec692
3 changed files with 60 additions and 43 deletions
+14 -13
View File
@@ -4,10 +4,10 @@
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import get
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
# Remove local copies for system libs
@@ -18,20 +18,21 @@ def setup():
autotools.autoreconf("-fi")
options = "--disable-compile-inits \
--disable-gtk \
--enable-dynamic \
--with-system-libtiff \
options = "--with-x \
--with-ijs \
--with-drivers=ALL \
--disable-gtk \
--without-omni \
--with-libpaper \
--with-jbig2dec \
--enable-fontconfig \
--enable-dynamic \
--enable-freetype \
--without-luratech \
--without-omni \
--with-x \
--with-fontpath=/usr/share/fonts:/usr/share/fonts/default/ghostscript:/usr/share/cups/fonts:/usr/share/fonts/TTF:/usr/share/fonts/Type1:/usr/share/poppler/cMap/*"
--with-drivers=ALL \
--enable-fontconfig \
--with-system-libtiff \
--disable-compile-inits \
--with-fontpath=/usr/share/fonts:/usr/share/fonts/default/ghostscript:/usr/share/cups/fonts:/usr/share/fonts/TTF:/usr/share/fonts/Type1:/usr/share/poppler/cMap/*"
options += " --disable-cups --includedir=/usr/include --libdir=/usr/lib32" if get.buildTYPE() == "emul32" else " --enable-cups"
autotools.configure(options)
@@ -40,9 +41,9 @@ def setup():
pisitools.dosed("configure.ac", "AM_PROG_CC_STDC", "AC_PROG_CC")
shelltools.system("./autogen.sh \
--prefix=/usr \
--mandir=/usr/share/man \
--enable-shared \
--disable-static \
--enable-shared")
--mandir=/usr/share/man")
def build():
autotools.make("-C ijs")
@@ -56,4 +57,4 @@ def install():
if not get.buildTYPE() == "emul32": autotools.rawInstall("-C ijs DESTDIR=%s" % get.installDIR())
pisitools.dohtml("doc/*")
pisitools.dodoc("LICENSE", "doc/COPYING")
pisitools.dodoc("LICENSE", "doc/COPYING")