From aa41c99c617b11414dbc6a90fadcfbe179fae205 Mon Sep 17 00:00:00 2001 From: Danny Rawlins Date: Fri, 29 May 2020 00:33:35 +1000 Subject: [PATCH] gdl: initial import --- gdl/.footprint | 26 ++++++++++++++++++++++++++ gdl/.signature | 5 +++++ gdl/Pkgfile | 24 ++++++++++++++++++++++++ 3 files changed, 55 insertions(+) create mode 100644 gdl/.footprint create mode 100644 gdl/.signature create mode 100644 gdl/Pkgfile diff --git a/gdl/.footprint b/gdl/.footprint new file mode 100644 index 000000000..bf78c074a --- /dev/null +++ b/gdl/.footprint @@ -0,0 +1,26 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/libgdl-3.0/ +drwxr-xr-x root/root usr/include/libgdl-3.0/gdl/ +-rw-r--r-- root/root usr/include/libgdl-3.0/gdl/gdl-dock-bar.h +-rw-r--r-- root/root usr/include/libgdl-3.0/gdl/gdl-dock-item-grip.h +-rw-r--r-- root/root usr/include/libgdl-3.0/gdl/gdl-dock-item.h +-rw-r--r-- root/root usr/include/libgdl-3.0/gdl/gdl-dock-layout.h +-rw-r--r-- root/root usr/include/libgdl-3.0/gdl/gdl-dock-master.h +-rw-r--r-- root/root usr/include/libgdl-3.0/gdl/gdl-dock-object.h +-rw-r--r-- root/root usr/include/libgdl-3.0/gdl/gdl-dock-placeholder.h +-rw-r--r-- root/root usr/include/libgdl-3.0/gdl/gdl-dock.h +-rw-r--r-- root/root usr/include/libgdl-3.0/gdl/gdl.h +-rw-r--r-- root/root usr/include/libgdl-3.0/gdl/libgdltypebuiltins.h +drwxr-xr-x root/root usr/lib/ +drwxr-xr-x root/root usr/lib/girepository-1.0/ +-rw-r--r-- root/root usr/lib/girepository-1.0/Gdl-3.typelib +-rwxr-xr-x root/root usr/lib/libgdl-3.la +lrwxrwxrwx root/root usr/lib/libgdl-3.so -> libgdl-3.so.5.0.9 +lrwxrwxrwx root/root usr/lib/libgdl-3.so.5 -> libgdl-3.so.5.0.9 +-rwxr-xr-x root/root usr/lib/libgdl-3.so.5.0.9 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/gdl-3.0.pc +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/gir-1.0/ +-rw-r--r-- root/root usr/share/gir-1.0/Gdl-3.gir diff --git a/gdl/.signature b/gdl/.signature new file mode 100644 index 000000000..38dcc76bc --- /dev/null +++ b/gdl/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF336DKi2rHB4G3GnciVE8Uhkd241vdbUoycYO8jA2beXhyY3ukSGY840C7i6PFMZhgVBcSXvm5UmO2ZEYeKH4DAM= +SHA256 (Pkgfile) = fc0c58d0cb9b73e6d1d53a04cc9dc61d954d3d77062345121433bb0d71c78869 +SHA256 (.footprint) = a305c822d09bd141075eed720ae853e508cf4e21f8f087945d000ac5481e3509 +SHA256 (gdl-3.34.0.tar.xz) = 858b30f0cdce4c4cb3e8365a7d54ce57c388beff38ea583be5449bc78dda8d02 diff --git a/gdl/Pkgfile b/gdl/Pkgfile new file mode 100644 index 000000000..9762e7028 --- /dev/null +++ b/gdl/Pkgfile @@ -0,0 +1,24 @@ +# Description: GNOME Docking Library +# URL: https://developer.gnome.org/gdl/ +# Maintainer: Tim Biermann, tbier at posteo dot de +# Depends on: gtk3 + +name=gdl +version=3.34.0 +release=1 +source=(https://ftp.gnome.org/pub/GNOME/sources/$name/${version%.*}/$name-$version.tar.xz) + +build() { + cd $name-$version + + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --disable-static \ + --disable-nls + + make + make DESTDIR=$PKG install + + rm -r $PKG/usr/share/gtk-doc +}