summaryrefslogtreecommitdiff
path: root/libs/libpng
diff options
context:
space:
mode:
authorrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
committerrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
commitc82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch)
tree56d864b5a5c6c145edd96178ae219a8f90e191a6 /libs/libpng
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'libs/libpng')
-rw-r--r--libs/libpng/.footprint29
-rw-r--r--libs/libpng/.signature6
-rw-r--r--libs/libpng/MAKEPKG33
3 files changed, 68 insertions, 0 deletions
diff --git a/libs/libpng/.footprint b/libs/libpng/.footprint
new file mode 100644
index 0000000..303f41d
--- /dev/null
+++ b/libs/libpng/.footprint
@@ -0,0 +1,29 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/libpng16-config
+-rwxr-xr-x root/root usr/bin/png-fix-itxt
+-rwxr-xr-x root/root usr/bin/pngfix
+lrwxrwxrwx root/root usr/bin/libpng-config -> libpng16-config
+drwxr-xr-x root/root usr/include/
+lrwxrwxrwx root/root usr/include/png.h -> libpng16/png.h
+lrwxrwxrwx root/root usr/include/pngconf.h -> libpng16/pngconf.h
+lrwxrwxrwx root/root usr/include/pnglibconf.h -> libpng16/pnglibconf.h
+drwxr-xr-x root/root usr/include/libpng16/
+-rw-r--r-- root/root usr/include/libpng16/png.h
+-rw-r--r-- root/root usr/include/libpng16/pngconf.h
+-rw-r--r-- root/root usr/include/libpng16/pnglibconf.h
+drwxr-xr-x root/root usr/lib/
+-rwxr-xr-x root/root usr/lib/libpng16.so.16.58.0
+lrwxrwxrwx root/root usr/lib/libpng.so -> libpng16.so
+lrwxrwxrwx root/root usr/lib/libpng16.so -> libpng16.so.16.58.0
+lrwxrwxrwx root/root usr/lib/libpng16.so.16 -> libpng16.so.16.58.0
+drwxr-xr-x root/root usr/lib/pkgconfig/
+-rw-r--r-- root/root usr/lib/pkgconfig/libpng16.pc
+lrwxrwxrwx root/root usr/lib/pkgconfig/libpng.pc -> libpng16.pc
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man3/
+-rw-r--r-- root/root usr/share/man/man3/libpng.3.gz
+-rw-r--r-- root/root usr/share/man/man3/libpngpf.3.gz
+drwxr-xr-x root/root usr/share/man/man5/
+-rw-r--r-- root/root usr/share/man/man5/png.5.gz
diff --git a/libs/libpng/.signature b/libs/libpng/.signature
new file mode 100644
index 0000000..f7d0406
--- /dev/null
+++ b/libs/libpng/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mIy+zhjEskp1sHg4ZNt1BZ4by+oaqo4qNGZLW4GJufHkvjvyLoLJ5pIgnFL5U280yNvR9P4ISAF//CgKGQnHJwM=
+
+SHA256 (MAKEPKG) = c630658376ec4594858734ddcd2ce2c9170699cdf26b1169628694034031bd08
+SHA256 (.footprint) = dae41bd0c8257104ebcebf703f21aa71bbd5329c8ce8c7dd623de3273607e9b6
+SHA256 (libpng-1.6.58.tar.xz) = 28eb403f51f0f7405249132cecfe82ea5c0ef97f1b32c5a65828814ae0d34775
+SHA256 (libpng#1.6.58-1.pkg.tar.gz) = bcd5681e6bcb0329d674f6b03c18f15ccc1d6a0eb6befb9ffb7472cf3ff2f6df
diff --git a/libs/libpng/MAKEPKG b/libs/libpng/MAKEPKG
new file mode 100644
index 0000000..7ac5674
--- /dev/null
+++ b/libs/libpng/MAKEPKG
@@ -0,0 +1,33 @@
+#!/bin/mkpkg
+# description: PNG image format library
+# url: http://www.libpng.org/
+
+name=libpng
+version=1.6.58
+release=1
+depends=(zlib)
+source=(https://download.sourceforge.net/$name/$name-$version.tar.xz)
+
+sha256sums=(
+ "28eb403f51f0f7405249132cecfe82ea5c0ef97f1b32c5a65828814ae0d34775"
+)
+
+build() {
+ cd $name-$version
+
+ ./configure \
+ --prefix=/usr \
+ --disable-static
+
+ make
+ make DESTDIR=$PKG install
+
+ rm -f $PKG/usr/lib/*.la
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh