Updates to gconf-editor, gconf2, libglade2 and libwnck in support
of Gnome 2.6.
This commit is contained in:
parent
d5afa736ff
commit
ebc95e1a7e
@ -1,8 +1,8 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2003/10/07 17:24:13 marcm Exp $
|
||||
# $OpenBSD: Makefile,v 1.2 2004/06/23 03:23:48 marcm Exp $
|
||||
|
||||
COMMENT= "editor for the GConf configuration system"
|
||||
|
||||
DISTNAME= gconf-editor-2.4.0
|
||||
DISTNAME= gconf-editor-2.6.2
|
||||
CATEGORIES= devel x11/gnome
|
||||
|
||||
HOMEPAGE= http://www.gnome.org/
|
||||
@ -15,7 +15,7 @@ PERMIT_PACKAGE_FTP= Yes
|
||||
PERMIT_DISTFILES_CDROM= Yes
|
||||
PERMIT_DISTFILES_FTP= Yes
|
||||
|
||||
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/gconf-editor/2.4/}
|
||||
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/gconf-editor/2.6/}
|
||||
EXTRACT_SUFX= .tar.bz2
|
||||
|
||||
BUILD_DEPENDS= :pkgconfig-*:devel/pkgconfig
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (gconf-editor-2.4.0.tar.bz2) = 7ebc352062fc8b6d3c09a69ad6e963a7
|
||||
RMD160 (gconf-editor-2.4.0.tar.bz2) = d3562f388892e01d82a6706845a190d6a403b0aa
|
||||
SHA1 (gconf-editor-2.4.0.tar.bz2) = 685603b099ea04ecf91b77de88c88c21724caf64
|
||||
MD5 (gconf-editor-2.6.2.tar.bz2) = 4b739532de350969c71f96c3b97f1093
|
||||
RMD160 (gconf-editor-2.6.2.tar.bz2) = 1c3f1dd84e219c7b571bd29dd84fe36c00da95d8
|
||||
SHA1 (gconf-editor-2.6.2.tar.bz2) = d4f72ed21a5582a5be5160dbd6e5f515a610a50e
|
||||
|
@ -1,31 +1,70 @@
|
||||
$OpenBSD: patch-ltmain_sh,v 1.1.1.1 2003/10/07 17:24:13 marcm Exp $
|
||||
--- ltmain.sh.orig Tue Jun 3 14:03:04 2003
|
||||
+++ ltmain.sh Thu Jun 5 09:02:42 2003
|
||||
@@ -1290,6 +1290,17 @@ EOF
|
||||
continue
|
||||
;;
|
||||
|
||||
+ -pthread)
|
||||
+ case $host in
|
||||
+ *-*-openbsd*)
|
||||
+ deplibs="$deplibs $arg"
|
||||
+ ;;
|
||||
+ *)
|
||||
+ continue
|
||||
+ ;;
|
||||
+ esac
|
||||
+ ;;
|
||||
+
|
||||
-module)
|
||||
module=yes
|
||||
continue
|
||||
@@ -1961,6 +1972,9 @@ EOF
|
||||
$OpenBSD: patch-ltmain_sh,v 1.2 2004/06/23 03:23:48 marcm Exp $
|
||||
--- ltmain.sh.orig Wed May 19 18:46:14 2004
|
||||
+++ ltmain.sh Mon Jun 21 22:26:15 2004
|
||||
@@ -1857,9 +1857,12 @@ EOF
|
||||
if test "$linkmode,$pass" = "prog,link"; then
|
||||
compile_deplibs="$deplib $compile_deplibs"
|
||||
finalize_deplibs="$deplib $finalize_deplibs"
|
||||
- else
|
||||
- deplibs="$deplib $deplibs"
|
||||
+ continue
|
||||
fi
|
||||
+ if test "$linkmode" = "lib"; then
|
||||
+ newdependency_libs="$deplib $newdependency_libs"
|
||||
+ fi
|
||||
+ deplibs="$deplib $deplibs"
|
||||
continue
|
||||
;;
|
||||
+ -pthread)
|
||||
+ continue
|
||||
+ ;;
|
||||
%DEPLIBS%)
|
||||
alldeplibs=yes
|
||||
continue
|
||||
-l*)
|
||||
@@ -2274,10 +2277,6 @@ EOF
|
||||
link_static=no # Whether the deplib will be linked statically
|
||||
if test -n "$library_names" &&
|
||||
{ test "$prefer_static_libs" = no || test -z "$old_library"; }; then
|
||||
- if test "$installed" = no; then
|
||||
- notinst_deplibs="$notinst_deplibs $lib"
|
||||
- need_relink=yes
|
||||
- fi
|
||||
# This is a shared library
|
||||
|
||||
# Warn about portability, can't link against -module's on
|
||||
@@ -5827,40 +5826,6 @@ relink_command=\"$relink_command\""
|
||||
# Exit here if they wanted silent mode.
|
||||
test "$show" = : && exit $EXIT_SUCCESS
|
||||
|
||||
- $echo "----------------------------------------------------------------------"
|
||||
- $echo "Libraries have been installed in:"
|
||||
- for libdir in $libdirs; do
|
||||
- $echo " $libdir"
|
||||
- done
|
||||
- $echo
|
||||
- $echo "If you ever happen to want to link against installed libraries"
|
||||
- $echo "in a given directory, LIBDIR, you must either use libtool, and"
|
||||
- $echo "specify the full pathname of the library, or use the \`-LLIBDIR'"
|
||||
- $echo "flag during linking and do at least one of the following:"
|
||||
- if test -n "$shlibpath_var"; then
|
||||
- $echo " - add LIBDIR to the \`$shlibpath_var' environment variable"
|
||||
- $echo " during execution"
|
||||
- fi
|
||||
- if test -n "$runpath_var"; then
|
||||
- $echo " - add LIBDIR to the \`$runpath_var' environment variable"
|
||||
- $echo " during linking"
|
||||
- fi
|
||||
- if test -n "$hardcode_libdir_flag_spec"; then
|
||||
- libdir=LIBDIR
|
||||
- eval flag=\"$hardcode_libdir_flag_spec\"
|
||||
-
|
||||
- $echo " - use the \`$flag' linker flag"
|
||||
- fi
|
||||
- if test -n "$admincmds"; then
|
||||
- $echo " - have your system administrator run these commands:$admincmds"
|
||||
- fi
|
||||
- if test -f /etc/ld.so.conf; then
|
||||
- $echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'"
|
||||
- fi
|
||||
- $echo
|
||||
- $echo "See any operating system documentation about shared libraries for"
|
||||
- $echo "more information, such as the ld(1) and ld.so(8) manual pages."
|
||||
- $echo "----------------------------------------------------------------------"
|
||||
exit $EXIT_SUCCESS
|
||||
;;
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
@comment $OpenBSD: PLIST,v 1.2 2003/12/15 16:51:04 naddy Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.3 2004/06/23 03:23:48 marcm Exp $
|
||||
bin/gconf-editor
|
||||
man/man1/gconf-editor.1
|
||||
share/applications/gconf-editor.desktop
|
||||
share/locale/am/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/ar/LC_MESSAGES/gconf-editor.mo
|
||||
@ -13,15 +14,19 @@ share/locale/cy/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/da/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/de/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/el/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/en_GB/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/es/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/et/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/eu/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/fa/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/fi/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/fr/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/ga/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/gl/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/gu/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/he/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/hi/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/hr/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/hu/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/id/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/it/LC_MESSAGES/gconf-editor.mo
|
||||
@ -34,9 +39,11 @@ share/locale/lv/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/mk/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/ml/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/mn/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/mr/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/ms/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/nl/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/no/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/pa/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/pl/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/pt/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/gconf-editor.mo
|
||||
@ -49,6 +56,7 @@ share/locale/sr/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/sv/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/ta/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/th/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/tr/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/uk/LC_MESSAGES/gconf-editor.mo
|
||||
share/locale/vi/LC_MESSAGES/gconf-editor.mo
|
||||
@ -66,111 +74,6 @@ share/pixmaps/gconf-editor/folder-open.png
|
||||
share/pixmaps/gconf-editor/stock-about-16.png
|
||||
@dirrm share/pixmaps/gconf-editor
|
||||
@dirrm share/pixmaps
|
||||
@dirrm share/locale/zh_TW/LC_MESSAGES
|
||||
@dirrm share/locale/zh_TW
|
||||
@dirrm share/locale/zh_CN/LC_MESSAGES
|
||||
@dirrm share/locale/zh_CN
|
||||
@dirrm share/locale/vi/LC_MESSAGES
|
||||
@dirrm share/locale/vi
|
||||
@dirrm share/locale/uk/LC_MESSAGES
|
||||
@dirrm share/locale/uk
|
||||
@dirrm share/locale/tr/LC_MESSAGES
|
||||
@dirrm share/locale/tr
|
||||
@dirrm share/locale/ta/LC_MESSAGES
|
||||
@dirrm share/locale/ta
|
||||
@dirrm share/locale/sv/LC_MESSAGES
|
||||
@dirrm share/locale/sv
|
||||
@dirrm share/locale/sr@Latn/LC_MESSAGES
|
||||
@dirrm share/locale/sr@Latn
|
||||
@dirrm share/locale/sr/LC_MESSAGES
|
||||
@dirrm share/locale/sr
|
||||
@dirrm share/locale/sq/LC_MESSAGES
|
||||
@dirrm share/locale/sq
|
||||
@dirrm share/locale/sl/LC_MESSAGES
|
||||
@dirrm share/locale/sl
|
||||
@dirrm share/locale/sk/LC_MESSAGES
|
||||
@dirrm share/locale/sk
|
||||
@dirrm share/locale/ru/LC_MESSAGES
|
||||
@dirrm share/locale/ru
|
||||
@dirrm share/locale/ro/LC_MESSAGES
|
||||
@dirrm share/locale/ro
|
||||
@dirrm share/locale/pt_BR/LC_MESSAGES
|
||||
@dirrm share/locale/pt_BR
|
||||
@dirrm share/locale/pt/LC_MESSAGES
|
||||
@dirrm share/locale/pt
|
||||
@dirrm share/locale/pl/LC_MESSAGES
|
||||
@dirrm share/locale/pl
|
||||
@dirrm share/locale/no/LC_MESSAGES
|
||||
@dirrm share/locale/no
|
||||
@dirrm share/locale/nl/LC_MESSAGES
|
||||
@dirrm share/locale/nl
|
||||
@dirrm share/locale/ms/LC_MESSAGES
|
||||
@dirrm share/locale/ms
|
||||
@dirrm share/locale/mn/LC_MESSAGES
|
||||
@dirrm share/locale/mn
|
||||
@dirrm share/locale/ml/LC_MESSAGES
|
||||
@dirrm share/locale/ml
|
||||
@dirrm share/locale/mk/LC_MESSAGES
|
||||
@dirrm share/locale/mk
|
||||
@dirrm share/locale/lv/LC_MESSAGES
|
||||
@dirrm share/locale/lv
|
||||
@dirrm share/locale/lt/LC_MESSAGES
|
||||
@dirrm share/locale/lt
|
||||
@dirrm share/locale/li/LC_MESSAGES
|
||||
@dirrm share/locale/li
|
||||
@dirrm share/locale/ko/LC_MESSAGES
|
||||
@dirrm share/locale/ko
|
||||
@dirrm share/locale/kn/LC_MESSAGES
|
||||
@dirrm share/locale/kn
|
||||
@dirrm share/locale/ja/LC_MESSAGES
|
||||
@dirrm share/locale/ja
|
||||
@dirrm share/locale/it/LC_MESSAGES
|
||||
@dirrm share/locale/it
|
||||
@dirrm share/locale/id/LC_MESSAGES
|
||||
@dirrm share/locale/id
|
||||
@dirrm share/locale/hu/LC_MESSAGES
|
||||
@dirrm share/locale/hu
|
||||
@dirrm share/locale/hi/LC_MESSAGES
|
||||
@dirrm share/locale/hi
|
||||
@dirrm share/locale/he/LC_MESSAGES
|
||||
@dirrm share/locale/he
|
||||
@dirrm share/locale/gl/LC_MESSAGES
|
||||
@dirrm share/locale/gl
|
||||
@dirrm share/locale/ga/LC_MESSAGES
|
||||
@dirrm share/locale/ga
|
||||
@dirrm share/locale/fr/LC_MESSAGES
|
||||
@dirrm share/locale/fr
|
||||
@dirrm share/locale/fi/LC_MESSAGES
|
||||
@dirrm share/locale/fi
|
||||
@dirrm share/locale/fa/LC_MESSAGES
|
||||
@dirrm share/locale/fa
|
||||
@dirrm share/locale/et/LC_MESSAGES
|
||||
@dirrm share/locale/et
|
||||
@dirrm share/locale/es/LC_MESSAGES
|
||||
@dirrm share/locale/es
|
||||
@dirrm share/locale/el/LC_MESSAGES
|
||||
@dirrm share/locale/el
|
||||
@dirrm share/locale/de/LC_MESSAGES
|
||||
@dirrm share/locale/de
|
||||
@dirrm share/locale/da/LC_MESSAGES
|
||||
@dirrm share/locale/da
|
||||
@dirrm share/locale/cy/LC_MESSAGES
|
||||
@dirrm share/locale/cy
|
||||
@dirrm share/locale/cs/LC_MESSAGES
|
||||
@dirrm share/locale/cs
|
||||
@dirrm share/locale/ca/LC_MESSAGES
|
||||
@dirrm share/locale/ca
|
||||
@dirrm share/locale/bn/LC_MESSAGES
|
||||
@dirrm share/locale/bn
|
||||
@dirrm share/locale/bg/LC_MESSAGES
|
||||
@dirrm share/locale/bg
|
||||
@dirrm share/locale/be/LC_MESSAGES
|
||||
@dirrm share/locale/be
|
||||
@dirrm share/locale/az/LC_MESSAGES
|
||||
@dirrm share/locale/az
|
||||
@dirrm share/locale/ar/LC_MESSAGES
|
||||
@dirrm share/locale/ar
|
||||
@dirrm share/locale/am/LC_MESSAGES
|
||||
@dirrm share/locale/am
|
||||
@dirrm share/locale
|
||||
@dirrm share/applications
|
||||
|
@ -1,8 +1,8 @@
|
||||
# $OpenBSD: Makefile,v 1.4 2003/10/07 05:47:57 marcm Exp $
|
||||
# $OpenBSD: Makefile,v 1.5 2004/06/23 03:23:48 marcm Exp $
|
||||
|
||||
COMMENT= "configuration database system for GNOME"
|
||||
|
||||
VERSION= 2.4.0.1
|
||||
VERSION= 2.6.2
|
||||
DISTNAME= GConf-${VERSION}
|
||||
PKGNAME= gconf2-${VERSION}
|
||||
CATEGORIES= devel
|
||||
@ -11,7 +11,7 @@ HOMEPAGE= http://www.gnome.org/projects/gconf/
|
||||
|
||||
MAINTAINER= Marc Matteo <marcm@openbsd.org>
|
||||
|
||||
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/GConf/2.4/}
|
||||
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/GConf/2.6/}
|
||||
EXTRACT_SUFX= .tar.bz2
|
||||
|
||||
MODULES= gettext
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (GConf-2.4.0.1.tar.bz2) = 2f7548d0bad24d7c4beba54d0ec98a20
|
||||
RMD160 (GConf-2.4.0.1.tar.bz2) = 81202a4f7ae834d3fa44a4f4d2fa3615744f73b4
|
||||
SHA1 (GConf-2.4.0.1.tar.bz2) = 190ed06d34699976a9a425e9e14d4ccb26220ba8
|
||||
MD5 (GConf-2.6.2.tar.bz2) = 4d55a5f49306fac3208606fcfd4f74af
|
||||
RMD160 (GConf-2.6.2.tar.bz2) = 4c0902a0fa3abff85145637b58ca36c423c71294
|
||||
SHA1 (GConf-2.6.2.tar.bz2) = e8317ff32782d4abd43a97ccdd86678af5549438
|
||||
|
12
devel/gconf2/patches/patch-configure
Normal file
12
devel/gconf2/patches/patch-configure
Normal file
@ -0,0 +1,12 @@
|
||||
$OpenBSD: patch-configure,v 1.3 2004/06/23 03:23:48 marcm Exp $
|
||||
--- configure.orig 2004-06-19 21:55:05.000000000 -0600
|
||||
+++ configure 2004-06-19 21:55:27.000000000 -0600
|
||||
@@ -7992,7 +7992,7 @@ nto-qnx*)
|
||||
openbsd*)
|
||||
version_type=sunos
|
||||
need_lib_prefix=no
|
||||
- need_version=yes
|
||||
+ need_version=no
|
||||
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
|
||||
finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
|
||||
shlibpath_var=LD_LIBRARY_PATH
|
@ -1,7 +1,7 @@
|
||||
$OpenBSD: patch-doc_gconf_Makefile_in,v 1.4 2003/10/07 05:47:57 marcm Exp $
|
||||
--- doc/gconf/Makefile.in.orig 2003-09-10 12:23:49.000000000 -0700
|
||||
+++ doc/gconf/Makefile.in 2003-09-10 20:40:29.000000000 -0700
|
||||
@@ -319,6 +319,7 @@ maintainer-clean-generic clean mostlycle
|
||||
$OpenBSD: patch-doc_gconf_Makefile_in,v 1.5 2004/06/23 03:23:48 marcm Exp $
|
||||
--- doc/gconf/Makefile.in.orig 2004-06-14 10:24:56.000000000 -0600
|
||||
+++ doc/gconf/Makefile.in 2004-06-19 21:36:49.000000000 -0600
|
||||
@@ -311,6 +311,7 @@ maintainer-clean-generic clean mostlycle
|
||||
|
||||
|
||||
@ENABLE_GTK_DOC_TRUE@all-local: html-build.stamp
|
||||
|
@ -1,11 +1,12 @@
|
||||
$OpenBSD: patch-gconf_Makefile_in,v 1.4 2003/10/07 05:47:57 marcm Exp $
|
||||
--- gconf/Makefile.in.orig 2003-09-10 12:23:41.000000000 -0700
|
||||
+++ gconf/Makefile.in 2003-09-10 20:42:37.000000000 -0700
|
||||
@@ -157,6 +157,7 @@ INCLUDES = \
|
||||
-DVERSION=\""$(VERSION)"\" \
|
||||
-DGCONF_ENABLE_INTERNALS=1 \
|
||||
-DGCONFD=\""$(GCONFD_BINARY_NAME)"\" \
|
||||
+ -DGCONF_CONFIG_SOURCE=\""$(GCONF_CONFIG_SOURCE)"\" \
|
||||
$(NULL)
|
||||
$OpenBSD: patch-gconf_Makefile_in,v 1.5 2004/06/23 03:23:48 marcm Exp $
|
||||
--- gconf/Makefile.in.orig 2004-06-14 10:24:43.000000000 -0600
|
||||
+++ gconf/Makefile.in 2004-06-19 21:40:56.000000000 -0600
|
||||
@@ -144,7 +144,7 @@ NULL =
|
||||
|
||||
GCONFD_BINARY_NAME = gconfd-2
|
||||
|
||||
-INCLUDES = -I$(top_srcdir) -I$(top_builddir) $(DEPENDENT_WITH_XML_AND_GTK_CFLAGS) -DG_LOG_DOMAIN=\"GConf\" -DGCONF_LOCALE_DIR=\""$(gconflocaledir)"\" -DGCONF_SRCDIR=\""$(absolute_top_srcdir)"\" -DGCONF_CONFDIR=\""$(sysconfdir)/gconf/$(MAJOR_VERSION)"\" -DGCONF_ETCDIR=\""$(sysconfdir)/gconf"\" -DGCONF_BINDIR=\""$(bindir)"\" -DGCONF_SERVERDIR=\""$(libexecdir)"\" -DGCONF_BUILDDIR=\""$(top_builddir)"\" -DGCONF_BACKEND_DIR=\""$(pkglibdir)/$(MAJOR_VERSION)"\" -DVERSION=\""$(VERSION)"\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\""$(GCONFD_BINARY_NAME)"\" $(NULL)
|
||||
+INCLUDES = -I$(top_srcdir) -I$(top_builddir) $(DEPENDENT_WITH_XML_AND_GTK_CFLAGS) -DG_LOG_DOMAIN=\"GConf\" -DGCONF_LOCALE_DIR=\""$(gconflocaledir)"\" -DGCONF_SRCDIR=\""$(absolute_top_srcdir)"\" -DGCONF_CONFDIR=\""$(sysconfdir)/gconf/$(MAJOR_VERSION)"\" -DGCONF_ETCDIR=\""$(sysconfdir)/gconf"\" -DGCONF_BINDIR=\""$(bindir)"\" -DGCONF_SERVERDIR=\""$(libexecdir)"\" -DGCONF_BUILDDIR=\""$(top_builddir)"\" -DGCONF_BACKEND_DIR=\""$(pkglibdir)/$(MAJOR_VERSION)"\" -DVERSION=\""$(VERSION)"\" -DGCONF_ENABLE_INTERNALS=1 -DGCONFD=\""$(GCONFD_BINARY_NAME)"\" -DGCONF_CONFIG_SOURCE=\""$(GCONF_CONFIG_SOURCE)"\" $(NULL)
|
||||
|
||||
|
||||
EFENCE =
|
||||
|
@ -1,26 +1,18 @@
|
||||
$OpenBSD: patch-gconf_default_path_in,v 1.1.1.1 2003/01/31 18:26:49 todd Exp $
|
||||
--- gconf/default.path.in.orig Mon Aug 26 13:06:35 2002
|
||||
+++ gconf/default.path.in Mon Aug 26 13:08:24 2002
|
||||
@@ -6,20 +6,15 @@
|
||||
# See the GConf manual for details
|
||||
$OpenBSD: patch-gconf_default_path_in,v 1.2 2004/06/23 03:23:48 marcm Exp $
|
||||
--- gconf/default.path.in.orig 2004-04-01 06:41:49.000000000 -0700
|
||||
+++ gconf/default.path.in 2004-06-19 21:43:56.000000000 -0600
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
# Look first in systemwide mandatory settings directory
|
||||
-# (commented out until xml backend knows how to be read-only for users)
|
||||
# (commented out until xml backend knows how to be read-only for users)
|
||||
-xml:readonly:@EXPANDED_SYSCONFDIR@/gconf/gconf.xml.mandatory
|
||||
+xml:readonly:/var/db/gconf/gconf.xml.mandatory
|
||||
|
||||
# Now see where users want us to look - basically the user can stick arbitrary
|
||||
# sources in a ~/.gconf.path file and they're inserted here
|
||||
include "$(HOME)/.gconf.path"
|
||||
|
||||
# Give users a default storage location, ~/.gconf
|
||||
-
|
||||
xml:readwrite:$(HOME)/.gconf
|
||||
# To read in any mandatory settings that the Sys Admin may have created
|
||||
# prior to a desktop system upgrade. The SysAdmin can stick read-only system
|
||||
@@ -27,4 +27,4 @@ xml:readwrite:$(HOME)/.gconf
|
||||
include @EXPANDED_SYSCONFDIR@/gconf/2/local-defaults.path
|
||||
|
||||
# Finally, look at the systemwide defaults
|
||||
-# (commented out for now)
|
||||
-xml:readonly:@EXPANDED_SYSCONFDIR@/gconf/gconf.xml.defaults
|
||||
-
|
||||
-
|
||||
+xml:readonly:/var/db/gconf/gconf.xml.defaults
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
$OpenBSD: patch-gconf_gconftool_c,v 1.3 2003/10/07 05:47:57 marcm Exp $
|
||||
--- gconf/gconftool.c.orig 2003-09-08 14:00:34.000000000 -0700
|
||||
+++ gconf/gconftool.c 2003-09-10 07:09:29.000000000 -0700
|
||||
@@ -3978,7 +3978,7 @@ do_get_default_source (const gchar** arg
|
||||
$OpenBSD: patch-gconf_gconftool_c,v 1.4 2004/06/23 03:23:48 marcm Exp $
|
||||
--- gconf/gconftool.c.orig 2004-04-05 13:14:33.000000000 -0600
|
||||
+++ gconf/gconftool.c 2004-06-19 21:36:49.000000000 -0600
|
||||
@@ -3989,7 +3989,7 @@ do_get_default_source (const gchar** arg
|
||||
}
|
||||
|
||||
/* Use default database */
|
||||
|
@ -1,7 +1,7 @@
|
||||
$OpenBSD: patch-ltmain_sh,v 1.4 2003/10/07 05:47:57 marcm Exp $
|
||||
--- ltmain.sh.orig 2003-09-10 12:14:47.000000000 -0700
|
||||
+++ ltmain.sh 2003-09-10 20:40:29.000000000 -0700
|
||||
@@ -1290,6 +1290,17 @@ EOF
|
||||
$OpenBSD: patch-ltmain_sh,v 1.5 2004/06/23 03:23:48 marcm Exp $
|
||||
--- ltmain.sh.orig 2004-06-14 10:20:06.000000000 -0600
|
||||
+++ ltmain.sh 2004-06-19 21:36:49.000000000 -0600
|
||||
@@ -1374,6 +1374,17 @@ EOF
|
||||
continue
|
||||
;;
|
||||
|
||||
@ -19,7 +19,7 @@ $OpenBSD: patch-ltmain_sh,v 1.4 2003/10/07 05:47:57 marcm Exp $
|
||||
-module)
|
||||
module=yes
|
||||
continue
|
||||
@@ -1961,6 +1972,19 @@ EOF
|
||||
@@ -2024,6 +2035,19 @@ EOF
|
||||
fi
|
||||
continue
|
||||
;;
|
||||
@ -39,7 +39,7 @@ $OpenBSD: patch-ltmain_sh,v 1.4 2003/10/07 05:47:57 marcm Exp $
|
||||
%DEPLIBS%)
|
||||
alldeplibs=yes
|
||||
continue
|
||||
@@ -2209,10 +2233,6 @@ EOF
|
||||
@@ -2274,10 +2298,6 @@ EOF
|
||||
link_static=no # Whether the deplib will be linked statically
|
||||
if test -n "$library_names" &&
|
||||
{ test "$prefer_static_libs" = no || test -z "$old_library"; }; then
|
||||
@ -48,46 +48,5 @@ $OpenBSD: patch-ltmain_sh,v 1.4 2003/10/07 05:47:57 marcm Exp $
|
||||
- need_relink=yes
|
||||
- fi
|
||||
# This is a shared library
|
||||
|
||||
# Warn about portability, can't link against -module's on some systems (darwin)
|
||||
@@ -5705,40 +5725,6 @@ relink_command=\"$relink_command\""
|
||||
# Exit here if they wanted silent mode.
|
||||
test "$show" = : && exit 0
|
||||
|
||||
- $echo "----------------------------------------------------------------------"
|
||||
- $echo "Libraries have been installed in:"
|
||||
- for libdir in $libdirs; do
|
||||
- $echo " $libdir"
|
||||
- done
|
||||
- $echo
|
||||
- $echo "If you ever happen to want to link against installed libraries"
|
||||
- $echo "in a given directory, LIBDIR, you must either use libtool, and"
|
||||
- $echo "specify the full pathname of the library, or use the \`-LLIBDIR'"
|
||||
- $echo "flag during linking and do at least one of the following:"
|
||||
- if test -n "$shlibpath_var"; then
|
||||
- $echo " - add LIBDIR to the \`$shlibpath_var' environment variable"
|
||||
- $echo " during execution"
|
||||
- fi
|
||||
- if test -n "$runpath_var"; then
|
||||
- $echo " - add LIBDIR to the \`$runpath_var' environment variable"
|
||||
- $echo " during linking"
|
||||
- fi
|
||||
- if test -n "$hardcode_libdir_flag_spec"; then
|
||||
- libdir=LIBDIR
|
||||
- eval flag=\"$hardcode_libdir_flag_spec\"
|
||||
-
|
||||
- $echo " - use the \`$flag' linker flag"
|
||||
- fi
|
||||
- if test -n "$admincmds"; then
|
||||
- $echo " - have your system administrator run these commands:$admincmds"
|
||||
- fi
|
||||
- if test -f /etc/ld.so.conf; then
|
||||
- $echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'"
|
||||
- fi
|
||||
- $echo
|
||||
- $echo "See any operating system documentation about shared libraries for"
|
||||
- $echo "more information, such as the ld(1) and ld.so(8) manual pages."
|
||||
- $echo "----------------------------------------------------------------------"
|
||||
exit 0
|
||||
;;
|
||||
|
||||
# Warn about portability, can't link against -module's on
|
||||
|
@ -1,4 +1,5 @@
|
||||
@comment $OpenBSD: PLIST,v 1.7 2003/12/18 01:19:57 naddy Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.8 2004/06/23 03:23:48 marcm Exp $
|
||||
bin/gconf-merge-tree
|
||||
bin/gconftool-2
|
||||
include/gconf/2/gconf/gconf-changeset.h
|
||||
include/gconf/2/gconf/gconf-client.h
|
||||
@ -9,6 +10,9 @@ include/gconf/2/gconf/gconf-listeners.h
|
||||
include/gconf/2/gconf/gconf-schema.h
|
||||
include/gconf/2/gconf/gconf-value.h
|
||||
include/gconf/2/gconf/gconf.h
|
||||
lib/GConf/2/libgconfbackend-oldxml.a
|
||||
lib/GConf/2/libgconfbackend-oldxml.la
|
||||
lib/GConf/2/libgconfbackend-oldxml.so
|
||||
lib/GConf/2/libgconfbackend-xml.a
|
||||
lib/GConf/2/libgconfbackend-xml.la
|
||||
lib/libgconf-2.a
|
||||
@ -16,8 +20,45 @@ lib/libgconf-2.la
|
||||
lib/pkgconfig/gconf-2.0.pc
|
||||
libexec/gconf-sanity-check-2
|
||||
libexec/gconfd-2
|
||||
man/man1/gconftool-2.1
|
||||
share/aclocal/gconf-2.m4
|
||||
share/examples/gconf2/gconf/2/path
|
||||
share/gtk-doc/html/gconf/ch01.html
|
||||
share/gtk-doc/html/gconf/ch01s02.html
|
||||
share/gtk-doc/html/gconf/ch02.html
|
||||
share/gtk-doc/html/gconf/ch02s02.html
|
||||
share/gtk-doc/html/gconf/ch02s03.html
|
||||
share/gtk-doc/html/gconf/ch02s04.html
|
||||
share/gtk-doc/html/gconf/ch06.html
|
||||
share/gtk-doc/html/gconf/ch06s02.html
|
||||
share/gtk-doc/html/gconf/ch06s03.html
|
||||
share/gtk-doc/html/gconf/ch07.html
|
||||
share/gtk-doc/html/gconf/conventions.html
|
||||
share/gtk-doc/html/gconf/gconf-GConfClient.html
|
||||
share/gtk-doc/html/gconf/gconf-client-reference.html
|
||||
share/gtk-doc/html/gconf/gconf-client.html
|
||||
share/gtk-doc/html/gconf/gconf-gconf-backend.html
|
||||
share/gtk-doc/html/gconf/gconf-gconf-changeset.html
|
||||
share/gtk-doc/html/gconf/gconf-gconf-engine.html
|
||||
share/gtk-doc/html/gconf/gconf-gconf-error.html
|
||||
share/gtk-doc/html/gconf/gconf-gconf-internals.html
|
||||
share/gtk-doc/html/gconf/gconf-gconf-listeners.html
|
||||
share/gtk-doc/html/gconf/gconf-gconf-locale.html
|
||||
share/gtk-doc/html/gconf/gconf-gconf-schema.html
|
||||
share/gtk-doc/html/gconf/gconf-gconf-sources.html
|
||||
share/gtk-doc/html/gconf/gconf-gconf-value.html
|
||||
share/gtk-doc/html/gconf/gconf-gconf.html
|
||||
share/gtk-doc/html/gconf/gconf-internals-reference.html
|
||||
share/gtk-doc/html/gconf/gconf-reference.html
|
||||
share/gtk-doc/html/gconf/gconf.devhelp
|
||||
share/gtk-doc/html/gconf/gconftool.html
|
||||
share/gtk-doc/html/gconf/home.png
|
||||
share/gtk-doc/html/gconf/index.html
|
||||
share/gtk-doc/html/gconf/index.sgml
|
||||
share/gtk-doc/html/gconf/left.png
|
||||
share/gtk-doc/html/gconf/right.png
|
||||
share/gtk-doc/html/gconf/style.css
|
||||
share/gtk-doc/html/gconf/up.png
|
||||
share/locale/am/LC_MESSAGES/GConf2.mo
|
||||
share/locale/ar/LC_MESSAGES/GConf2.mo
|
||||
share/locale/az/LC_MESSAGES/GConf2.mo
|
||||
@ -30,6 +71,8 @@ share/locale/cy/LC_MESSAGES/GConf2.mo
|
||||
share/locale/da/LC_MESSAGES/GConf2.mo
|
||||
share/locale/de/LC_MESSAGES/GConf2.mo
|
||||
share/locale/el/LC_MESSAGES/GConf2.mo
|
||||
share/locale/en_CA/LC_MESSAGES/GConf2.mo
|
||||
share/locale/en_GB/LC_MESSAGES/GConf2.mo
|
||||
share/locale/es/LC_MESSAGES/GConf2.mo
|
||||
share/locale/eu/LC_MESSAGES/GConf2.mo
|
||||
share/locale/fa/LC_MESSAGES/GConf2.mo
|
||||
@ -37,12 +80,15 @@ share/locale/fi/LC_MESSAGES/GConf2.mo
|
||||
share/locale/fr/LC_MESSAGES/GConf2.mo
|
||||
share/locale/ga/LC_MESSAGES/GConf2.mo
|
||||
share/locale/gl/LC_MESSAGES/GConf2.mo
|
||||
share/locale/gu/LC_MESSAGES/GConf2.mo
|
||||
share/locale/hi/LC_MESSAGES/GConf2.mo
|
||||
share/locale/hr/LC_MESSAGES/GConf2.mo
|
||||
share/locale/hu/LC_MESSAGES/GConf2.mo
|
||||
share/locale/id/LC_MESSAGES/GConf2.mo
|
||||
share/locale/it/LC_MESSAGES/GConf2.mo
|
||||
share/locale/ja/LC_MESSAGES/GConf2.mo
|
||||
share/locale/ko/LC_MESSAGES/GConf2.mo
|
||||
share/locale/lt/LC_MESSAGES/GConf2.mo
|
||||
share/locale/lv/LC_MESSAGES/GConf2.mo
|
||||
share/locale/mk/LC_MESSAGES/GConf2.mo
|
||||
share/locale/ml/LC_MESSAGES/GConf2.mo
|
||||
@ -51,6 +97,7 @@ share/locale/ms/LC_MESSAGES/GConf2.mo
|
||||
share/locale/nl/LC_MESSAGES/GConf2.mo
|
||||
share/locale/nn/LC_MESSAGES/GConf2.mo
|
||||
share/locale/no/LC_MESSAGES/GConf2.mo
|
||||
share/locale/pa/LC_MESSAGES/GConf2.mo
|
||||
share/locale/pl/LC_MESSAGES/GConf2.mo
|
||||
share/locale/pt/LC_MESSAGES/GConf2.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/GConf2.mo
|
||||
@ -62,6 +109,7 @@ share/locale/sq/LC_MESSAGES/GConf2.mo
|
||||
share/locale/sr/LC_MESSAGES/GConf2.mo
|
||||
share/locale/sr@Latn/LC_MESSAGES/GConf2.mo
|
||||
share/locale/sv/LC_MESSAGES/GConf2.mo
|
||||
share/locale/ta/LC_MESSAGES/GConf2.mo
|
||||
share/locale/tr/LC_MESSAGES/GConf2.mo
|
||||
share/locale/uk/LC_MESSAGES/GConf2.mo
|
||||
share/locale/vi/LC_MESSAGES/GConf2.mo
|
||||
@ -70,115 +118,9 @@ share/locale/zh_CN/LC_MESSAGES/GConf2.mo
|
||||
share/locale/zh_TW/LC_MESSAGES/GConf2.mo
|
||||
share/sgml/gconf/gconf-1.0.dtd
|
||||
%%SHARED%%
|
||||
@exec mkdir -p %D/share/schemas
|
||||
@dirrm share/schemas
|
||||
@dirrm share/sgml/gconf
|
||||
@dirrm share/sgml
|
||||
@dirrm share/locale/zh_TW/LC_MESSAGES
|
||||
@dirrm share/locale/zh_TW
|
||||
@dirrm share/locale/zh_CN/LC_MESSAGES
|
||||
@dirrm share/locale/zh_CN
|
||||
@dirrm share/locale/yi/LC_MESSAGES
|
||||
@dirrm share/locale/yi
|
||||
@dirrm share/locale/vi/LC_MESSAGES
|
||||
@dirrm share/locale/vi
|
||||
@dirrm share/locale/uk/LC_MESSAGES
|
||||
@dirrm share/locale/uk
|
||||
@dirrm share/locale/tr/LC_MESSAGES
|
||||
@dirrm share/locale/tr
|
||||
@dirrm share/locale/sv/LC_MESSAGES
|
||||
@dirrm share/locale/sv
|
||||
@dirrm share/locale/sr@Latn/LC_MESSAGES
|
||||
@dirrm share/locale/sr@Latn
|
||||
@dirrm share/locale/sr/LC_MESSAGES
|
||||
@dirrm share/locale/sr
|
||||
@dirrm share/locale/sq/LC_MESSAGES
|
||||
@dirrm share/locale/sq
|
||||
@dirrm share/locale/sl/LC_MESSAGES
|
||||
@dirrm share/locale/sl
|
||||
@dirrm share/locale/sk/LC_MESSAGES
|
||||
@dirrm share/locale/sk
|
||||
@dirrm share/locale/ru/LC_MESSAGES
|
||||
@dirrm share/locale/ru
|
||||
@dirrm share/locale/ro/LC_MESSAGES
|
||||
@dirrm share/locale/ro
|
||||
@dirrm share/locale/pt_BR/LC_MESSAGES
|
||||
@dirrm share/locale/pt_BR
|
||||
@dirrm share/locale/pt/LC_MESSAGES
|
||||
@dirrm share/locale/pt
|
||||
@dirrm share/locale/pl/LC_MESSAGES
|
||||
@dirrm share/locale/pl
|
||||
@dirrm share/locale/no/LC_MESSAGES
|
||||
@dirrm share/locale/no
|
||||
@dirrm share/locale/nn/LC_MESSAGES
|
||||
@dirrm share/locale/nn
|
||||
@dirrm share/locale/nl/LC_MESSAGES
|
||||
@dirrm share/locale/nl
|
||||
@dirrm share/locale/ms/LC_MESSAGES
|
||||
@dirrm share/locale/ms
|
||||
@dirrm share/locale/mn/LC_MESSAGES
|
||||
@dirrm share/locale/mn
|
||||
@dirrm share/locale/ml/LC_MESSAGES
|
||||
@dirrm share/locale/ml
|
||||
@dirrm share/locale/mk/LC_MESSAGES
|
||||
@dirrm share/locale/mk
|
||||
@dirrm share/locale/lv/LC_MESSAGES
|
||||
@dirrm share/locale/lv
|
||||
@dirrm share/locale/ko/LC_MESSAGES
|
||||
@dirrm share/locale/ko
|
||||
@dirrm share/locale/ja/LC_MESSAGES
|
||||
@dirrm share/locale/ja
|
||||
@dirrm share/locale/it/LC_MESSAGES
|
||||
@dirrm share/locale/it
|
||||
@dirrm share/locale/id/LC_MESSAGES
|
||||
@dirrm share/locale/id
|
||||
@dirrm share/locale/hu/LC_MESSAGES
|
||||
@dirrm share/locale/hu
|
||||
@dirrm share/locale/hi/LC_MESSAGES
|
||||
@dirrm share/locale/hi
|
||||
@dirrm share/locale/gl/LC_MESSAGES
|
||||
@dirrm share/locale/gl
|
||||
@dirrm share/locale/ga/LC_MESSAGES
|
||||
@dirrm share/locale/ga
|
||||
@dirrm share/locale/fr/LC_MESSAGES
|
||||
@dirrm share/locale/fr
|
||||
@dirrm share/locale/fi/LC_MESSAGES
|
||||
@dirrm share/locale/fi
|
||||
@dirrm share/locale/fa/LC_MESSAGES
|
||||
@dirrm share/locale/fa
|
||||
@dirrm share/locale/eu/LC_MESSAGES
|
||||
@dirrm share/locale/eu
|
||||
@dirrm share/locale/es/LC_MESSAGES
|
||||
@dirrm share/locale/es
|
||||
@dirrm share/locale/el/LC_MESSAGES
|
||||
@dirrm share/locale/el
|
||||
@dirrm share/locale/de/LC_MESSAGES
|
||||
@dirrm share/locale/de
|
||||
@dirrm share/locale/da/LC_MESSAGES
|
||||
@dirrm share/locale/da
|
||||
@dirrm share/locale/cy/LC_MESSAGES
|
||||
@dirrm share/locale/cy
|
||||
@dirrm share/locale/cs/LC_MESSAGES
|
||||
@dirrm share/locale/cs
|
||||
@dirrm share/locale/ca/LC_MESSAGES
|
||||
@dirrm share/locale/ca
|
||||
@dirrm share/locale/bn/LC_MESSAGES
|
||||
@dirrm share/locale/bn
|
||||
@dirrm share/locale/bg/LC_MESSAGES
|
||||
@dirrm share/locale/bg
|
||||
@dirrm share/locale/be/LC_MESSAGES
|
||||
@dirrm share/locale/be
|
||||
@dirrm share/locale/az/LC_MESSAGES
|
||||
@dirrm share/locale/az
|
||||
@dirrm share/locale/ar/LC_MESSAGES
|
||||
@dirrm share/locale/ar
|
||||
@dirrm share/locale/am/LC_MESSAGES
|
||||
@dirrm share/locale/am
|
||||
@dirrm share/locale
|
||||
@comment @exec mkdir -p %D/share/gtk-doc/html/gconf
|
||||
@comment @dirrm share/gtk-doc/html/gconf
|
||||
@comment @dirrm share/gtk-doc/html
|
||||
@comment @dirrm share/gtk-doc
|
||||
@dirrm share/gtk-doc/html/gconf
|
||||
@comment @exec mkdir -p %D/share/examples/gconf2/gconf/gconf.xml.mandatory
|
||||
@comment @dirrm share/examples/gconf2/gconf/gconf.xml.mandatory
|
||||
@comment @exec mkdir -p %D/share/examples/gconf2/gconf/gconf.xml.defaults
|
||||
@ -186,8 +128,6 @@ share/sgml/gconf/gconf-1.0.dtd
|
||||
@dirrm share/examples/gconf2/gconf/2
|
||||
@dirrm share/examples/gconf2/gconf
|
||||
@dirrm share/examples/gconf2
|
||||
@dirrm share/aclocal
|
||||
@dirrm lib/pkgconfig
|
||||
@dirrm lib/GConf/2
|
||||
@dirrm lib/GConf
|
||||
@dirrm include/gconf/2/gconf
|
||||
|
@ -1,7 +1,7 @@
|
||||
# $OpenBSD: Makefile,v 1.3 2003/12/16 19:41:09 naddy Exp $
|
||||
# $OpenBSD: Makefile,v 1.4 2004/06/23 03:23:48 marcm Exp $
|
||||
|
||||
COMMENT= "library for loading GLADE interface files at runtime"
|
||||
V= 2.0.1
|
||||
V= 2.4.0
|
||||
DISTNAME= libglade-${V}
|
||||
PKGNAME= libglade2-${V}
|
||||
CATEGORIES= devel
|
||||
@ -9,7 +9,7 @@ CATEGORIES= devel
|
||||
HOMEPAGE= http://www.gnome.org
|
||||
MAINTAINER= Marc Matteo <marcm@openbsd.org>
|
||||
|
||||
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/libglade/2.0/}
|
||||
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/libglade/2.4/}
|
||||
EXTRACT_SUFX= .tar.bz2
|
||||
|
||||
# LGPL
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (libglade-2.0.1.tar.bz2) = 4d93f6b01510013ae429e91af432cfe2
|
||||
RMD160 (libglade-2.0.1.tar.bz2) = 344ad0cd29ff04f5e97da15a590bb9c5b2f443be
|
||||
SHA1 (libglade-2.0.1.tar.bz2) = d4b900de6643a164dc35b2753ce2e4caebcf1428
|
||||
MD5 (libglade-2.4.0.tar.bz2) = c8367c58b2f2c98b76ca0667f0f13bf5
|
||||
RMD160 (libglade-2.4.0.tar.bz2) = e79885141769f9b86dd8f640ed0ba91d1f5f409e
|
||||
SHA1 (libglade-2.4.0.tar.bz2) = 95428bec28bb6929f673d061df804babbe56f90f
|
||||
|
@ -1,7 +1,7 @@
|
||||
$OpenBSD: patch-Makefile_in,v 1.1.1.1 2003/01/31 18:27:45 todd Exp $
|
||||
--- Makefile.in.orig Thu Aug 29 05:53:59 2002
|
||||
+++ Makefile.in Mon Sep 23 11:52:34 2002
|
||||
@@ -636,9 +636,7 @@ uninstall-info: uninstall-info-recursive
|
||||
$OpenBSD: patch-Makefile_in,v 1.2 2004/06/23 03:23:48 marcm Exp $
|
||||
--- Makefile.in.orig 2004-05-17 05:38:53.000000000 -0600
|
||||
+++ Makefile.in 2004-06-20 11:32:28.000000000 -0600
|
||||
@@ -794,9 +794,7 @@ uninstall-info: uninstall-info-recursive
|
||||
|
||||
|
||||
install-data-local:
|
||||
|
@ -1,45 +1,12 @@
|
||||
$OpenBSD: patch-configure,v 1.2 2003/06/17 16:13:32 marcm Exp $
|
||||
--- configure.orig Thu Aug 29 05:54:02 2002
|
||||
+++ configure Fri Jun 13 14:42:08 2003
|
||||
@@ -5486,7 +5486,7 @@ else
|
||||
hardcode_direct=yes
|
||||
hardcode_shlibpath_var=no
|
||||
if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
|
||||
- archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $linker_flags'
|
||||
+ archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
|
||||
hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
|
||||
export_dynamic_flag_spec='${wl}-E'
|
||||
else
|
||||
@@ -5496,7 +5496,7 @@ else
|
||||
hardcode_libdir_flag_spec='-R$libdir'
|
||||
;;
|
||||
*)
|
||||
- archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $linker_flags'
|
||||
+ archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
|
||||
hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
|
||||
;;
|
||||
esac
|
||||
@@ -11559,23 +11559,3 @@ fi
|
||||
|
||||
rm -f po/po2tbl.sed
|
||||
|
||||
-echo
|
||||
-echo "This is the development branch of libglade"
|
||||
-echo "If you want something that works with gtk+ 1.2, checkout the"
|
||||
-echo "libglade-1-0 branch with the following command"
|
||||
-echo " cvs update -r libglade-1-0 ."
|
||||
-echo
|
||||
-
|
||||
-if test -z "$jh_cv_path_python"; then
|
||||
- echo "*****************************************************"
|
||||
- echo " A usable version of python was not found, so the"
|
||||
- echo " libglade-convert program was not installed. This"
|
||||
- echo " script requires Python >= 2.0 with expat support."
|
||||
- echo
|
||||
- echo " Some packages require libglade-convert to build"
|
||||
- echo " correctly. If you wish to build one of these"
|
||||
- echo " packages, you must install expat and python,"
|
||||
- echo " and then rebuild libglade."
|
||||
- echo "*****************************************************"
|
||||
- echo
|
||||
-fi
|
||||
$OpenBSD: patch-configure,v 1.3 2004/06/23 03:23:48 marcm Exp $
|
||||
--- configure.orig 2004-05-17 05:38:59.000000000 -0600
|
||||
+++ configure 2004-06-20 11:35:10.000000000 -0600
|
||||
@@ -7399,7 +7399,7 @@ nto-qnx*)
|
||||
openbsd*)
|
||||
version_type=sunos
|
||||
need_lib_prefix=no
|
||||
- need_version=yes
|
||||
+ need_version=no
|
||||
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
|
||||
finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
|
||||
shlibpath_var=LD_LIBRARY_PATH
|
||||
|
@ -1,14 +0,0 @@
|
||||
$OpenBSD: patch-doc_Makefile_in,v 1.1.1.1 2003/01/31 18:27:45 todd Exp $
|
||||
--- doc/Makefile.in.orig Thu Aug 29 05:53:59 2002
|
||||
+++ doc/Makefile.in Mon Sep 23 11:52:34 2002
|
||||
@@ -342,10 +342,6 @@ install-data-local:
|
||||
echo '-- Installing '$$i ; \
|
||||
$(INSTALL_DATA) $$i $(DESTDIR)$(TARGET_DIR); \
|
||||
done; \
|
||||
- echo '-- Installing $(srcdir)/html/index.sgml' ; \
|
||||
- $(INSTALL_DATA) $(srcdir)/html/index.sgml $(TARGET_DIR); \
|
||||
- echo '-- Fixing Crossreferences' ; \
|
||||
- gtkdoc-fixxref --module=$(DOC_MODULE) --html-dir=$(HTML_DIR) || true; \
|
||||
fi)
|
||||
|
||||
uninstall-local:
|
@ -1,7 +1,7 @@
|
||||
$OpenBSD: patch-ltmain_sh,v 1.2 2003/06/17 16:13:32 marcm Exp $
|
||||
--- ltmain.sh.orig Sun May 26 21:33:15 2002
|
||||
+++ ltmain.sh Fri Jun 13 14:40:01 2003
|
||||
@@ -1073,6 +1073,17 @@ compiler."
|
||||
$OpenBSD: patch-ltmain_sh,v 1.3 2004/06/23 03:23:48 marcm Exp $
|
||||
--- ltmain.sh.orig 2004-04-11 20:01:57.000000000 -0600
|
||||
+++ ltmain.sh 2004-06-20 11:32:29.000000000 -0600
|
||||
@@ -1374,6 +1374,17 @@ EOF
|
||||
continue
|
||||
;;
|
||||
|
||||
@ -19,7 +19,7 @@ $OpenBSD: patch-ltmain_sh,v 1.2 2003/06/17 16:13:32 marcm Exp $
|
||||
-module)
|
||||
module=yes
|
||||
continue
|
||||
@@ -1530,6 +1541,9 @@ compiler."
|
||||
@@ -2024,6 +2035,9 @@ EOF
|
||||
fi
|
||||
continue
|
||||
;;
|
||||
@ -29,44 +29,3 @@ $OpenBSD: patch-ltmain_sh,v 1.2 2003/06/17 16:13:32 marcm Exp $
|
||||
%DEPLIBS%)
|
||||
alldeplibs=yes
|
||||
continue
|
||||
@@ -4526,40 +4540,6 @@ relink_command=\"$relink_command\""
|
||||
# Exit here if they wanted silent mode.
|
||||
test "$show" = : && exit 0
|
||||
|
||||
- echo "----------------------------------------------------------------------"
|
||||
- echo "Libraries have been installed in:"
|
||||
- for libdir in $libdirs; do
|
||||
- echo " $libdir"
|
||||
- done
|
||||
- echo
|
||||
- echo "If you ever happen to want to link against installed libraries"
|
||||
- echo "in a given directory, LIBDIR, you must either use libtool, and"
|
||||
- echo "specify the full pathname of the library, or use the \`-LLIBDIR'"
|
||||
- echo "flag during linking and do at least one of the following:"
|
||||
- if test -n "$shlibpath_var"; then
|
||||
- echo " - add LIBDIR to the \`$shlibpath_var' environment variable"
|
||||
- echo " during execution"
|
||||
- fi
|
||||
- if test -n "$runpath_var"; then
|
||||
- echo " - add LIBDIR to the \`$runpath_var' environment variable"
|
||||
- echo " during linking"
|
||||
- fi
|
||||
- if test -n "$hardcode_libdir_flag_spec"; then
|
||||
- libdir=LIBDIR
|
||||
- eval flag=\"$hardcode_libdir_flag_spec\"
|
||||
-
|
||||
- echo " - use the \`$flag' linker flag"
|
||||
- fi
|
||||
- if test -n "$admincmds"; then
|
||||
- echo " - have your system administrator run these commands:$admincmds"
|
||||
- fi
|
||||
- if test -f /etc/ld.so.conf; then
|
||||
- echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'"
|
||||
- fi
|
||||
- echo
|
||||
- echo "See any operating system documentation about shared libraries for"
|
||||
- echo "more information, such as the ld(1) and ld.so(8) manual pages."
|
||||
- echo "----------------------------------------------------------------------"
|
||||
exit 0
|
||||
;;
|
||||
|
||||
|
@ -1,12 +0,0 @@
|
||||
$OpenBSD: patch-tests_Makefile_in,v 1.1 2004/01/03 05:51:32 marcm Exp $
|
||||
--- tests/Makefile.in.orig 2004-01-02 21:14:11.000000000 -0800
|
||||
+++ tests/Makefile.in 2004-01-02 21:14:14.000000000 -0800
|
||||
@@ -110,7 +110,7 @@ install_sh = @install_sh@
|
||||
check_PROGRAMS = test-libglade-gtk test-value-parse
|
||||
|
||||
TESTS = $(python_tests) test-value-parse
|
||||
-TESTS_ENVIRONMENT = PYTHON=$(PYTHON)
|
||||
+@HAVE_PYTHON_TRUE@TESTS_ENVIRONMENT = PYTHON=$(PYTHON)
|
||||
|
||||
INCLUDES = -I$(top_srcdir) $(LIBGLADE_CFLAGS)
|
||||
|
@ -1,3 +1,3 @@
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2003/01/31 18:27:45 todd Exp $
|
||||
lib/libglade-2.0.so.0.1
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.2 2004/06/23 03:23:48 marcm Exp $
|
||||
lib/libglade-2.0.so.0.4
|
||||
DYNLIBDIR(%D/lib)
|
||||
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.3 2003/12/15 16:51:04 naddy Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.4 2004/06/23 03:23:48 marcm Exp $
|
||||
bin/libglade-convert
|
||||
include/libglade-2.0/glade/glade-build.h
|
||||
include/libglade-2.0/glade/glade-init.h
|
||||
@ -8,27 +8,31 @@ include/libglade-2.0/glade/glade.h
|
||||
lib/libglade-2.0.a
|
||||
lib/libglade-2.0.la
|
||||
lib/pkgconfig/libglade-2.0.pc
|
||||
share/gtk-doc/html/libglade/gladexml.html
|
||||
share/gtk-doc/html/libglade/GladeXML.html
|
||||
share/gtk-doc/html/libglade/home.png
|
||||
share/gtk-doc/html/libglade/index.html
|
||||
share/gtk-doc/html/libglade/index.sgml
|
||||
share/gtk-doc/html/libglade/left.png
|
||||
share/gtk-doc/html/libglade/libglade-Libglade-Build.html
|
||||
share/gtk-doc/html/libglade/libglade-Libglade-Initialisation.html
|
||||
share/gtk-doc/html/libglade/libglade-Libglade-SAX-Parser.html
|
||||
share/gtk-doc/html/libglade/libglade-dtd-exceptions.html
|
||||
share/gtk-doc/html/libglade/libglade-dtd.html
|
||||
share/gtk-doc/html/libglade/libglade-embedding.html
|
||||
share/gtk-doc/html/libglade/libglade-extending.html
|
||||
share/gtk-doc/html/libglade/libglade-i18n.html
|
||||
share/gtk-doc/html/libglade/libglade-lib.html
|
||||
share/gtk-doc/html/libglade/libglade-libglade-build.html
|
||||
share/gtk-doc/html/libglade/libglade-libglade-initialisation.html
|
||||
share/gtk-doc/html/libglade/libglade-libglade-sax-parser.html
|
||||
share/gtk-doc/html/libglade/libglade-modules.html
|
||||
share/gtk-doc/html/libglade/libglade-notes.html
|
||||
share/gtk-doc/html/libglade/libglade.html
|
||||
share/gtk-doc/html/libglade/libglade.devhelp
|
||||
share/gtk-doc/html/libglade/right.png
|
||||
share/gtk-doc/html/libglade/style.css
|
||||
share/gtk-doc/html/libglade/up.png
|
||||
share/xml/libglade/glade-2.0.dtd
|
||||
%%SHARED%%
|
||||
@dirrm share/xml/libglade
|
||||
@dirrm share/xml
|
||||
@dirrm share/gtk-doc/html/libglade
|
||||
@dirrm share/gtk-doc/html
|
||||
@dirrm share/gtk-doc
|
||||
@dirrm lib/pkgconfig
|
||||
@dirrm include/libglade-2.0/glade
|
||||
@dirrm include/libglade-2.0
|
||||
@exec %D/bin/xmlcatalog --noout --add "system" "http://glade.gnome.org/glade-2.0.dtd" %D/share/xml/libglade/glade-2.0.dtd /var/db/xmlcatalog
|
||||
|
@ -1,14 +1,14 @@
|
||||
# $OpenBSD: Makefile,v 1.4 2003/10/07 05:47:57 marcm Exp $
|
||||
# $OpenBSD: Makefile,v 1.5 2004/06/23 03:23:48 marcm Exp $
|
||||
|
||||
COMMENT= "window navigator construction kit"
|
||||
|
||||
DISTNAME= libwnck-2.4.0.1
|
||||
DISTNAME= libwnck-2.6.2
|
||||
CATEGORIES= devel
|
||||
|
||||
HOMEPAGE= http://www.gnome.org
|
||||
MAINTAINER= Marc Matteo <marcm@openbsd.org>
|
||||
|
||||
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/libwnck/2.4/}
|
||||
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/libwnck/2.6/}
|
||||
EXTRACT_SUFX= .tar.bz2
|
||||
|
||||
# LGPL
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (libwnck-2.4.0.1.tar.bz2) = 7a7007b285a4e3c39a7bb113cb2be45b
|
||||
RMD160 (libwnck-2.4.0.1.tar.bz2) = 156b20e6409c8603dc67f377bb439741416b91c0
|
||||
SHA1 (libwnck-2.4.0.1.tar.bz2) = b121afb6015377c7cd5e3d59a75ae27632f93a56
|
||||
MD5 (libwnck-2.6.2.tar.bz2) = 46d34797c85cc08e1d71bef79c92508a
|
||||
RMD160 (libwnck-2.6.2.tar.bz2) = 27f33466f7253043b2563da0d97a40063ba8ca57
|
||||
SHA1 (libwnck-2.6.2.tar.bz2) = ce11ac67fdbea3fe82d774e0f79fa3af528486e4
|
||||
|
@ -1,48 +1,35 @@
|
||||
$OpenBSD: patch-ltmain_sh,v 1.4 2003/10/07 05:47:57 marcm Exp $
|
||||
--- ltmain.sh.orig 2003-09-10 11:55:07.000000000 -0700
|
||||
+++ ltmain.sh 2003-09-10 21:21:06.000000000 -0700
|
||||
@@ -1290,6 +1290,17 @@ EOF
|
||||
continue
|
||||
;;
|
||||
|
||||
+ -pthread)
|
||||
+ case $host in
|
||||
+ *-*-openbsd*)
|
||||
+ deplibs="$deplibs $arg"
|
||||
+ ;;
|
||||
+ *)
|
||||
+ continue
|
||||
+ ;;
|
||||
+ esac
|
||||
+ ;;
|
||||
+
|
||||
-module)
|
||||
module=yes
|
||||
continue
|
||||
@@ -1961,6 +1972,20 @@ EOF
|
||||
$OpenBSD: patch-ltmain_sh,v 1.5 2004/06/23 03:23:48 marcm Exp $
|
||||
--- ltmain.sh.orig 2004-06-14 11:03:58.000000000 -0600
|
||||
+++ ltmain.sh 2004-06-21 13:10:23.000000000 -0600
|
||||
@@ -1857,9 +1857,12 @@ EOF
|
||||
if test "$linkmode,$pass" = "prog,link"; then
|
||||
compile_deplibs="$deplib $compile_deplibs"
|
||||
finalize_deplibs="$deplib $finalize_deplibs"
|
||||
- else
|
||||
- deplibs="$deplib $deplibs"
|
||||
+ continue
|
||||
fi
|
||||
+ if test "$linkmode" = "lib"; then
|
||||
+ newdependency_libs="$deplib $newdependency_libs"
|
||||
+ fi
|
||||
+ deplibs="$deplib $deplibs"
|
||||
continue
|
||||
;;
|
||||
+ -pthread)
|
||||
+ case $linkmode in
|
||||
+ lib)
|
||||
+ deplibs="$deplib $deplibs"
|
||||
+ newdependency_libs="$deplib $newdependency_libs"
|
||||
+ ;;
|
||||
+ prog)
|
||||
+ compile_deplibs="$deplib $compile_deplibs"
|
||||
+ finalize_deplibs="$deplib $finalize_deplibs"
|
||||
+ ;;
|
||||
+ esac
|
||||
+ continue
|
||||
+ ;;
|
||||
+
|
||||
%DEPLIBS%)
|
||||
alldeplibs=yes
|
||||
continue
|
||||
@@ -5705,40 +5730,6 @@ relink_command=\"$relink_command\""
|
||||
-l*)
|
||||
@@ -2274,10 +2277,6 @@ EOF
|
||||
link_static=no # Whether the deplib will be linked statically
|
||||
if test -n "$library_names" &&
|
||||
{ test "$prefer_static_libs" = no || test -z "$old_library"; }; then
|
||||
- if test "$installed" = no; then
|
||||
- notinst_deplibs="$notinst_deplibs $lib"
|
||||
- need_relink=yes
|
||||
- fi
|
||||
# This is a shared library
|
||||
|
||||
# Warn about portability, can't link against -module's on
|
||||
@@ -5827,40 +5826,6 @@ relink_command=\"$relink_command\""
|
||||
# Exit here if they wanted silent mode.
|
||||
test "$show" = : && exit 0
|
||||
test "$show" = : && exit $EXIT_SUCCESS
|
||||
|
||||
- $echo "----------------------------------------------------------------------"
|
||||
- $echo "Libraries have been installed in:"
|
||||
@ -78,6 +65,6 @@ $OpenBSD: patch-ltmain_sh,v 1.4 2003/10/07 05:47:57 marcm Exp $
|
||||
- $echo "See any operating system documentation about shared libraries for"
|
||||
- $echo "more information, such as the ld(1) and ld.so(8) manual pages."
|
||||
- $echo "----------------------------------------------------------------------"
|
||||
exit 0
|
||||
exit $EXIT_SUCCESS
|
||||
;;
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.3 2003/10/07 05:47:57 marcm Exp $
|
||||
lib/libwnck-1.so.11.0
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.4 2004/06/23 03:23:48 marcm Exp $
|
||||
lib/libwnck-1.so.13.0
|
||||
DYNLIBDIR(%D/lib)
|
||||
|
@ -1,5 +1,6 @@
|
||||
@comment $OpenBSD: PLIST,v 1.5 2003/12/15 16:51:04 naddy Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.6 2004/06/23 03:23:48 marcm Exp $
|
||||
include/libwnck-1.0/libwnck/application.h
|
||||
include/libwnck-1.0/libwnck/class-group.h
|
||||
include/libwnck-1.0/libwnck/libwnck.h
|
||||
include/libwnck-1.0/libwnck/pager.h
|
||||
include/libwnck-1.0/libwnck/screen.h
|
||||
@ -25,16 +26,21 @@ share/locale/cy/LC_MESSAGES/libwnck.mo
|
||||
share/locale/da/LC_MESSAGES/libwnck.mo
|
||||
share/locale/de/LC_MESSAGES/libwnck.mo
|
||||
share/locale/el/LC_MESSAGES/libwnck.mo
|
||||
share/locale/en_CA/LC_MESSAGES/libwnck.mo
|
||||
share/locale/en_GB/LC_MESSAGES/libwnck.mo
|
||||
share/locale/eo/LC_MESSAGES/libwnck.mo
|
||||
share/locale/es/LC_MESSAGES/libwnck.mo
|
||||
share/locale/et/LC_MESSAGES/libwnck.mo
|
||||
share/locale/eu/LC_MESSAGES/libwnck.mo
|
||||
share/locale/fa/LC_MESSAGES/libwnck.mo
|
||||
share/locale/fi/LC_MESSAGES/libwnck.mo
|
||||
share/locale/fr/LC_MESSAGES/libwnck.mo
|
||||
share/locale/ga/LC_MESSAGES/libwnck.mo
|
||||
share/locale/gl/LC_MESSAGES/libwnck.mo
|
||||
share/locale/gu/LC_MESSAGES/libwnck.mo
|
||||
share/locale/he/LC_MESSAGES/libwnck.mo
|
||||
share/locale/hi/LC_MESSAGES/libwnck.mo
|
||||
share/locale/hr/LC_MESSAGES/libwnck.mo
|
||||
share/locale/hu/LC_MESSAGES/libwnck.mo
|
||||
share/locale/id/LC_MESSAGES/libwnck.mo
|
||||
share/locale/is/LC_MESSAGES/libwnck.mo
|
||||
@ -48,10 +54,12 @@ share/locale/lv/LC_MESSAGES/libwnck.mo
|
||||
share/locale/mk/LC_MESSAGES/libwnck.mo
|
||||
share/locale/ml/LC_MESSAGES/libwnck.mo
|
||||
share/locale/mn/LC_MESSAGES/libwnck.mo
|
||||
share/locale/mr/LC_MESSAGES/libwnck.mo
|
||||
share/locale/ms/LC_MESSAGES/libwnck.mo
|
||||
share/locale/nl/LC_MESSAGES/libwnck.mo
|
||||
share/locale/nn/LC_MESSAGES/libwnck.mo
|
||||
share/locale/no/LC_MESSAGES/libwnck.mo
|
||||
share/locale/pa/LC_MESSAGES/libwnck.mo
|
||||
share/locale/pl/LC_MESSAGES/libwnck.mo
|
||||
share/locale/pt/LC_MESSAGES/libwnck.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/libwnck.mo
|
||||
@ -72,123 +80,7 @@ share/locale/wa/LC_MESSAGES/libwnck.mo
|
||||
share/locale/zh_CN/LC_MESSAGES/libwnck.mo
|
||||
share/locale/zh_TW/LC_MESSAGES/libwnck.mo
|
||||
%%SHARED%%
|
||||
@dirrm share/locale/zh_TW/LC_MESSAGES
|
||||
@dirrm share/locale/zh_TW
|
||||
@dirrm share/locale/zh_CN/LC_MESSAGES
|
||||
@dirrm share/locale/zh_CN
|
||||
@dirrm share/locale/wa/LC_MESSAGES
|
||||
@dirrm share/locale/wa
|
||||
@dirrm share/locale/vi/LC_MESSAGES
|
||||
@dirrm share/locale/vi
|
||||
@dirrm share/locale/uk/LC_MESSAGES
|
||||
@dirrm share/locale/uk
|
||||
@dirrm share/locale/tr/LC_MESSAGES
|
||||
@dirrm share/locale/tr
|
||||
@dirrm share/locale/th/LC_MESSAGES
|
||||
@dirrm share/locale/th
|
||||
@dirrm share/locale/ta/LC_MESSAGES
|
||||
@dirrm share/locale/ta
|
||||
@dirrm share/locale/sv/LC_MESSAGES
|
||||
@dirrm share/locale/sv
|
||||
@dirrm share/locale/sr@Latn/LC_MESSAGES
|
||||
@dirrm share/locale/sr@Latn
|
||||
@dirrm share/locale/sr/LC_MESSAGES
|
||||
@dirrm share/locale/sr
|
||||
@dirrm share/locale/sq/LC_MESSAGES
|
||||
@dirrm share/locale/sq
|
||||
@dirrm share/locale/sl/LC_MESSAGES
|
||||
@dirrm share/locale/sl
|
||||
@dirrm share/locale/sk/LC_MESSAGES
|
||||
@dirrm share/locale/sk
|
||||
@dirrm share/locale/ru/LC_MESSAGES
|
||||
@dirrm share/locale/ru
|
||||
@dirrm share/locale/ro/LC_MESSAGES
|
||||
@dirrm share/locale/ro
|
||||
@dirrm share/locale/pt_BR/LC_MESSAGES
|
||||
@dirrm share/locale/pt_BR
|
||||
@dirrm share/locale/pt/LC_MESSAGES
|
||||
@dirrm share/locale/pt
|
||||
@dirrm share/locale/pl/LC_MESSAGES
|
||||
@dirrm share/locale/pl
|
||||
@dirrm share/locale/no/LC_MESSAGES
|
||||
@dirrm share/locale/no
|
||||
@dirrm share/locale/nn/LC_MESSAGES
|
||||
@dirrm share/locale/nn
|
||||
@dirrm share/locale/nl/LC_MESSAGES
|
||||
@dirrm share/locale/nl
|
||||
@dirrm share/locale/ms/LC_MESSAGES
|
||||
@dirrm share/locale/ms
|
||||
@dirrm share/locale/mn/LC_MESSAGES
|
||||
@dirrm share/locale/mn
|
||||
@dirrm share/locale/ml/LC_MESSAGES
|
||||
@dirrm share/locale/ml
|
||||
@dirrm share/locale/mk/LC_MESSAGES
|
||||
@dirrm share/locale/mk
|
||||
@dirrm share/locale/lv/LC_MESSAGES
|
||||
@dirrm share/locale/lv
|
||||
@dirrm share/locale/lt/LC_MESSAGES
|
||||
@dirrm share/locale/lt
|
||||
@dirrm share/locale/li/LC_MESSAGES
|
||||
@dirrm share/locale/li
|
||||
@dirrm share/locale/ko/LC_MESSAGES
|
||||
@dirrm share/locale/ko
|
||||
@dirrm share/locale/kn/LC_MESSAGES
|
||||
@dirrm share/locale/kn
|
||||
@dirrm share/locale/ja/LC_MESSAGES
|
||||
@dirrm share/locale/ja
|
||||
@dirrm share/locale/it/LC_MESSAGES
|
||||
@dirrm share/locale/it
|
||||
@dirrm share/locale/is/LC_MESSAGES
|
||||
@dirrm share/locale/is
|
||||
@dirrm share/locale/id/LC_MESSAGES
|
||||
@dirrm share/locale/id
|
||||
@dirrm share/locale/hu/LC_MESSAGES
|
||||
@dirrm share/locale/hu
|
||||
@dirrm share/locale/hi/LC_MESSAGES
|
||||
@dirrm share/locale/hi
|
||||
@dirrm share/locale/he/LC_MESSAGES
|
||||
@dirrm share/locale/he
|
||||
@dirrm share/locale/gl/LC_MESSAGES
|
||||
@dirrm share/locale/gl
|
||||
@dirrm share/locale/ga/LC_MESSAGES
|
||||
@dirrm share/locale/ga
|
||||
@dirrm share/locale/fr/LC_MESSAGES
|
||||
@dirrm share/locale/fr
|
||||
@dirrm share/locale/fi/LC_MESSAGES
|
||||
@dirrm share/locale/fi
|
||||
@dirrm share/locale/fa/LC_MESSAGES
|
||||
@dirrm share/locale/fa
|
||||
@dirrm share/locale/et/LC_MESSAGES
|
||||
@dirrm share/locale/et
|
||||
@dirrm share/locale/es/LC_MESSAGES
|
||||
@dirrm share/locale/es
|
||||
@dirrm share/locale/eo/LC_MESSAGES
|
||||
@dirrm share/locale/eo
|
||||
@dirrm share/locale/el/LC_MESSAGES
|
||||
@dirrm share/locale/el
|
||||
@dirrm share/locale/de/LC_MESSAGES
|
||||
@dirrm share/locale/de
|
||||
@dirrm share/locale/da/LC_MESSAGES
|
||||
@dirrm share/locale/da
|
||||
@dirrm share/locale/cy/LC_MESSAGES
|
||||
@dirrm share/locale/cy
|
||||
@dirrm share/locale/cs/LC_MESSAGES
|
||||
@dirrm share/locale/cs
|
||||
@dirrm share/locale/ca/LC_MESSAGES
|
||||
@dirrm share/locale/ca
|
||||
@dirrm share/locale/bn/LC_MESSAGES
|
||||
@dirrm share/locale/bn
|
||||
@dirrm share/locale/bg/LC_MESSAGES
|
||||
@dirrm share/locale/bg
|
||||
@dirrm share/locale/be/LC_MESSAGES
|
||||
@dirrm share/locale/be
|
||||
@dirrm share/locale/az/LC_MESSAGES
|
||||
@dirrm share/locale/az
|
||||
@dirrm share/locale/ar/LC_MESSAGES
|
||||
@dirrm share/locale/ar
|
||||
@dirrm share/locale/am/LC_MESSAGES
|
||||
@dirrm share/locale/am
|
||||
@dirrm share/locale
|
||||
@dirrm lib/pkgconfig
|
||||
@dirrm include/libwnck-1.0/libwnck
|
||||
@dirrm include/libwnck-1.0
|
||||
|
Loading…
x
Reference in New Issue
Block a user