summaryrefslogtreecommitdiff
path: root/extra/stardict
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-07-20 14:44:01 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-07-20 14:44:01 +0000
commit3da6b13f1eb136d0899bd2e8dd217048bb4d9030 (patch)
tree78f3c7f0776ff0be3c22bb7744a82c47d9f62cfc /extra/stardict
parent94e3eb45cd3402cbc5efd70ae725e8d48ed696af (diff)
Wed Jul 20 14:43:57 UTC 2011
Diffstat (limited to 'extra/stardict')
-rw-r--r--extra/stardict/as-needed.patch29
-rw-r--r--extra/stardict/help-in-destdir.patch21
2 files changed, 0 insertions, 50 deletions
diff --git a/extra/stardict/as-needed.patch b/extra/stardict/as-needed.patch
deleted file mode 100644
index 1e924be9f..000000000
--- a/extra/stardict/as-needed.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-Index: stardict/src/Makefile.am
-===================================================================
---- stardict/src/Makefile.am (revision 489)
-+++ stardict/src/Makefile.am (working copy)
-@@ -26,9 +26,9 @@
- -DSTARDICT_LIB_DIR=\""$(libdir)/stardict"\"
-
-
--stardict_DEPENDENCIES = $(LOCAL_SIGCPP_LIBFILE) lib/libstardict.a
-+stardict_DEPENDENCIES = lib/libstardict.a $(LOCAL_SIGCPP_LIBFILE)
- stardict_LDFLAGS =
--stardict_LDADD = $(STARDICT_LIBS) $(LOCAL_SIGCPP_LIBFILE) lib/libstardict.a
-+stardict_LDADD = lib/libstardict.a $(STARDICT_LIBS) $(LOCAL_SIGCPP_LIBFILE)
-
- if !GNOME_SUPPORT
- if MAEMO_SUPPORT
-Index: stardict/tests/Makefile.am
-===================================================================
---- stardict/tests/Makefile.am (revision 489)
-+++ stardict/tests/Makefile.am (working copy)
-@@ -49,7 +49,7 @@
- t_res_database_SOURCES = t_res_database.cpp
- t_res_database_DEPENDENCIES = $(top_builddir)/src/lib/libstardict.a
-
--LDADD = @STARDICT_LIBS@ $(top_builddir)/src/lib/libstardict.a \
-+LDADD = $(top_builddir)/src/lib/libstardict.a $(STARDICT_LIBS) \
- $(LOCAL_SIGCPP_LIBFILE)
- ## -I$(top_builddir) is for config.h, it's generated by configure in the build dir
- AM_CPPFLAGS = @STARDICT_CFLAGS@ $(LOCAL_SIGCPP_INCLUDE) -I$(top_builddir) \
diff --git a/extra/stardict/help-in-destdir.patch b/extra/stardict/help-in-destdir.patch
deleted file mode 100644
index ba301b332..000000000
--- a/extra/stardict/help-in-destdir.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff -aur old/help/Makefile.am new/help/Makefile.am
---- old/help/Makefile.am 2011-01-03 17:14:20.000000000 +0100
-+++ new/help/Makefile.am 2011-01-13 21:42:06.046672489 +0100
-@@ -104,7 +104,7 @@
- else
- stardict-install-html:
- for lc in $(STARDICT_ALL_LINGUAS); do \
-- install_dir=$(STARDICT_HTML_INSTALL_DIR)/$${lc}; \
-+ install_dir=$(DESTDIR)$(STARDICT_HTML_INSTALL_DIR)/$${lc}; \
- htmldir=$(srcdir)/$${lc}/html; \
- for file in `find $${htmldir} -type f -print`; do \
- relfile=$${file#$${htmldir}/}; \
-@@ -126,7 +126,7 @@
- else
- stardict-uninstall-html:
- for lc in $(STARDICT_ALL_LINGUAS); do \
-- install_dir=$(STARDICT_HTML_INSTALL_DIR)/$${lc}; \
-+ install_dir=$(DESTDIR)$(STARDICT_HTML_INSTALL_DIR)/$${lc}; \
- rm -rf $${install_dir}; \
- done;
- endif