inkscape: updated to 1.3.2

This commit is contained in:
John McQuah 2023-11-29 22:57:22 +00:00
parent cabe7cfb06
commit 74b440f47a
3 changed files with 12 additions and 8 deletions

View File

@ -112,8 +112,8 @@ drwxr-xr-x root/root usr/lib/cmake/2Geom/
-rw-r--r-- root/root usr/lib/cmake/2Geom/2GeomTargets-release.cmake
-rw-r--r-- root/root usr/lib/cmake/2Geom/2GeomConfig.cmake
-rw-r--r-- root/root usr/lib/cmake/2Geom/2GeomConfigVersion.cmake
-rwxr-xr-x root/root usr/lib/inkscape/libinkscape_base.so.1.3.0.0
lrwxrwxrwx root/root usr/lib/inkscape/libinkscape_base.so -> libinkscape_base.so.1.3.0.0
-rwxr-xr-x root/root usr/lib/inkscape/libinkscape_base.so.1.3.2.0
lrwxrwxrwx root/root usr/lib/inkscape/libinkscape_base.so -> libinkscape_base.so.1.3.2.0
drwxr-xr-x root/root usr/share/icons/
drwxr-xr-x root/root usr/share/metainfo/
drwxr-xr-x root/root usr/share/inkscape/

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF34hVXYtmi7CF58pktHPUd6NKClaGx49tJ0cwpVXhbX3b7aUvc8GDYKIzTPtUWDWoHy8O043j8XgePkOjHe0EPwk=
SHA256 (Pkgfile) = bf4ba07138640a6d14e77b029d2d36882defcb7640fbaac6d0fac1cb2f411e9a
SHA256 (.footprint) = d3808fa37ad1a4336f4e9f53ed314b39f4f1fb704f0771967bf9ae6c1891a500
SHA256 (inkscape-1.3.tar.xz) = bf4f286b025e0169b8948cc14d5199a9b4c204d761c894c4b48496571ec76307
RWSagIOpLGJF3wyLN15Q8jscNp2fv60QTwpDX5wSFuxm5HL9D9rSbNwh5+kqCCPAuxUt0Gpro1Yw8ldnFRQVCzxZI3z561/T8QY=
SHA256 (Pkgfile) = 1f0d8a52606fda103e21cfcb5e84cc14b0361607148957e81adc15d89b1080c5
SHA256 (.footprint) = 6d8b8cd774c23c747c001768fabed559e31015c6df311c4b4405c5c4cdc1a453
SHA256 (inkscape-1.3.2.tar.xz) = dbd1844dc443fe5e10d3e9a887144e5fb7223852fff191cfb5ef7adeab0e086b

View File

@ -4,7 +4,7 @@
# Depends on: boehm-gc boost double-conversion graphicsmagick gsl gtkmm3 libsoup libxslt poppler popt potrace gdl
name=inkscape
version=1.3
version=1.3.2
release=1
source=(https://media.inkscape.org/dl/resources/file/$name-$version.tar.xz)
@ -12,6 +12,10 @@ build() {
[ -e /usr/include/poppler/glib/poppler.h ] || { echo "install glib and then rebuild poppler, you need it for ${name}."; exit 1; }
export LDFLAGS+=" -Wl,-rpath=/usr/lib/inkscape"
# add missing header file (merge request 6089)
sed -e '/^#include <libxml.uri/a #include <libxml/xmlmemory.h>' \
-i inkscape-${version}*/src/object/uri.h
cmake -S inkscape-${version}* -B build -G Ninja \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_INSTALL_LIBDIR=lib \
@ -34,7 +38,7 @@ build() {
prt-get isinst bash-completion || rm -rf $PKG/usr/share/bash-completion
/usr/bin/python3 -mcompileall $PKG
/usr/bin/python3 -m compileall $PKG
/usr/bin/python3 -O -m compileall $PKG
/usr/bin/python3 -OO -m compileall $PKG
}