Radix cross Linux

The main Radix cross Linux repository contains the build scripts of packages, which have the most complete and common functionality for desktop machines

452 Commits   2 Branches   1 Tag

COMPONENT_TARGETS  = $(HARDWARE_S824L)
COMPONENT_TARGETS += $(HARDWARE_VESNIN)
COMPONENT_TARGETS += $(HARDWARE_TL2WK2)
COMPONENT_TARGETS += $(HARDWARE_TL2SV2)

NEED_ABS_PATH      = true
COMPONENT_IS_3PP   = true

CREATE_PPC32_PACKAGE = true


include ../../../../build-system/constants.mk


SOURCE_REQUIRES    = sources/packages/l/cairo

REQUIRES           = env/X11/cairo/1.17.8
REQUIRES          += app/fontconfig/2.13.95-ppc32
REQUIRES          += libs/lzo/2.10-ppc32
REQUIRES          += libs/glib2/2.76.0-ppc32
REQUIRES          += libs/libpng/libpng16/1.6.37-ppc32
REQUIRES          += X11/X.org/lib/pixman/0.42.2-ppc32
REQUIRES          += X11/X.org/lib/libXext/1.3.5-ppc32
REQUIRES          += X11/X.org/lib/libXrender/0.9.11-ppc32

# ======= __END_OF_REQUIRES__ =======


version            = 1.17.8
tar_xz_archive     = $(SRC_PACKAGE_PATH)/packages/l/cairo/cairo-$(version).tar.xz
SRC_ARCHIVE        = $(tar_xz_archive)
SRC_DIR            = $(TARGET_BUILD_DIR)/cairo-$(version)
src_dir_name       = cairo-$(version)
src_done           = $(TARGET_BUILD_DIR)/.source_done

PATCHES = PATCHES

build_dir          = $(TARGET_BUILD_DIR)/build
build_target       = $(TARGET_BUILD_DIR)/.build_done
install_target     = $(TARGET_BUILD_DIR)/.install_done

cross_file         = $(TARGET_BUILD_DIR)/$(TARGET32)-cross


####### Targets


CAIRO_32_PKG     = $(CURDIR)/$(TARGET_BUILD_DIR)/cairo-x32-package

BUILD_TARGETS    = $(build_target)
BUILD_TARGETS   += $(install_target)


include ../../../../build-system/core.mk


env_sysroot  = DESTDIR=$(CAIRO_32_PKG)


ENABLE_GTK_DOCUMENTATION = no


cpu_name = ppc
endian   = big


ifeq ($(__ENABLE_STATIC__),yes)
extra_configure_switches += --default-library=both
else
extra_configure_switches += --default-library=shared
endif


extra_configure_switches += -Ddwrite=disabled
extra_configure_switches += -Dquartz=disabled
extra_configure_switches += -Dspectre=disabled
extra_configure_switches += -Dsymbol-lookup=disabled

extra_configure_switches += -Dxlib-xcb=enabled
extra_configure_switches += -Dglib=enabled
extra_configure_switches += -Dpng=enabled
extra_configure_switches += -Dxml=enabled
extra_configure_switches += -Dtee=disabled
extra_configure_switches += -Dfontconfig=enabled
extra_configure_switches += -Dfreetype=enabled

ifeq ($(ENABLE_GTK_DOCUMENTATION),yes)
extra_configure_switches += -Dgtk_doc=true
else
extra_configure_switches += -Dgtk_doc=false
endif


CFLAGS += -Wno-maybe-uninitialized -Wno-inline -Wno-switch-enum -Wno-sign-compare -Wno-unused-variable

CFLAGS  += -I$(TARGET_DEST_DIR)/usr/lib$(MULTILIB_PPC32_SUFFIX)/glib-2.0/include

TARGET_BIN_RPATH = /lib$(MULTILIB_PPC32_SUFFIX):/usr/lib$(MULTILIB_PPC32_SUFFIX)
TARGET_LIB_RPATH = /lib$(MULTILIB_PPC32_SUFFIX):/usr/lib$(MULTILIB_PPC32_SUFFIX):/usr/lib/../lib$(MULTILIB_PPC32_SUFFIX)

LDFLAGS += -Wl,-rpath,$(TARGET_BIN_RPATH)


####### Dependencies

$(src_done): $(SRC_ARCHIVE) $(PATCHES_DEP)
	$(UNPACK_SRC_ARCHIVE)
	$(APPLY_PATCHES)
	@touch $@

$(build_target): $(src_done)
	@mkdir -p $(build_dir)
	@echo ""                                            >  $(cross_file)
	@echo "[build_machine]"                             >> $(cross_file)
	@echo "system = '$(shell uname -s | tr 'L' 'l')'"   >> $(cross_file)
	@echo "cpu_family = '$(shell uname -m)'"            >> $(cross_file)
	@echo "cpu = '$(shell uname -m)'"                   >> $(cross_file)
	@echo "endian = '$(shell lscpu | grep Endian | tr -s ' ' | cut -f3 -d' ' | tr 'L' 'l')'" >> $(cross_file)
	@echo ""                                            >> $(cross_file)
	@echo "[host_machine]"                              >> $(cross_file)
	@echo "system = 'linux'"                            >> $(cross_file)
	@echo "cpu_family = '$(cpu_name)'"                  >> $(cross_file)
	@echo "cpu = '$(cpu_name)'"                         >> $(cross_file)
	@echo "endian = '$(endian)'"                        >> $(cross_file)
	@echo ""                                            >> $(cross_file)
	@echo "[target_machine]"                            >> $(cross_file)
	@echo "system = 'linux'"                            >> $(cross_file)
	@echo "cpu_family = '$(cpu_name)'"                  >> $(cross_file)
	@echo "cpu = '$(cpu_name)'"                         >> $(cross_file)
	@echo "endian = '$(endian)'"                        >> $(cross_file)
	@echo ""                                            >> $(cross_file)
	@echo "[properties]"                                >> $(cross_file)
	@echo "ipc_rmid_deferred_release = true"            >> $(cross_file)
	@echo ""                                            >> $(cross_file)
	@echo "[binaries]"                                  >> $(cross_file)
	@echo "c = '$(TOOLCHAIN_PATH)/bin/$(TARGET)-gcc'"   >> $(cross_file)
	@echo "cpp = '$(TOOLCHAIN_PATH)/bin/$(TARGET)-g++'" >> $(cross_file)
	@echo "ar = '$(AR)'"                                >> $(cross_file)
	@echo "strip = '$(STRIP)'"                          >> $(cross_file)
	@echo "pkgconfig = 'pkg-config'"                    >> $(cross_file)
	@echo ""                                            >> $(cross_file)
	@meson setup \
	    --prefix=/usr \
	    --libdir=lib$(MULTILIB_PPC32_SUFFIX) \
	    --libexecdir=/usr/libexec \
	    --bindir=/usr/bin/32 \
	    --sbindir=/usr/sbin \
	    --includedir=/usr/include \
	    --datadir=/usr/share \
	    --mandir=/usr/share/man \
	    --sysconfdir=/etc \
	    --localstatedir=/var \
	    --buildtype=release    \
	    -Dc_args="`echo -n "--sysroot=$(TARGET_DEST_DIR) $(CFLAGS)" | tr -s ' '`"              \
	    -Dc_link_args="`echo -n "--sysroot=$(TARGET_DEST_DIR) -m32 $(LDFLAGS)" | tr -s ' '`"   \
	    -Dcpp_args="`echo -n "--sysroot=$(TARGET_DEST_DIR) $(CFLAGS)" | tr -s ' '`"            \
	    -Dcpp_link_args="`echo -n "--sysroot=$(TARGET_DEST_DIR) -m32 $(LDFLAGS)" | tr -s ' '`" \
	    -Dtests=disabled            \
	    $(extra_configure_switches) \
	    --cross-file=$(cross_file) $(SRC_DIR) $(build_dir)
	@cd $(build_dir) && $(BUILD_ENVIRONMENT) ninja -v
	@touch $@

$(install_target): $(build_target)
	@mkdir -p $(CAIRO_32_PKG)
	@cd $(build_dir) && $(env_sysroot) ninja install
	@rm -rf $(CAIRO_32_PKG)/usr/include
	@rm -rf $(CAIRO_32_PKG)/usr/share
	# ======= Install the same to $(TARGET_DEST_DIR) =======
	$(call install-into-devenv, $(CAIRO_32_PKG))
	# ======= tune pkg-config *.pc search path to the target destination for development =======
	@( cd $(TARGET_DEST_DIR)/usr/lib$(MULTILIB_PPC32_SUFFIX)/pkgconfig ; \
	   sed -i "s,/usr,$(TARGET_DEST_DIR)/usr,g" cairo.pc cairo-fc.pc cairo-ft.pc cairo-gobject.pc  \
	                                            cairo-pdf.pc cairo-png.pc cairo-ps.pc              \
	                                            cairo-script-interpreter.pc cairo-script.pc        \
	                                            cairo-svg.pc cairo-xcb-shm.pc cairo-xcb.pc         \
	                                            cairo-xlib-xcb.pc cairo-xlib-xrender.pc            \
	                                            cairo-xlib.pc cairo-xml.pc                       ; \
	 )
	# ======= Strip binaries =======
	@( cd $(CAIRO_32_PKG) ; \
	   find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs $(STRIP) --strip-unneeded 2> /dev/null ; \
	   find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs $(STRIP) --strip-unneeded 2> /dev/null ; \
	 )
ifeq ($(__ENABLE_STATIC__),yes)
	@( cd $(CAIRO_32_PKG) ; \
	   find . | xargs file | grep "current ar archive" | cut -f 1 -d : | xargs $(STRIP) -g 2> /dev/null ; \
	 )
endif
	@touch $@