diff src/ghostscript.mk @ 3643:f2503a486cce

ghostscript: new package
author John W. Eaton <jwe@octave.org>
date Thu, 03 Jul 2014 19:10:32 -0400
parents
children 3085b1b955dd
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/ghostscript.mk	Thu Jul 03 19:10:32 2014 -0400
@@ -0,0 +1,55 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG             := ghostscript
+$(PKG)_IGNORE   :=
+$(PKG)_VERSION  := 9.07
+$(PKG)_CHECKSUM := 550a85e73b7213d8ae41ea06523661638b4bc1a2
+$(PKG)_SUBDIR   := $(PKG)-$($(PKG)_VERSION)
+$(PKG)_FILE     := $(PKG)-$($(PKG)_VERSION).tar.bz2
+$(PKG)_URL      := http://downloads.ghostscript.com/public/$($(PKG)_FILE)
+$(PKG)_DEPS     := build-gcc jpeg libpng jpeg tiff zlib
+
+define $(PKG)_UPDATE
+    echo 'Warning: Updates are temporarily disabled for package ghostscript.' >&2;
+    echo $($(PKG)_VERSION)
+endef
+
+## Currently only works for native builds and i686 mingw cross builds.
+
+ifeq ($(MXE_NATIVE_BUILD),yes)
+  define $(PKG)_BUILD
+    cd '$(1)' && '$(1)/configure' \
+        $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) \
+        $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
+        --prefix='$(HOST_PREFIX)' \
+        --with-system-libtiff \
+        && $(CONFIGURE_POST_HOOK)
+
+    $(MAKE) -C '$(1)' -j '$(JOBS)'
+    $(MAKE) -C '$(1)' install
+  endef
+else
+  ifeq ($(MXE_SYSTEM),mingw)
+    ifneq ($(ENABLE_64),yes)
+      ## Ghostscript configure script is not cross-compiler friendly,
+      ## so instead of running it, copying configuration files from a
+      ## native mingw build.  Some configuration is done by compiling
+      ## and running programs during the build, but those programs
+      ## probe the build system and don't know about cross compiling,
+      ## so we generate the files then replace them with files from a
+      ## mingw native build.
+      define $(PKG)_BUILD
+        cp '$(TOP_DIR)/src/ghostscript-mingw-i686-makefile' '$(1)/Makefile'
+        $(MAKE) -C '$(1)' TARGET='$(TARGET)' prefix='$(HOST_PREFIX)' obj/arch.h obj/gconfig_.h
+        cp '$(TOP_DIR)/src/ghostscript-mingw-i686-arch.h' '$(1)/obj/arch.h'
+        cp '$(TOP_DIR)/src/ghostscript-mingw-i686-arch.h' '$(1)/obj/gconfig_.h'
+        $(MAKE) -C '$(1)' -j '$(JOBS)' \
+          TARGET='$(TARGET)' prefix='$(HOST_PREFIX)' CC='$(MXE_CC)'
+        $(MAKE) -C '$(1)' \
+          TARGET='$(TARGET)' prefix='$(HOST_PREFIX)' CC='$(MXE_CC)' \
+          install
+      endef
+    endif
+  endif
+endif