build modules w/o version number, so they are not taken as libraries
USE_LIBTOOL fix PLIST, now that some files are found in guile's installation
This commit is contained in:
parent
f00fdc1cf2
commit
569a28b764
@ -1,11 +1,12 @@
|
||||
# $OpenBSD: Makefile,v 1.5 2005/11/27 10:54:10 sturm Exp $
|
||||
# $OpenBSD: Makefile,v 1.6 2005/12/29 22:44:00 sturm Exp $
|
||||
|
||||
NOT_FOR_ARCHS= ${LP64_ARCHS}
|
||||
|
||||
COMMENT= "Quicken-like money and finance manager"
|
||||
DISTNAME= gnucash-1.8.11
|
||||
PKGNAME= ${DISTNAME}p0
|
||||
PKGNAME= ${DISTNAME}p1
|
||||
CATEGORIES= x11/gnome productivity
|
||||
|
||||
MASTER_SITE_GNUCASH= http://www.gnucash.org/pub/gnucash/ \
|
||||
ftp://ftp.gnucash.org/pub/gnucash/ \
|
||||
http://www.linas.org/pub/gnucash/gnucash/
|
||||
@ -31,6 +32,7 @@ PERMIT_DISTFILES_FTP= Yes
|
||||
CONFIGURE_STYLE= gnu
|
||||
|
||||
USE_GMAKE= Yes
|
||||
USE_LIBTOOL= Yes
|
||||
CONFIGURE_ARGS+= ${ENABLE_SHARED} \
|
||||
--with-glib-config=${LOCALBASE}/bin/glib-config \
|
||||
--enable-nls --without-included-gettext \
|
||||
|
@ -1,94 +0,0 @@
|
||||
$OpenBSD: patch-ltmain_sh,v 1.1.1.1 2005/02/24 01:47:15 todd Exp $
|
||||
--- ltmain.sh.orig Wed Aug 28 23:12:30 2002
|
||||
+++ ltmain.sh Thu Feb 17 07:05:13 2005
|
||||
@@ -24,7 +24,7 @@
|
||||
# configuration script generated by Autoconf, you may include it under
|
||||
# the same distribution terms that you use for the rest of that program.
|
||||
|
||||
-# turn off piecewise linking
|
||||
+# turn off piecewize linking
|
||||
max_cmd_len=-2
|
||||
|
||||
# Check that we have a working $echo.
|
||||
@@ -59,7 +59,7 @@ modename="$progname"
|
||||
PROGRAM=ltmain.sh
|
||||
PACKAGE=libtool
|
||||
VERSION=1.4c
|
||||
-TIMESTAMP=" (1.1054 2001/09/16 15:48:23)"
|
||||
+TIMESTAMP=" (1.1066 2001/09/30 10:20:29)"
|
||||
|
||||
default_mode=
|
||||
help="Try \`$progname --help' for more information."
|
||||
@@ -499,7 +499,7 @@ if test -z "$show_help"; then
|
||||
# Only attempt this if the compiler in the base compile
|
||||
# command doesn't match the default compiler.
|
||||
if test -n "$available_tags" && test -z "$tagname"; then
|
||||
- case $base_compile in
|
||||
+ case "$base_compile " in
|
||||
"$CC "*) ;;
|
||||
# Blanks in the command may have been stripped by the calling shell,
|
||||
# but not from the CC environment variable when ltconfig was run.
|
||||
@@ -509,7 +509,7 @@ if test -z "$show_help"; then
|
||||
if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$0" > /dev/null; then
|
||||
# Evaluate the configuration.
|
||||
eval "`sed -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $0`"
|
||||
- case $base_compile in
|
||||
+ case "$base_compile " in
|
||||
"$CC "*)
|
||||
# The compiler in the base compile command matches
|
||||
# the one in the tagged configuration.
|
||||
@@ -1083,7 +1083,8 @@ EOF
|
||||
[\\/]* | [A-Za-z]:[\\/]*) ;;
|
||||
*)
|
||||
$echo "$modename: only absolute run-paths are allowed" 1>&2
|
||||
- exit 1
|
||||
+ $echo "$modename: '$arg' is bad" 1>&2
|
||||
+ #exit 1
|
||||
;;
|
||||
esac
|
||||
if test "$prev" = rpath; then
|
||||
@@ -1249,8 +1250,16 @@ EOF
|
||||
continue
|
||||
;;
|
||||
|
||||
+ -pthread)
|
||||
+ compile_command="$compile_command -pthread"
|
||||
+ finalize_command="$finalize_command -pthread"
|
||||
+ compiler_flags="$compiler_flags -pthread"
|
||||
+ continue
|
||||
+ ;;
|
||||
+
|
||||
-module)
|
||||
module=yes
|
||||
+ build_old_libs=no
|
||||
continue
|
||||
;;
|
||||
|
||||
@@ -1355,6 +1364,7 @@ EOF
|
||||
;;
|
||||
|
||||
-Wl,*)
|
||||
+ if false; then
|
||||
args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wl,//'`
|
||||
arg=
|
||||
save_ifs="$IFS"; IFS=','
|
||||
@@ -1371,6 +1381,7 @@ EOF
|
||||
done
|
||||
IFS="$save_ifs"
|
||||
arg=`$echo "X$arg" | $Xsed -e "s/^ //"`
|
||||
+ fi
|
||||
;;
|
||||
|
||||
-Xcompiler)
|
||||
@@ -2079,10 +2090,7 @@ 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
|
||||
+ need_relink=no
|
||||
# This is a shared library
|
||||
if test "$linkmode" = lib &&
|
||||
test "$hardcode_into_libs" = yes; then
|
21
productivity/gnucash/patches/patch-src_app-file_Makefile_in
Normal file
21
productivity/gnucash/patches/patch-src_app-file_Makefile_in
Normal file
@ -0,0 +1,21 @@
|
||||
$OpenBSD: patch-src_app-file_Makefile_in,v 1.1 2005/12/29 22:44:00 sturm Exp $
|
||||
--- src/app-file/Makefile.in.orig Thu Dec 29 21:22:49 2005
|
||||
+++ src/app-file/Makefile.in Thu Dec 29 21:23:03 2005
|
||||
@@ -266,7 +266,7 @@ noinst_HEADERS = \
|
||||
gw-app-file.h
|
||||
|
||||
|
||||
-libgncmod_app_file_la_LDFLAGS = -module
|
||||
+libgncmod_app_file_la_LDFLAGS = -module -avoid-version
|
||||
|
||||
libgncmod_app_file_la_LIBADD = \
|
||||
../gnc-module/libgncmodule.la \
|
||||
@@ -279,7 +279,7 @@ libgncmod_app_file_la_LIBADD = \
|
||||
|
||||
|
||||
libgw_app_file_la_SOURCES = gw-app-file.c
|
||||
-libgw_app_file_la_LDFLAGS = -module
|
||||
+libgw_app_file_la_LDFLAGS = -module -avoid-version
|
||||
|
||||
gwmoddir = ${GNC_GWRAP_LIBDIR}
|
||||
gwmod_DATA = gw-app-file-spec.scm gw-app-file.scm
|
@ -0,0 +1,12 @@
|
||||
$OpenBSD: patch-src_app-file_gnome_Makefile_in,v 1.1 2005/12/29 22:44:00 sturm Exp $
|
||||
--- src/app-file/gnome/Makefile.in.orig Thu Dec 29 22:35:17 2005
|
||||
+++ src/app-file/gnome/Makefile.in Thu Dec 29 22:37:19 2005
|
||||
@@ -271,7 +271,7 @@ DEFS = @DEFS@ -I. -I$(srcdir) -I../../..
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
LIBS = @LIBS@
|
||||
-libgnc_app_file_gnome_la_LDFLAGS =
|
||||
+libgnc_app_file_gnome_la_LDFLAGS = -module -avoid-version
|
||||
libgnc_app_file_gnome_la_DEPENDENCIES =
|
||||
libgnc_app_file_gnome_la_OBJECTS = gnc-file-dialog.lo \
|
||||
gnc-file-history.lo
|
21
productivity/gnucash/patches/patch-src_app-utils_Makefile_in
Normal file
21
productivity/gnucash/patches/patch-src_app-utils_Makefile_in
Normal file
@ -0,0 +1,21 @@
|
||||
$OpenBSD: patch-src_app-utils_Makefile_in,v 1.1 2005/12/29 22:44:00 sturm Exp $
|
||||
--- src/app-utils/Makefile.in.orig Thu Dec 29 21:58:40 2005
|
||||
+++ src/app-utils/Makefile.in Thu Dec 29 21:59:02 2005
|
||||
@@ -283,7 +283,7 @@ noinst_HEADERS = \
|
||||
gw-app-utils.h
|
||||
|
||||
|
||||
-libgncmod_app_utils_la_LDFLAGS = -module
|
||||
+libgncmod_app_utils_la_LDFLAGS = -module -avoid-version
|
||||
|
||||
libgncmod_app_utils_la_LIBADD = \
|
||||
${top_builddir}/src/gnc-module/libgncmodule.la \
|
||||
@@ -294,7 +294,7 @@ libgncmod_app_utils_la_LIBADD = \
|
||||
|
||||
|
||||
libgw_app_utils_la_SOURCES = gw-app-utils.c
|
||||
-libgw_app_utils_la_LDFLAGS = -module
|
||||
+libgw_app_utils_la_LDFLAGS = -module -avoid-version
|
||||
|
||||
gncmoddir = ${GNC_SHAREDIR}/guile-modules/gnucash
|
||||
gncmod_DATA = app-utils.scm
|
@ -0,0 +1,12 @@
|
||||
$OpenBSD: patch-src_backend_file_Makefile_in,v 1.1 2005/12/29 22:44:00 sturm Exp $
|
||||
--- src/backend/file/Makefile.in.orig Thu Dec 29 21:59:17 2005
|
||||
+++ src/backend/file/Makefile.in Thu Dec 29 21:59:26 2005
|
||||
@@ -289,7 +289,7 @@ noinst_HEADERS = \
|
||||
sixtp-utils.h
|
||||
|
||||
|
||||
-libgncmod_backend_file_la_LDFLAGS = -module
|
||||
+libgncmod_backend_file_la_LDFLAGS = -module -avoid-version
|
||||
libgncmod_backend_file_la_LIBADD = \
|
||||
${GLIB_LIBS} ${GNOME_XML_LIB} \
|
||||
${top_builddir}/src/engine/libgncmod-engine.la
|
@ -0,0 +1,21 @@
|
||||
$OpenBSD: patch-src_business_business-core_Makefile_in,v 1.1 2005/12/29 22:44:00 sturm Exp $
|
||||
--- src/business/business-core/Makefile.in.orig Thu Dec 29 22:01:09 2005
|
||||
+++ src/business/business-core/Makefile.in Thu Dec 29 22:01:33 2005
|
||||
@@ -292,7 +292,7 @@ noinst_HEADERS = \
|
||||
gw-business-core.h
|
||||
|
||||
|
||||
-libgncmod_business_core_la_LDFLAGS = -module
|
||||
+libgncmod_business_core_la_LDFLAGS = -module -avoid-version
|
||||
|
||||
libgncmod_business_core_la_LIBADD = \
|
||||
${GUILE_LIBS} \
|
||||
@@ -303,7 +303,7 @@ libgncmod_business_core_la_LIBADD = \
|
||||
# business-core-helpers.c
|
||||
|
||||
libgw_business_core_la_SOURCES = gw-business-core.c
|
||||
-libgw_business_core_la_LDFLAGS = -module ${G_WRAP_LINK_ARGS}
|
||||
+libgw_business_core_la_LDFLAGS = -module -avoid-version ${G_WRAP_LINK_ARGS}
|
||||
libgw_business_core_la_LIBADD = libgncmod-business-core.la
|
||||
|
||||
gncmoddir = ${GNC_SHAREDIR}/guile-modules/gnucash
|
@ -0,0 +1,12 @@
|
||||
$OpenBSD: patch-src_business_business-core_file_Makefile_in,v 1.1 2005/12/29 22:44:00 sturm Exp $
|
||||
--- src/business/business-core/file/Makefile.in.orig Thu Dec 29 22:03:10 2005
|
||||
+++ src/business/business-core/file/Makefile.in Thu Dec 29 22:03:22 2005
|
||||
@@ -275,7 +275,7 @@ noinst_HEADERS = \
|
||||
gnc-vendor-xml-v2.h
|
||||
|
||||
|
||||
-libgncmod_business_backend_file_la_LDFLAGS = -module
|
||||
+libgncmod_business_backend_file_la_LDFLAGS = -module -avoid-version
|
||||
libgncmod_business_backend_file_la_LIBADD = \
|
||||
${GLIB_LIBS} ${GNOME_XML_LIB} \
|
||||
${top_builddir}/src/business/business-core/libgncmod-business-core.la
|
@ -0,0 +1,21 @@
|
||||
$OpenBSD: patch-src_business_business-gnome_Makefile_in,v 1.1 2005/12/29 22:44:00 sturm Exp $
|
||||
--- src/business/business-gnome/Makefile.in.orig Thu Dec 29 22:01:41 2005
|
||||
+++ src/business/business-gnome/Makefile.in Thu Dec 29 22:01:56 2005
|
||||
@@ -296,7 +296,7 @@ noinst_HEADERS = \
|
||||
gw-business-gnome.h
|
||||
|
||||
|
||||
-libgncmod_business_gnome_la_LDFLAGS = -module
|
||||
+libgncmod_business_gnome_la_LDFLAGS = -module -avoid-version
|
||||
|
||||
libgncmod_business_gnome_la_LIBADD = \
|
||||
${top_builddir}/src/business/business-core/libgncmod-business-core.la \
|
||||
@@ -310,7 +310,7 @@ libgncmod_business_gnome_la_LIBADD = \
|
||||
|
||||
|
||||
libgw_business_gnome_la_SOURCES = gw-business-gnome.c
|
||||
-libgw_business_gnome_la_LDFLAGS = -module ${G_WRAP_LINK_ARGS}
|
||||
+libgw_business_gnome_la_LDFLAGS = -module -avoid-version ${G_WRAP_LINK_ARGS}
|
||||
libgw_business_gnome_la_LIBADD = libgncmod-business-gnome.la
|
||||
|
||||
# For Business Reports
|
@ -0,0 +1,12 @@
|
||||
$OpenBSD: patch-src_business_business-ledger_Makefile_in,v 1.1 2005/12/29 22:44:00 sturm Exp $
|
||||
--- src/business/business-ledger/Makefile.in.orig Thu Dec 29 21:57:35 2005
|
||||
+++ src/business/business-ledger/Makefile.in Thu Dec 29 21:58:06 2005
|
||||
@@ -253,7 +253,7 @@ noinst_HEADERS = \
|
||||
gncEntryLedgerModel.h
|
||||
|
||||
|
||||
-libgnc_business_ledger_la_LDFLAGS = -module
|
||||
+libgnc_business_ledger_la_LDFLAGS = -module -avoid-version
|
||||
libgnc_business_ledger_la_LIBADD = \
|
||||
${top_builddir}/src/gnome-utils/libgncmod-gnome-utils.la \
|
||||
${top_builddir}/src/app-utils/libgncmod-app-utils.la \
|
@ -0,0 +1,12 @@
|
||||
$OpenBSD: patch-src_business_business-utils_Makefile_in,v 1.1 2005/12/29 22:44:00 sturm Exp $
|
||||
--- src/business/business-utils/Makefile.in.orig Thu Dec 29 22:02:04 2005
|
||||
+++ src/business/business-utils/Makefile.in Thu Dec 29 22:02:16 2005
|
||||
@@ -255,7 +255,7 @@ noinst_HEADERS = \
|
||||
business-options.h
|
||||
|
||||
|
||||
-libgncmod_business_utils_la_LDFLAGS = -module
|
||||
+libgncmod_business_utils_la_LDFLAGS = -module -avoid-version
|
||||
libgncmod_business_utils_la_LIBADD = \
|
||||
${GUILE_LIBS} \
|
||||
${GLIB_LIBS} \
|
@ -0,0 +1,21 @@
|
||||
$OpenBSD: patch-src_business_dialog-tax-table_Makefile_in,v 1.1 2005/12/29 22:44:00 sturm Exp $
|
||||
--- src/business/dialog-tax-table/Makefile.in.orig Thu Dec 29 22:04:07 2005
|
||||
+++ src/business/dialog-tax-table/Makefile.in Thu Dec 29 22:04:24 2005
|
||||
@@ -263,7 +263,7 @@ noinst_HEADERS = \
|
||||
gw-dialog-tax-table.h
|
||||
|
||||
|
||||
-libgncmod_dialog_tax_table_la_LDFLAGS = -module
|
||||
+libgncmod_dialog_tax_table_la_LDFLAGS = -module -avoid-version
|
||||
|
||||
libgncmod_dialog_tax_table_la_LIBADD = \
|
||||
../../gnc-module/libgncmodule.la \
|
||||
@@ -276,7 +276,7 @@ libgncmod_dialog_tax_table_la_LIBADD = \
|
||||
|
||||
|
||||
libgw_dialog_tax_table_la_SOURCES = gw-dialog-tax-table.c
|
||||
-libgw_dialog_tax_table_la_LDFLAGS = -module ${G_WRAP_LINK_ARGS}
|
||||
+libgw_dialog_tax_table_la_LDFLAGS = -module -avoid-version ${G_WRAP_LINK_ARGS}
|
||||
|
||||
gwmoddir = ${GNC_GWRAP_LIBDIR}
|
||||
gwmod_DATA = \
|
@ -0,0 +1,12 @@
|
||||
$OpenBSD: patch-src_calculation_Makefile_in,v 1.1 2005/12/29 22:44:00 sturm Exp $
|
||||
--- src/calculation/Makefile.in.orig Thu Dec 29 22:02:28 2005
|
||||
+++ src/calculation/Makefile.in Thu Dec 29 22:02:38 2005
|
||||
@@ -236,7 +236,7 @@ SUBDIRS = . test
|
||||
|
||||
pkglib_LTLIBRARIES = libgncmod-calculation.la
|
||||
|
||||
-libgncmod_calculation_la_LDFLAGS = -module
|
||||
+libgncmod_calculation_la_LDFLAGS = -module -avoid-version
|
||||
libgncmod_calculation_la_LIBADD = ${GLIB_LIBS} ${GUILE_LIBS}
|
||||
|
||||
libgncmod_calculation_la_SOURCES = \
|
@ -0,0 +1,17 @@
|
||||
$OpenBSD: patch-src_core-utils_Makefile_in,v 1.1 2005/12/29 22:44:00 sturm Exp $
|
||||
--- src/core-utils/Makefile.in.orig Thu Dec 29 21:15:53 2005
|
||||
+++ src/core-utils/Makefile.in Thu Dec 29 21:16:51 2005
|
||||
@@ -238,11 +238,11 @@ gwmoddir = ${GNC_GWRAP_LIBDIR}
|
||||
gwmod_DATA = gw-core-utils-spec.scm gw-core-utils.scm
|
||||
|
||||
libcore_utils_la_SOURCES = core-utils.c
|
||||
-libcore_utils_la_LDFLAGS = -module ${GLIB_LIBS}
|
||||
+libcore_utils_la_LDFLAGS = -module -avoid-version ${GLIB_LIBS}
|
||||
libcore_utils_la_LIBADD =
|
||||
|
||||
libgw_core_utils_la_SOURCES = gw-core-utils.c
|
||||
-libgw_core_utils_la_LDFLAGS = -module ${G_WRAP_LINK_ARGS} ${GUILE_LIBS}
|
||||
+libgw_core_utils_la_LDFLAGS = -module -avoid-version ${G_WRAP_LINK_ARGS} ${GUILE_LIBS}
|
||||
libgw_core_utils_la_LIBADD = libcore-utils.la
|
||||
|
||||
noinst_HEADERS = \
|
25
productivity/gnucash/patches/patch-src_engine_Makefile_in
Normal file
25
productivity/gnucash/patches/patch-src_engine_Makefile_in
Normal file
@ -0,0 +1,25 @@
|
||||
$OpenBSD: patch-src_engine_Makefile_in,v 1.1 2005/12/29 22:44:00 sturm Exp $
|
||||
--- src/engine/Makefile.in.orig Thu Dec 29 22:04:39 2005
|
||||
+++ src/engine/Makefile.in Thu Dec 29 22:05:02 2005
|
||||
@@ -348,7 +348,7 @@ noinst_HEADERS = \
|
||||
|
||||
noinst_SCRIPTS = iso-currencies-to-c
|
||||
|
||||
-libgncmod_engine_la_LDFLAGS = -module
|
||||
+libgncmod_engine_la_LDFLAGS = -module -avoid-version
|
||||
libgncmod_engine_la_LIBADD = ${GNUCASH_ENGINE_BASE_LIBS} ${INTLLIBS} \
|
||||
libgw-engine.la \
|
||||
libgw-kvp.la \
|
||||
@@ -357,10 +357,10 @@ libgncmod_engine_la_LIBADD = ${GNUCASH_E
|
||||
|
||||
|
||||
libgw_kvp_la_SOURCES = gw-kvp.c kvp-scm.c
|
||||
-libgw_kvp_la_LDFLAGS = -module ${G_WRAP_LINK_ARGS}
|
||||
+libgw_kvp_la_LDFLAGS = -module -avoid-version ${G_WRAP_LINK_ARGS}
|
||||
|
||||
libgw_engine_la_SOURCES = gw-engine.c engine-helpers.c glib-helpers.c
|
||||
-libgw_engine_la_LDFLAGS = -module ${G_WRAP_LINK_ARGS}
|
||||
+libgw_engine_la_LDFLAGS = -module -avoid-version ${G_WRAP_LINK_ARGS}
|
||||
|
||||
gncmoddir = ${GNC_SHAREDIR}/guile-modules/gnucash
|
||||
gncmod_DATA = engine.scm
|
@ -0,0 +1,21 @@
|
||||
$OpenBSD: patch-src_gnc-module_Makefile_in,v 1.1 2005/12/29 22:44:00 sturm Exp $
|
||||
--- src/gnc-module/Makefile.in.orig Thu Dec 29 21:19:38 2005
|
||||
+++ src/gnc-module/Makefile.in Thu Dec 29 21:20:08 2005
|
||||
@@ -240,7 +240,7 @@ lib_LTLIBRARIES = libgncmodule.la
|
||||
pkglib_LTLIBRARIES = libgw-gnc-module.la
|
||||
|
||||
libgncmodule_la_SOURCES = gnc-module.c
|
||||
-libgncmodule_la_LDFLAGS = -module
|
||||
+libgncmodule_la_LDFLAGS = -module -avoid-version
|
||||
libgncmodule_la_LIBADD = \
|
||||
../core-utils/libcore-utils.la \
|
||||
${G_WRAP_LINK_ARGS} \
|
||||
@@ -249,7 +249,7 @@ libgncmodule_la_LIBADD = \
|
||||
|
||||
|
||||
libgw_gnc_module_la_SOURCES = gw-gnc-module.c
|
||||
-libgw_gnc_module_la_LDFLAGS = -module
|
||||
+libgw_gnc_module_la_LDFLAGS = -module -avoid-version
|
||||
libgw_gnc_module_la_LIBADD = libgncmodule.la \
|
||||
${G_WRAP_LINK_ARGS} \
|
||||
${GUILE_LIBS} \
|
@ -0,0 +1,21 @@
|
||||
$OpenBSD: patch-src_gnome-search_Makefile_in,v 1.1 2005/12/29 22:44:00 sturm Exp $
|
||||
--- src/gnome-search/Makefile.in.orig Thu Dec 29 22:05:55 2005
|
||||
+++ src/gnome-search/Makefile.in Thu Dec 29 22:06:13 2005
|
||||
@@ -286,7 +286,7 @@ noinst_HEADERS = \
|
||||
gw-gnome-search.h
|
||||
|
||||
|
||||
-libgncmod_gnome_search_la_LDFLAGS = -module
|
||||
+libgncmod_gnome_search_la_LDFLAGS = -module -avoid-version
|
||||
|
||||
libgncmod_gnome_search_la_LIBADD = \
|
||||
${top_builddir}/src/gnc-module/libgncmodule.la \
|
||||
@@ -299,7 +299,7 @@ libgncmod_gnome_search_la_LIBADD = \
|
||||
|
||||
|
||||
libgw_gnome_search_la_SOURCES = gw-gnome-search.c
|
||||
-libgw_gnome_search_la_LDFLAGS = -module ${G_WRAP_LINK_ARGS}
|
||||
+libgw_gnome_search_la_LDFLAGS = -module -avoid-version ${G_WRAP_LINK_ARGS}
|
||||
|
||||
gncmoddir = ${GNC_SHAREDIR}/guile-modules/gnucash
|
||||
gncmod_DATA = gnome-search.scm
|
@ -0,0 +1,21 @@
|
||||
$OpenBSD: patch-src_gnome-utils_Makefile_in,v 1.1 2005/12/29 22:44:00 sturm Exp $
|
||||
--- src/gnome-utils/Makefile.in.orig Thu Dec 29 22:07:05 2005
|
||||
+++ src/gnome-utils/Makefile.in Thu Dec 29 22:07:16 2005
|
||||
@@ -333,7 +333,7 @@ noinst_HEADERS = \
|
||||
search-param.h
|
||||
|
||||
|
||||
-libgncmod_gnome_utils_la_LDFLAGS = -module
|
||||
+libgncmod_gnome_utils_la_LDFLAGS = -module -avoid-version
|
||||
|
||||
libgncmod_gnome_utils_la_LIBADD = \
|
||||
${top_builddir}/src/gnc-module/libgncmodule.la \
|
||||
@@ -355,7 +355,7 @@ libgncmod_gnome_utils_la_LIBADD = \
|
||||
|
||||
|
||||
libgw_gnome_utils_la_SOURCES = gw-gnome-utils.c
|
||||
-libgw_gnome_utils_la_LDFLAGS = -module
|
||||
+libgw_gnome_utils_la_LDFLAGS = -module -avoid-version
|
||||
|
||||
gwmoddir = ${GNC_GWRAP_LIBDIR}
|
||||
gwmod_DATA = gw-gnome-utils.scm gw-gnome-utils-spec.scm
|
21
productivity/gnucash/patches/patch-src_gnome_Makefile_in
Normal file
21
productivity/gnucash/patches/patch-src_gnome_Makefile_in
Normal file
@ -0,0 +1,21 @@
|
||||
$OpenBSD: patch-src_gnome_Makefile_in,v 1.1 2005/12/29 22:44:00 sturm Exp $
|
||||
--- src/gnome/Makefile.in.orig Thu Dec 29 22:34:37 2005
|
||||
+++ src/gnome/Makefile.in Thu Dec 29 22:34:58 2005
|
||||
@@ -240,7 +240,7 @@ gwmoddir = ${GNC_GWRAP_LIBDIR}
|
||||
gwmod_DATA = gw-gnc-spec.scm gw-gnc.scm
|
||||
#nodist_gwmod_DATA = gw-gnc.scm
|
||||
|
||||
-libgncgnome_la_LDFLAGS = -module
|
||||
+libgncgnome_la_LDFLAGS = -module -avoid-version
|
||||
libgncgnome_la_LIBADD = \
|
||||
${top_builddir}/src/engine/libgncmod-engine.la \
|
||||
${top_builddir}/src/app-file/libgncmod-app-file.la \
|
||||
@@ -253,7 +253,7 @@ libgncgnome_la_LIBADD = \
|
||||
|
||||
|
||||
libgw_gnc_la_SOURCES = gw-gnc.c
|
||||
-libgw_gnc_la_LDFLAGS = -module \
|
||||
+libgw_gnc_la_LDFLAGS = -module -avoid-version \
|
||||
${G_WRAP_LINK_ARGS} ${GLIB_LIBS}
|
||||
|
||||
libgw_gnc_la_LIBADD = libgncgnome.la
|
@ -0,0 +1,12 @@
|
||||
$OpenBSD: patch-src_import-export_Makefile_in,v 1.1 2005/12/29 22:44:00 sturm Exp $
|
||||
--- src/import-export/Makefile.in.orig Thu Dec 29 22:05:34 2005
|
||||
+++ src/import-export/Makefile.in Thu Dec 29 22:05:44 2005
|
||||
@@ -265,7 +265,7 @@ noinst_HEADERS = \
|
||||
import-utilities.h
|
||||
|
||||
|
||||
-libgncmod_generic_import_la_LDFLAGS = -module
|
||||
+libgncmod_generic_import_la_LDFLAGS = -module -avoid-version
|
||||
|
||||
libgncmod_generic_import_la_LIBADD = \
|
||||
${top_builddir}/src/gnome-utils/libgncmod-gnome-utils.la \
|
@ -0,0 +1,21 @@
|
||||
$OpenBSD: patch-src_import-export_binary-import_Makefile_in,v 1.1 2005/12/29 22:44:00 sturm Exp $
|
||||
--- src/import-export/binary-import/Makefile.in.orig Thu Dec 29 22:00:16 2005
|
||||
+++ src/import-export/binary-import/Makefile.in Thu Dec 29 22:00:34 2005
|
||||
@@ -267,7 +267,7 @@ gncinclude_HEADERS = \
|
||||
gw-binary-import.h
|
||||
|
||||
|
||||
-libgncmod_binary_import_la_LDFLAGS = -module
|
||||
+libgncmod_binary_import_la_LDFLAGS = -module -avoid-version
|
||||
|
||||
libgncmod_binary_import_la_LIBADD = \
|
||||
${top_builddir}/src/gnc-module/libgncmodule.la \
|
||||
@@ -284,7 +284,7 @@ libgncmod_binary_import_la_LIBADD = \
|
||||
|
||||
|
||||
libgw_binary_import_la_SOURCES = gw-binary-import.c
|
||||
-libgw_binary_import_la_LDFLAGS = -module
|
||||
+libgw_binary_import_la_LDFLAGS = -module -avoid-version
|
||||
libgw_binary_import_la_LIBADD = libgncmod-binary-import.la
|
||||
|
||||
gncmoddir = ${GNC_SHAREDIR}/guile-modules/gnucash/import-export
|
@ -0,0 +1,12 @@
|
||||
$OpenBSD: patch-src_import-export_log-replay_Makefile_in,v 1.1 2005/12/29 22:44:00 sturm Exp $
|
||||
--- src/import-export/log-replay/Makefile.in.orig Thu Dec 29 22:08:36 2005
|
||||
+++ src/import-export/log-replay/Makefile.in Thu Dec 29 22:08:44 2005
|
||||
@@ -245,7 +245,7 @@ noinst_HEADERS = \
|
||||
gnc-log-replay.h
|
||||
|
||||
|
||||
-libgncmod_log_replay_la_LDFLAGS = -module
|
||||
+libgncmod_log_replay_la_LDFLAGS = -module -avoid-version
|
||||
|
||||
libgncmod_log_replay_la_LIBADD = \
|
||||
${top_builddir}/src/gnc-module/libgncmodule.la \
|
@ -0,0 +1,12 @@
|
||||
$OpenBSD: patch-src_import-export_qif-import_Makefile_in,v 1.1 2005/12/29 22:44:00 sturm Exp $
|
||||
--- src/import-export/qif-import/Makefile.in.orig Thu Dec 29 22:09:12 2005
|
||||
+++ src/import-export/qif-import/Makefile.in Thu Dec 29 22:09:21 2005
|
||||
@@ -247,7 +247,7 @@ noinst_HEADERS = \
|
||||
druid-qif-import.h
|
||||
|
||||
|
||||
-libgncmod_qif_import_la_LDFLAGS = -module
|
||||
+libgncmod_qif_import_la_LDFLAGS = -module -avoid-version
|
||||
|
||||
libgncmod_qif_import_la_LIBADD = \
|
||||
${top_builddir}/src/gnome-utils/libgncmod-gnome-utils.la \
|
@ -0,0 +1,12 @@
|
||||
$OpenBSD: patch-src_network-utils_Makefile_in,v 1.1 2005/12/29 22:44:00 sturm Exp $
|
||||
--- src/network-utils/Makefile.in.orig Thu Dec 29 22:08:53 2005
|
||||
+++ src/network-utils/Makefile.in Thu Dec 29 22:09:01 2005
|
||||
@@ -256,7 +256,7 @@ gncinclude_HEADERS = \
|
||||
gnc-http.h
|
||||
|
||||
|
||||
-libgncmod_network_utils_la_LDFLAGS = -module
|
||||
+libgncmod_network_utils_la_LDFLAGS = -module -avoid-version
|
||||
|
||||
libgncmod_network_utils_la_LIBADD = \
|
||||
${top_builddir}/src/gnc-module/libgncmodule.la \
|
@ -0,0 +1,12 @@
|
||||
$OpenBSD: patch-src_register_ledger-core_Makefile_in,v 1.1 2005/12/29 22:44:00 sturm Exp $
|
||||
--- src/register/ledger-core/Makefile.in.orig Thu Dec 29 22:07:37 2005
|
||||
+++ src/register/ledger-core/Makefile.in Thu Dec 29 22:07:45 2005
|
||||
@@ -259,7 +259,7 @@ noinst_HEADERS = \
|
||||
split-register-p.h
|
||||
|
||||
|
||||
-libgncmod_ledger_core_la_LDFLAGS = -module
|
||||
+libgncmod_ledger_core_la_LDFLAGS = -module -avoid-version
|
||||
libgncmod_ledger_core_la_LIBADD = \
|
||||
${top_builddir}/src/gnome-utils/libgncmod-gnome-utils.la \
|
||||
${top_builddir}/src/app-utils/libgncmod-app-utils.la \
|
@ -0,0 +1,21 @@
|
||||
$OpenBSD: patch-src_register_register-core_Makefile_in,v 1.1 2005/12/29 22:44:00 sturm Exp $
|
||||
--- src/register/register-core/Makefile.in.orig Thu Dec 29 22:09:34 2005
|
||||
+++ src/register/register-core/Makefile.in Thu Dec 29 22:09:48 2005
|
||||
@@ -237,7 +237,7 @@ PWD := $(shell pwd)
|
||||
|
||||
pkglib_LTLIBRARIES = libgncmod-register-core.la libgw-register-core.la
|
||||
|
||||
-libgncmod_register_core_la_LDFLAGS = -module
|
||||
+libgncmod_register_core_la_LDFLAGS = -module -avoid-version
|
||||
libgncmod_register_core_la_LIBADD = \
|
||||
${top_builddir}/src/gnc-module/libgncmodule.la \
|
||||
${top_builddir}/src/engine/libgncmod-engine.la \
|
||||
@@ -287,7 +287,7 @@ gncinclude_HEADERS = \
|
||||
|
||||
|
||||
libgw_register_core_la_SOURCES = gw-register-core.c
|
||||
-libgw_register_core_la_LDFLAGS = -module
|
||||
+libgw_register_core_la_LDFLAGS = -module -avoid-version
|
||||
|
||||
gwmoddir = ${GNC_GWRAP_LIBDIR}
|
||||
gwmod_DATA = gw-register-core.scm gw-register-core-spec.scm
|
@ -0,0 +1,12 @@
|
||||
$OpenBSD: patch-src_register_register-gnome_Makefile_in,v 1.1 2005/12/29 22:44:00 sturm Exp $
|
||||
--- src/register/register-gnome/Makefile.in.orig Thu Dec 29 22:09:55 2005
|
||||
+++ src/register/register-gnome/Makefile.in Thu Dec 29 22:10:07 2005
|
||||
@@ -236,7 +236,7 @@ SUBDIRS = . test
|
||||
|
||||
pkglib_LTLIBRARIES = libgncmod-register-gnome.la
|
||||
|
||||
-libgncmod_register_gnome_la_LDFLAGS = -module
|
||||
+libgncmod_register_gnome_la_LDFLAGS = -module -avoid-version
|
||||
libgncmod_register_gnome_la_LIBADD = \
|
||||
${top_builddir}/src/register/register-core/libgncmod-register-core.la \
|
||||
${top_builddir}/src/gnc-module/libgncmodule.la \
|
@ -0,0 +1,12 @@
|
||||
$OpenBSD: patch-src_report_locale-specific_us_Makefile_in,v 1.1 2005/12/29 22:44:00 sturm Exp $
|
||||
--- src/report/locale-specific/us/Makefile.in.orig Thu Dec 29 22:08:03 2005
|
||||
+++ src/report/locale-specific/us/Makefile.in Thu Dec 29 22:08:12 2005
|
||||
@@ -240,7 +240,7 @@ libgncmod_locale_reports_us_la_SOURCES =
|
||||
gncmod-locale-reports-us.c
|
||||
|
||||
|
||||
-libgncmod_locale_reports_us_la_LDFLAGS = -module
|
||||
+libgncmod_locale_reports_us_la_LDFLAGS = -module -avoid-version
|
||||
libgncmod_locale_reports_us_la_LIBADD = \
|
||||
${top_builddir}/src/gnc-module/libgncmodule.la \
|
||||
${GUILE_LIBS} \
|
@ -0,0 +1,21 @@
|
||||
$OpenBSD: patch-src_report_report-gnome_Makefile_in,v 1.1 2005/12/29 22:44:00 sturm Exp $
|
||||
--- src/report/report-gnome/Makefile.in.orig Thu Dec 29 22:10:18 2005
|
||||
+++ src/report/report-gnome/Makefile.in Thu Dec 29 22:10:28 2005
|
||||
@@ -268,7 +268,7 @@ gncinclude_HEADERS = \
|
||||
window-report.h
|
||||
|
||||
|
||||
-libgncmod_report_gnome_la_LDFLAGS = -module
|
||||
+libgncmod_report_gnome_la_LDFLAGS = -module -avoid-version
|
||||
|
||||
libgncmod_report_gnome_la_LIBADD = \
|
||||
${top_builddir}/src/gnc-module/libgncmodule.la \
|
||||
@@ -284,7 +284,7 @@ libgncmod_report_gnome_la_LIBADD = \
|
||||
|
||||
|
||||
libgw_report_gnome_la_SOURCES = gw-report-gnome.c
|
||||
-libgw_report_gnome_la_LDFLAGS = -module
|
||||
+libgw_report_gnome_la_LDFLAGS = -module -avoid-version
|
||||
|
||||
gwmoddir = ${GNC_GWRAP_LIBDIR}
|
||||
gwmod_DATA = gw-report-gnome.scm gw-report-gnome-spec.scm
|
@ -0,0 +1,12 @@
|
||||
$OpenBSD: patch-src_report_report-system_Makefile_in,v 1.1 2005/12/29 22:44:00 sturm Exp $
|
||||
--- src/report/report-system/Makefile.in.orig Thu Dec 29 22:10:35 2005
|
||||
+++ src/report/report-system/Makefile.in Thu Dec 29 22:10:45 2005
|
||||
@@ -246,7 +246,7 @@ gncinclude_HEADERS = \
|
||||
gnc-report.h
|
||||
|
||||
|
||||
-libgncmod_report_system_la_LDFLAGS = -module
|
||||
+libgncmod_report_system_la_LDFLAGS = -module -avoid-version
|
||||
libgncmod_report_system_la_LIBADD = \
|
||||
${top_builddir}/src/gnc-module/libgncmodule.la \
|
||||
${GUILE_LIBS} \
|
@ -0,0 +1,12 @@
|
||||
$OpenBSD: patch-src_report_standard-reports_Makefile_in,v 1.1 2005/12/29 22:44:00 sturm Exp $
|
||||
--- src/report/standard-reports/Makefile.in.orig Thu Dec 29 22:10:54 2005
|
||||
+++ src/report/standard-reports/Makefile.in Thu Dec 29 22:11:02 2005
|
||||
@@ -240,7 +240,7 @@ libgncmod_standard_reports_la_SOURCES =
|
||||
gncmod-standard-reports.c
|
||||
|
||||
|
||||
-libgncmod_standard_reports_la_LDFLAGS = -module
|
||||
+libgncmod_standard_reports_la_LDFLAGS = -module -avoid-version
|
||||
|
||||
AM_CFLAGS = -I${top_srcdir}/src/gnc-module ${GUILE_INCS} ${GLIB_CFLAGS}
|
||||
|
@ -0,0 +1,12 @@
|
||||
$OpenBSD: patch-src_report_stylesheets_Makefile_in,v 1.1 2005/12/29 22:44:00 sturm Exp $
|
||||
--- src/report/stylesheets/Makefile.in.orig Thu Dec 29 22:12:14 2005
|
||||
+++ src/report/stylesheets/Makefile.in Thu Dec 29 22:12:21 2005
|
||||
@@ -240,7 +240,7 @@ libgncmod_stylesheets_la_SOURCES = \
|
||||
gncmod-stylesheets.c
|
||||
|
||||
|
||||
-libgncmod_stylesheets_la_LDFLAGS = -module
|
||||
+libgncmod_stylesheets_la_LDFLAGS = -module -avoid-version
|
||||
|
||||
AM_CFLAGS = -I${top_srcdir}/src/gnc-module ${GUILE_INCS} ${GLIB_CFLAGS}
|
||||
|
@ -0,0 +1,12 @@
|
||||
$OpenBSD: patch-src_report_utility-reports_Makefile_in,v 1.1 2005/12/29 22:44:00 sturm Exp $
|
||||
--- src/report/utility-reports/Makefile.in.orig Thu Dec 29 22:12:58 2005
|
||||
+++ src/report/utility-reports/Makefile.in Thu Dec 29 22:13:10 2005
|
||||
@@ -240,7 +240,7 @@ libgncmod_utility_reports_la_SOURCES = \
|
||||
gncmod-utility-reports.c
|
||||
|
||||
|
||||
-libgncmod_utility_reports_la_LDFLAGS = -module
|
||||
+libgncmod_utility_reports_la_LDFLAGS = -module -avoid-version
|
||||
|
||||
AM_CFLAGS = -I${top_srcdir}/src/gnc-module ${GUILE_INCS} ${GLIB_CFLAGS}
|
||||
|
12
productivity/gnucash/patches/patch-src_tax_us_Makefile_in
Normal file
12
productivity/gnucash/patches/patch-src_tax_us_Makefile_in
Normal file
@ -0,0 +1,12 @@
|
||||
$OpenBSD: patch-src_tax_us_Makefile_in,v 1.1 2005/12/29 22:44:00 sturm Exp $
|
||||
--- src/tax/us/Makefile.in.orig Thu Dec 29 22:12:42 2005
|
||||
+++ src/tax/us/Makefile.in Thu Dec 29 22:12:49 2005
|
||||
@@ -240,7 +240,7 @@ libgncmod_tax_us_la_SOURCES = \
|
||||
gncmod-tax-us.c
|
||||
|
||||
|
||||
-libgncmod_tax_us_la_LDFLAGS = -module
|
||||
+libgncmod_tax_us_la_LDFLAGS = -module -avoid-version
|
||||
libgncmod_tax_us_la_LIBADD = \
|
||||
${GUILE_LIBS} \
|
||||
${GLIB_LIBS}
|
@ -1,48 +1,48 @@
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2005/02/24 01:47:15 todd Exp $
|
||||
@lib lib/gnucash/libgnc-business-ledger.so.0.0
|
||||
@lib lib/gnucash/libgncmod-app-file.so.0.0
|
||||
@lib lib/gnucash/libgncmod-app-utils.so.0.0
|
||||
@lib lib/gnucash/libgncmod-backend-file.so.0.0
|
||||
@lib lib/gnucash/libgncmod-binary-import.so.0.0
|
||||
@lib lib/gnucash/libgncmod-business-backend-file.so.0.0
|
||||
@lib lib/gnucash/libgncmod-business-core.so.0.0
|
||||
@lib lib/gnucash/libgncmod-business-gnome.so.0.0
|
||||
@lib lib/gnucash/libgncmod-business-utils.so.0.0
|
||||
@lib lib/gnucash/libgncmod-calculation.so.0.0
|
||||
@lib lib/gnucash/libgncmod-dialog-tax-table.so.0.0
|
||||
@lib lib/gnucash/libgncmod-engine.so.0.0
|
||||
@lib lib/gnucash/libgncmod-generic-import.so.0.0
|
||||
@lib lib/gnucash/libgncmod-gnome-search.so.0.0
|
||||
@lib lib/gnucash/libgncmod-gnome-utils.so.0.0
|
||||
@lib lib/gnucash/libgncmod-ledger-core.so.0.0
|
||||
@lib lib/gnucash/libgncmod-locale-reports-us.so.0.0
|
||||
@lib lib/gnucash/libgncmod-log-replay.so.0.0
|
||||
@lib lib/gnucash/libgncmod-network-utils.so.0.0
|
||||
@lib lib/gnucash/libgncmod-qif-import.so.0.0
|
||||
@lib lib/gnucash/libgncmod-register-core.so.0.0
|
||||
@lib lib/gnucash/libgncmod-register-gnome.so.0.0
|
||||
@lib lib/gnucash/libgncmod-report-gnome.so.0.0
|
||||
@lib lib/gnucash/libgncmod-report-system.so.0.0
|
||||
@lib lib/gnucash/libgncmod-standard-reports.so.0.0
|
||||
@lib lib/gnucash/libgncmod-stylesheets.so.0.0
|
||||
@lib lib/gnucash/libgncmod-tax-us.so.0.0
|
||||
@lib lib/gnucash/libgncmod-utility-reports.so.0.0
|
||||
@lib lib/gnucash/libgw-app-file.so.0.0
|
||||
@lib lib/gnucash/libgw-app-utils.so.0.0
|
||||
@lib lib/gnucash/libgw-binary-import.so.0.0
|
||||
@lib lib/gnucash/libgw-business-core.so.0.0
|
||||
@lib lib/gnucash/libgw-business-gnome.so.0.0
|
||||
@lib lib/gnucash/libgw-dialog-tax-table.so.0.0
|
||||
@lib lib/gnucash/libgw-engine.so.0.0
|
||||
@lib lib/gnucash/libgw-gnc-module.so.0.0
|
||||
@lib lib/gnucash/libgw-gnome-search.so.0.0
|
||||
@lib lib/gnucash/libgw-gnome-utils.so.0.0
|
||||
@lib lib/gnucash/libgw-kvp.so.0.0
|
||||
@lib lib/gnucash/libgw-register-core.so.0.0
|
||||
@lib lib/gnucash/libgw-report-gnome.so.0.0
|
||||
@lib lib/libcore-utils.so.0.0
|
||||
@lib lib/libgnc-app-file-gnome.so.0.0
|
||||
@lib lib/libgncgnome.so.0.0
|
||||
@lib lib/libgncmodule.so.0.0
|
||||
@lib lib/libgw-core-utils.so.0.0
|
||||
@lib lib/libgw-gnc.so.0.0
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.2 2005/12/29 22:44:00 sturm Exp $
|
||||
lib/gnucash/libgnc-business-ledger.so
|
||||
lib/gnucash/libgncmod-app-file.so
|
||||
lib/gnucash/libgncmod-app-utils.so
|
||||
lib/gnucash/libgncmod-backend-file.so
|
||||
lib/gnucash/libgncmod-binary-import.so
|
||||
lib/gnucash/libgncmod-business-backend-file.so
|
||||
lib/gnucash/libgncmod-business-core.so
|
||||
lib/gnucash/libgncmod-business-gnome.so
|
||||
lib/gnucash/libgncmod-business-utils.so
|
||||
lib/gnucash/libgncmod-calculation.so
|
||||
lib/gnucash/libgncmod-dialog-tax-table.so
|
||||
lib/gnucash/libgncmod-engine.so
|
||||
lib/gnucash/libgncmod-generic-import.so
|
||||
lib/gnucash/libgncmod-gnome-search.so
|
||||
lib/gnucash/libgncmod-gnome-utils.so
|
||||
lib/gnucash/libgncmod-ledger-core.so
|
||||
lib/gnucash/libgncmod-locale-reports-us.so
|
||||
lib/gnucash/libgncmod-log-replay.so
|
||||
lib/gnucash/libgncmod-network-utils.so
|
||||
lib/gnucash/libgncmod-qif-import.so
|
||||
lib/gnucash/libgncmod-register-core.so
|
||||
lib/gnucash/libgncmod-register-gnome.so
|
||||
lib/gnucash/libgncmod-report-gnome.so
|
||||
lib/gnucash/libgncmod-report-system.so
|
||||
lib/gnucash/libgncmod-standard-reports.so
|
||||
lib/gnucash/libgncmod-stylesheets.so
|
||||
lib/gnucash/libgncmod-tax-us.so
|
||||
lib/gnucash/libgncmod-utility-reports.so
|
||||
lib/gnucash/libgw-app-file.so
|
||||
lib/gnucash/libgw-app-utils.so
|
||||
lib/gnucash/libgw-binary-import.so
|
||||
lib/gnucash/libgw-business-core.so
|
||||
lib/gnucash/libgw-business-gnome.so
|
||||
lib/gnucash/libgw-dialog-tax-table.so
|
||||
lib/gnucash/libgw-engine.so
|
||||
lib/gnucash/libgw-gnc-module.so
|
||||
lib/gnucash/libgw-gnome-search.so
|
||||
lib/gnucash/libgw-gnome-utils.so
|
||||
lib/gnucash/libgw-kvp.so
|
||||
lib/gnucash/libgw-register-core.so
|
||||
lib/gnucash/libgw-report-gnome.so
|
||||
lib/libcore-utils.so
|
||||
lib/libgnc-app-file-gnome.so
|
||||
lib/libgncgnome.so
|
||||
lib/libgncmodule.so
|
||||
lib/libgw-core-utils.so
|
||||
lib/libgw-gnc.so
|
||||
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.1.1.1 2005/02/24 01:47:15 todd Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.2 2005/12/29 22:44:00 sturm Exp $
|
||||
bin/dump-finance-quote
|
||||
bin/gnc-prices
|
||||
bin/gnc-test-env
|
||||
@ -569,13 +569,6 @@ share/gnucash/guile-modules/gnucash/report/welcome-to-gnucash.scm
|
||||
share/gnucash/guile-modules/gnucash/tax/
|
||||
share/gnucash/guile-modules/gnucash/tax/de_DE.scm
|
||||
share/gnucash/guile-modules/gnucash/tax/us.scm
|
||||
share/gnucash/guile-modules/srfi/
|
||||
share/gnucash/guile-modules/srfi/srfi-1.scm
|
||||
share/gnucash/guile-modules/srfi/srfi-11.scm
|
||||
share/gnucash/guile-modules/srfi/srfi-19.scm
|
||||
share/gnucash/guile-modules/srfi/srfi-2.scm
|
||||
share/gnucash/guile-modules/srfi/srfi-8.scm
|
||||
share/gnucash/guile-modules/srfi/srfi-9.scm
|
||||
share/gnucash/guile-modules/www/
|
||||
share/gnucash/guile-modules/www/cgi.scm
|
||||
share/gnucash/guile-modules/www/http.scm
|
||||
|
Loading…
Reference in New Issue
Block a user