summaryrefslogtreecommitdiffstats
path: root/src/vmime.mk
diff options
context:
space:
mode:
authorVolker Grabsch <vog@notjusthosting.com>2009-10-09 14:01:46 (GMT)
committerVolker Grabsch <vog@notjusthosting.com>2009-10-09 14:01:46 (GMT)
commitb2fb222ec11807992efccb70e242abba0433c8dd (patch)
treeb5e8f631e96db33db7fd89737b8f421bf35e1f8b /src/vmime.mk
parent1bafae2e8f5a869597147221e7cfc649358282d1 (diff)
downloadmxe-b2fb222ec11807992efccb70e242abba0433c8dd.zip
mxe-b2fb222ec11807992efccb70e242abba0433c8dd.tar.gz
mxe-b2fb222ec11807992efccb70e242abba0433c8dd.tar.bz2
new package: vmime (by Mark Brand)
Diffstat (limited to 'src/vmime.mk')
-rw-r--r--src/vmime.mk59
1 files changed, 59 insertions, 0 deletions
diff --git a/src/vmime.mk b/src/vmime.mk
new file mode 100644
index 0000000..bfdb44a
--- /dev/null
+++ b/src/vmime.mk
@@ -0,0 +1,59 @@
+# Copyright (C) 2009 Mark Brand
+# Volker Grabsch
+#
+# Permission is hereby granted, free of charge, to any person obtaining
+# a copy of this software and associated documentation files (the
+# "Software"), to deal in the Software without restriction, including
+# without limitation the rights to use, copy, modify, merge, publish,
+# distribute, sublicense, and/or sell copies of the Software, and to
+# permit persons to whom the Software is furnished to do so, subject
+# to the following conditions:
+#
+# The above copyright notice and this permission notice shall be
+# included in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+# VMime
+PKG := vmime
+$(PKG)_IGNORE :=
+$(PKG)_VERSION := 0.9.0
+$(PKG)_CHECKSUM := 02215e1d8ea758f486c32e7bff63a04f71a9b736
+$(PKG)_SUBDIR := libvmime-$($(PKG)_VERSION)
+$(PKG)_FILE := libvmime-$($(PKG)_VERSION).tar.bz2
+$(PKG)_WEBSITE := http://vmime.sourceforge.net/
+$(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/vmime/vmime/0.9/$($(PKG)_FILE)
+$(PKG)_DEPS := gcc libiconv gnutls libgsasl
+
+define $(PKG)_UPDATE
+ $(call SOURCEFORGE_FILES,http://sourceforge.net/projects/vmime/files/vmime/) | \
+ $(SED) -n 's,.*vmime-\([0-9][^>]*\)\.tar\.bz2.*,\1,p' | \
+ tail -1
+endef
+
+define $(PKG)_BUILD
+ cd '$(1)' && ./configure \
+ --prefix='$(PREFIX)/$(TARGET)' \
+ --host='$(TARGET)' \
+ --disable-shared \
+ --enable-platform-windows \
+ --disable-rpath \
+ --disable-dependency-tracking
+
+ # Add the missing "a" suffix for the library.
+ # Otherwise, we get a "libvmime.la" that refers to "libvimime."
+ $(SED) 's/^libext=$$/libext=a/;' -i '$(1)/libtool'
+
+ # Disable VMIME_HAVE_MLANG_H
+ # We have the header, but there is no implementation for IMultiLanguage in MinGW
+ $(SED) 's,^#define VMIME_HAVE_MLANG_H 1$$,,' -i '$(1)/vmime/config.hpp'
+
+ $(MAKE) -C '$(1)' -j '$(JOBS)'
+ $(MAKE) -C '$(1)' install
+endef