gconf: initial import

This commit is contained in:
Danny Rawlins 2019-10-06 15:35:57 +11:00
parent 52abf23b57
commit a4c5a26f72
3 changed files with 84 additions and 0 deletions

53
gconf/.footprint Normal file
View File

@ -0,0 +1,53 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/gconf-merge-tree
-rwxr-xr-x root/root usr/bin/gconftool-2
drwxr-xr-x root/root usr/etc/
drwxr-xr-x root/root usr/etc/gconf/
drwxr-xr-x root/root usr/etc/gconf/2/
-rw-r--r-- root/root usr/etc/gconf/2/path
drwxr-xr-x root/root usr/etc/gconf/gconf.xml.defaults/
drwxr-xr-x root/root usr/etc/gconf/gconf.xml.mandatory/
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/gconf/
drwxr-xr-x root/root usr/include/gconf/2/
drwxr-xr-x root/root usr/include/gconf/2/gconf/
-rw-r--r-- root/root usr/include/gconf/2/gconf/gconf-changeset.h
-rw-r--r-- root/root usr/include/gconf/2/gconf/gconf-client.h
-rw-r--r-- root/root usr/include/gconf/2/gconf/gconf-engine.h
-rw-r--r-- root/root usr/include/gconf/2/gconf/gconf-enum-types.h
-rw-r--r-- root/root usr/include/gconf/2/gconf/gconf-error.h
-rw-r--r-- root/root usr/include/gconf/2/gconf/gconf-listeners.h
-rw-r--r-- root/root usr/include/gconf/2/gconf/gconf-schema.h
-rw-r--r-- root/root usr/include/gconf/2/gconf/gconf-value.h
-rw-r--r-- root/root usr/include/gconf/2/gconf/gconf.h
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/GConf/
drwxr-xr-x root/root usr/lib/GConf/2/
-rw-r--r-- root/root usr/lib/GConf/2/libgconfbackend-oldxml.a
-rwxr-xr-x root/root usr/lib/GConf/2/libgconfbackend-oldxml.la
-rwxr-xr-x root/root usr/lib/GConf/2/libgconfbackend-oldxml.so
-rw-r--r-- root/root usr/lib/GConf/2/libgconfbackend-xml.a
-rwxr-xr-x root/root usr/lib/GConf/2/libgconfbackend-xml.la
-rwxr-xr-x root/root usr/lib/GConf/2/libgconfbackend-xml.so
drwxr-xr-x root/root usr/lib/gconf/
-rwxr-xr-x root/root usr/lib/gconf/gconfd-2
-rw-r--r-- root/root usr/lib/libgconf-2.a
-rwxr-xr-x root/root usr/lib/libgconf-2.la
lrwxrwxrwx root/root usr/lib/libgconf-2.so -> libgconf-2.so.4.1.5
lrwxrwxrwx root/root usr/lib/libgconf-2.so.4 -> libgconf-2.so.4.1.5
-rwxr-xr-x root/root usr/lib/libgconf-2.so.4.1.5
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/gconf-2.0.pc
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/aclocal/
-rw-r--r-- root/root usr/share/aclocal/gconf-2.m4
drwxr-xr-x root/root usr/share/dbus-1/
drwxr-xr-x root/root usr/share/dbus-1/services/
-rw-r--r-- root/root usr/share/dbus-1/services/org.gnome.GConf.service
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/gconftool-2.1.gz
drwxr-xr-x root/root usr/share/sgml/
drwxr-xr-x root/root usr/share/sgml/gconf/
-rw-r--r-- root/root usr/share/sgml/gconf/gconf-1.0.dtd

5
gconf/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF33InSu4Rppkyyw0KQkL6GinSUt1FIA/KaGft1OdYgqJgIMNISibgooO8XE0vEHlHkJpE5w/WqTLVLPmNrURung4=
SHA256 (Pkgfile) = b3b652cbb36720036a666478a6337481db30f8bdd97254ae720034a5079ea228
SHA256 (.footprint) = a3ffa1e107a6212b5fcd90eee0763047f86ce7da3ba8260317527f48937ae82e
SHA256 (GConf-3.2.6.tar.xz) = 1912b91803ab09a5eed34d364bf09fe3a2a9c96751fde03a4e0cfa51a04d784c

26
gconf/Pkgfile Normal file
View File

@ -0,0 +1,26 @@
# Description: An obsolete configuration database system
# URL: https://projects-old.gnome.org/gconf/
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: dbus-glib intltool libxml2
name=gconf
version=3.2.6
release=1
source=(https://download.gnome.org/sources/GConf/3.2/GConf-$version.tar.xz)
build() {
cd GConf-$version
./configure \
--prefix=/usr \
--libexecdir=/usr/lib/$name \
--disable-orbit \
--disable-nls \
--enable-gsettings-backend=no
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/gtk-doc
rm -r $PKG/usr/share/locale
}