2012-10-05 06:32:14 -05:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
|
|
|
#
|
|
|
|
# This file is part of the LibreOffice project.
|
|
|
|
#
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_ExternalProject_ExternalProject,libcdr))
|
|
|
|
|
|
|
|
$(eval $(call gb_ExternalProject_use_unpacked,libcdr,cdr))
|
|
|
|
|
|
|
|
$(eval $(call gb_ExternalProject_register_targets,libcdr,\
|
|
|
|
build \
|
|
|
|
))
|
|
|
|
|
2012-10-05 15:56:07 -05:00
|
|
|
$(eval $(call gb_ExternalProject_use_externals,libcdr,\
|
2012-10-05 14:17:25 -05:00
|
|
|
wpd \
|
|
|
|
wpg \
|
2012-10-05 10:48:45 -05:00
|
|
|
))
|
2012-10-05 06:32:14 -05:00
|
|
|
|
|
|
|
ifeq ($(OS)$(COM),WNTMSC)
|
|
|
|
|
2012-10-05 18:03:06 -05:00
|
|
|
ifeq ($(VCVER),90)
|
2012-10-05 06:32:14 -05:00
|
|
|
$(call gb_ExternalProject_get_state_target,libcdr,build) :
|
|
|
|
cd $(EXTERNAL_WORKDIR)/build/win32 \
|
|
|
|
&& export LIBWPD_INCLUDE_DIR=$(OUTDIR)/inc/external \
|
|
|
|
&& export LIBWPG_INCLUDE_DIR=$(OUTDIR)/inc/external \
|
|
|
|
&& export LCMS2_INCLUDE_DIR=$(OUTDIR)/inc/lcms2 \
|
|
|
|
&& export ZLIB_INCLUDE_DIR=$(OUTDIR)/inc/external/zlib \
|
|
|
|
&& $(COMPATH)/vcpackages/vcbuild.exe libcdr.vcproj "Release|Win32" \
|
|
|
|
&& touch $@
|
2012-10-05 18:03:06 -05:00
|
|
|
else ifeq ($(VCVER),100)
|
|
|
|
$(call gb_ExternalProject_get_state_target,libcdr,build) :
|
|
|
|
cd $(EXTERNAL_WORKDIR)/build/win32 \
|
|
|
|
&& export LIBWPD_INCLUDE_DIR=$(OUTDIR)/inc/external \
|
|
|
|
&& export LIBWPG_INCLUDE_DIR=$(OUTDIR)/inc/external \
|
|
|
|
&& export LCMS2_INCLUDE_DIR=$(OUTDIR)/inc/lcms2 \
|
|
|
|
&& export ZLIB_INCLUDE_DIR=$(OUTDIR)/inc/external/zlib \
|
|
|
|
&& msbuild.exe libcdr.vcxproj /p:Configuration=Release \
|
|
|
|
&& touch $@
|
|
|
|
else
|
|
|
|
$(call gb_ExternalProject_get_state_target,libcdr,build) :
|
|
|
|
cd $(EXTERNAL_WORKDIR)/build/win32 \
|
|
|
|
&& export LIBWPD_INCLUDE_DIR=$(OUTDIR)/inc/external \
|
|
|
|
&& export LIBWPG_INCLUDE_DIR=$(OUTDIR)/inc/external \
|
|
|
|
&& export LCMS2_INCLUDE_DIR=$(OUTDIR)/inc/lcms2 \
|
|
|
|
&& export ZLIB_INCLUDE_DIR=$(OUTDIR)/inc/external/zlib \
|
|
|
|
&& msbuild.exe libcdr.vcxproj /p:PlatformToolset=v110 /p:Configuration=Release \
|
|
|
|
&& touch $@
|
|
|
|
endif
|
2012-10-05 06:32:14 -05:00
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
$(call gb_ExternalProject_get_state_target,libcdr,build) :
|
|
|
|
cd $(EXTERNAL_WORKDIR) \
|
|
|
|
&& PKG_CONFIG="" \
|
2012-10-05 16:42:44 -05:00
|
|
|
WPD_CFLAGS=" $(WPD_CFLAGS)" \
|
|
|
|
WPD_LIBS=" $(WPD_LIBS)" \
|
|
|
|
WPG_CFLAGS=" $(WPG_CFLAGS)" \
|
|
|
|
WPG_LIBS=" $(WPG_LIBS)" \
|
|
|
|
LCMS2_CFLAGS=" $(LCMS2_CFLAGS)" \
|
|
|
|
LCMS2_LIBS=" $(LCMS2_LIBS)" \
|
|
|
|
ZLIB_CFLAGS=" $(ZLIB_CFLAGS)" \
|
|
|
|
ZLIB_LIBS=" $(ZLIB_LIBS)" \
|
2012-10-05 06:32:14 -05:00
|
|
|
./configure \
|
|
|
|
--with-pic \
|
|
|
|
--enable-static \
|
|
|
|
--disable-shared \
|
|
|
|
--without-docs \
|
|
|
|
--disable-debug \
|
|
|
|
--disable-werror \
|
|
|
|
$(if $(filter YES,$(CROSS_COMPILING)),--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)) \
|
2012-10-27 12:05:33 -05:00
|
|
|
&& (cd $(EXTERNAL_WORKDIR)/src/lib && $(MAKE)) \
|
2012-10-05 06:32:14 -05:00
|
|
|
&& touch $@
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|