aboutsummaryrefslogtreecommitdiff
path: root/mail/gmime24/files
diff options
context:
space:
mode:
authorFlorent Thoumie <flz@FreeBSD.org>2009-02-09 09:00:01 +0000
committerFlorent Thoumie <flz@FreeBSD.org>2009-02-09 09:00:01 +0000
commitc1f23cd26d8ec0c157abfb1fe1f52b3aaddee6e8 (patch)
tree6bc6e9b8c27f338bda10b7f147eca039dcc7fb74 /mail/gmime24/files
parentfe3abfcfc73764b4d8ad08d6d32c488a049a1b26 (diff)
downloadports-c1f23cd26d8ec0c157abfb1fe1f52b3aaddee6e8.tar.gz
ports-c1f23cd26d8ec0c157abfb1fe1f52b3aaddee6e8.zip
- Update lang/mono to 2.0.1.
- Also update a bunch of c-sharp ports to their latest version. - Change maintainership to mono@FreeBSD.org. PR: ports/129724 Submitted by: Phillip Neumann, Romain Tartiere (bsd-sharp team)
Notes
Notes: svn path=/head/; revision=227866
Diffstat (limited to 'mail/gmime24/files')
-rw-r--r--mail/gmime24/files/patch-Makefile.in14
-rw-r--r--mail/gmime24/files/patch-docs_Makefile.in14
-rw-r--r--mail/gmime24/files/patch-gmime-2.4.pc.in10
-rw-r--r--mail/gmime24/files/patch-mono_Makefile.in21
-rw-r--r--mail/gmime24/files/patch-src_Makefile.in33
-rw-r--r--mail/gmime24/files/patch-tests__test-mbox.c10
-rw-r--r--mail/gmime24/files/patch-tests__test-mime.c10
-rw-r--r--mail/gmime24/files/patch-tests__test-parser.c10
8 files changed, 122 insertions, 0 deletions
diff --git a/mail/gmime24/files/patch-Makefile.in b/mail/gmime24/files/patch-Makefile.in
new file mode 100644
index 000000000000..4d516817313e
--- /dev/null
+++ b/mail/gmime24/files/patch-Makefile.in
@@ -0,0 +1,14 @@
+
+$FreeBSD$
+
+--- Makefile.in.orig
++++ Makefile.in
+@@ -231,7 +231,7 @@
+ target_alias = @target_alias@
+ top_builddir = @top_builddir@
+ top_srcdir = @top_srcdir@
+-SUBDIRS = util gmime src $(am__append_1) tests docs $(am__append_2) \
++SUBDIRS = util gmime $(am__append_1) tests docs $(am__append_2) \
+ tools .
+ DISTCLEANFILES = iconv-detect.h
+ EXTRA_DIST = \
diff --git a/mail/gmime24/files/patch-docs_Makefile.in b/mail/gmime24/files/patch-docs_Makefile.in
new file mode 100644
index 000000000000..d0cc6906ca1a
--- /dev/null
+++ b/mail/gmime24/files/patch-docs_Makefile.in
@@ -0,0 +1,14 @@
+
+$FreeBSD$
+
+--- docs/Makefile.in.orig
++++ docs/Makefile.in
+@@ -201,7 +201,7 @@
+ target_alias = @target_alias@
+ top_builddir = @top_builddir@
+ top_srcdir = @top_srcdir@
+-SUBDIRS = reference tutorial
++SUBDIRS =
+ EXTRA_DIST = gtkdocs_fix
+ all: all-recursive
+
diff --git a/mail/gmime24/files/patch-gmime-2.4.pc.in b/mail/gmime24/files/patch-gmime-2.4.pc.in
new file mode 100644
index 000000000000..1192ad41e49c
--- /dev/null
+++ b/mail/gmime24/files/patch-gmime-2.4.pc.in
@@ -0,0 +1,10 @@
+--- gmime-2.4.pc.in.orig Tue May 3 19:34:20 2005
++++ gmime-2.4.pc.in Wed Feb 1 00:51:53 2006
+@@ -7,6 +7,6 @@
+ Name: GMime
+ Version: @VERSION@
+ Description: MIME parser and utility library
+-Requires: glib-2.0,gobject-2.0
++Requires: glib-2.0,gobject-2.0,gthread-2.0
+ Libs: -L${libdir} @GMIME_LIBS@ @LIBS@
+ Cflags: -I${includedir}/gmime-2.0 @GMIME_CFLAGS@
diff --git a/mail/gmime24/files/patch-mono_Makefile.in b/mail/gmime24/files/patch-mono_Makefile.in
new file mode 100644
index 000000000000..299831f92557
--- /dev/null
+++ b/mail/gmime24/files/patch-mono_Makefile.in
@@ -0,0 +1,21 @@
+
+$FreeBSD$
+
+--- mono/Makefile.in.orig
++++ mono/Makefile.in
+@@ -471,11 +471,11 @@
+ install-data-local:
+ @if test -n '$(TARGET)'; then \
+ if test -n '$(DESTDIR)'; then \
+- echo "$(GACUTIL) /i $(ASSEMBLY) /f /package $(PACKAGE_SHARP) /root $(DESTDIR)$(prefix)/lib"; \
+- $(GACUTIL) /i $(ASSEMBLY) /f /package $(PACKAGE_SHARP) /root $(DESTDIR)$(prefix)/lib || exit 1; \
++ echo "$(GACUTIL) /i $(ASSEMBLY) /f /package $(PACKAGE_SHARP) /gacdir $(DESTDIR)$(libdir) /root $(DESTDIR)$(libdir)"; \
++ $(GACUTIL) /i $(ASSEMBLY) /f /package $(PACKAGE_SHARP) /gacdir $(DESTDIR)$(libdir) /root $(DESTDIR)$(libdir) || exit 1; \
+ else \
+- echo "$(GACUTIL) /i $(ASSEMBLY) /f /package $(PACKAGE_SHARP) /gacdir $(prefix)/lib"; \
+- $(GACUTIL) /i $(ASSEMBLY) /f /package $(PACKAGE_SHARP) /gacdir $(prefix)/lib || exit 1; \
++ echo "$(GACUTIL) /i $(ASSEMBLY) /f /package $(PACKAGE_SHARP) /gacdir $(DESTDIR)$(libdir) /root $(DESTDIR)$(libdir)"; \
++ $(GACUTIL) /i $(ASSEMBLY) /f /package $(PACKAGE_SHARP) /gacdir $(DESTDIR)$(libdir) /root $(DESTDIR)$(libdir) || exit 1; \
+ fi; \
+ fi
+
diff --git a/mail/gmime24/files/patch-src_Makefile.in b/mail/gmime24/files/patch-src_Makefile.in
new file mode 100644
index 000000000000..e5c0b5b59f3a
--- /dev/null
+++ b/mail/gmime24/files/patch-src_Makefile.in
@@ -0,0 +1,33 @@
+#
+# http://www.freebsd.org/cgi/query-pr.cgi?pr=118092
+#
+# Rename uudecode and uuencode to gmime-* to not conflict with userland
+#
+--- src/Makefile.in.orig 2008-07-19 20:57:47.000000000 -0300
++++ src/Makefile.in 2008-07-20 21:29:18.000000000 -0300
+@@ -24,6 +24,7 @@
+ install_sh_SCRIPT = $(install_sh) -c
+ INSTALL_HEADER = $(INSTALL_DATA)
+ transform = $(program_transform_name)
++add_gmime = s/^/gmime-/
+ NORMAL_INSTALL = :
+ PRE_INSTALL = :
+ POST_INSTALL = :
+@@ -293,7 +294,7 @@
+ if test -f $$p \
+ || test -f $$p1 \
+ ; then \
+- f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
++ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/;$(add_gmime)'`; \
+ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \
+ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \
+ else :; fi; \
+@@ -302,7 +303,7 @@
+ uninstall-binPROGRAMS:
+ @$(NORMAL_UNINSTALL)
+ @list='$(bin_PROGRAMS)'; for p in $$list; do \
+- f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
++ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/;$(add_gmime)'`; \
+ echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \
+ rm -f "$(DESTDIR)$(bindir)/$$f"; \
+ done
diff --git a/mail/gmime24/files/patch-tests__test-mbox.c b/mail/gmime24/files/patch-tests__test-mbox.c
new file mode 100644
index 000000000000..bba86048372d
--- /dev/null
+++ b/mail/gmime24/files/patch-tests__test-mbox.c
@@ -0,0 +1,10 @@
+--- tests/test-mbox.c.orig Mon Feb 12 15:48:22 2007
++++ tests/test-mbox.c Mon Feb 12 15:48:54 2007
+@@ -26,6 +26,7 @@
+ #include <fcntl.h>
+ #include <time.h>
+
++#include <config.h>
+ #include <gmime/gmime.h>
+
+ #ifndef G_OS_WIN32
diff --git a/mail/gmime24/files/patch-tests__test-mime.c b/mail/gmime24/files/patch-tests__test-mime.c
new file mode 100644
index 000000000000..35067da0afa6
--- /dev/null
+++ b/mail/gmime24/files/patch-tests__test-mime.c
@@ -0,0 +1,10 @@
+--- tests/test-mime.c.orig Mon Feb 12 15:48:32 2007
++++ tests/test-mime.c Mon Feb 12 15:49:04 2007
+@@ -21,6 +21,7 @@
+ #include <stdio.h>
+ #include <string.h>
+
++#include <config.h>
+ #include <gmime/gmime.h>
+
+ #ifndef G_OS_WIN32
diff --git a/mail/gmime24/files/patch-tests__test-parser.c b/mail/gmime24/files/patch-tests__test-parser.c
new file mode 100644
index 000000000000..a408ff684cfe
--- /dev/null
+++ b/mail/gmime24/files/patch-tests__test-parser.c
@@ -0,0 +1,10 @@
+--- tests/test-parser.c.orig Mon Feb 12 15:48:38 2007
++++ tests/test-parser.c Mon Feb 12 15:49:14 2007
+@@ -26,6 +26,7 @@
+ #include <fcntl.h>
+ #include <time.h>
+
++#include <config.h>
+ #include <gmime/gmime.h>
+
+ #ifndef G_OS_WIN32