Makefile revision 7228
4e10d188042815c5285edf00ea96896b862e0863aurium#
4e10d188042815c5285edf00ea96896b862e0863aurium# CDDL HEADER START
2ebfcf72203f94f579931a9cfe6658a65ca5027daurium#
4e10d188042815c5285edf00ea96896b862e0863aurium# The contents of this file are subject to the terms of the
4e10d188042815c5285edf00ea96896b862e0863aurium# Common Development and Distribution License (the "License").
4e10d188042815c5285edf00ea96896b862e0863aurium# You may not use this file except in compliance with the License.
4e10d188042815c5285edf00ea96896b862e0863aurium#
4e10d188042815c5285edf00ea96896b862e0863aurium# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
83aaf46c9feab529aeb9add871c05c3d1177afccaurium# or http://www.opensolaris.org/os/licensing.
4e10d188042815c5285edf00ea96896b862e0863aurium# See the License for the specific language governing permissions
4e10d188042815c5285edf00ea96896b862e0863aurium# and limitations under the License.
4e10d188042815c5285edf00ea96896b862e0863aurium#
4e10d188042815c5285edf00ea96896b862e0863aurium# When distributing Covered Code, include this CDDL HEADER in each
4e10d188042815c5285edf00ea96896b862e0863aurium# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
4e10d188042815c5285edf00ea96896b862e0863aurium# If applicable, add the following below this CDDL HEADER, with the
4e10d188042815c5285edf00ea96896b862e0863aurium# fields enclosed by brackets "[]" replaced with your own identifying
4e10d188042815c5285edf00ea96896b862e0863aurium# information: Portions Copyright [yyyy] [name of copyright owner]
4e10d188042815c5285edf00ea96896b862e0863aurium#
4e10d188042815c5285edf00ea96896b862e0863aurium# CDDL HEADER END
4e10d188042815c5285edf00ea96896b862e0863aurium#
4e10d188042815c5285edf00ea96896b862e0863aurium
4e10d188042815c5285edf00ea96896b862e0863aurium#
4e10d188042815c5285edf00ea96896b862e0863aurium# Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
4e10d188042815c5285edf00ea96896b862e0863aurium#
4e10d188042815c5285edf00ea96896b862e0863aurium
4e10d188042815c5285edf00ea96896b862e0863auriumBUILD_BITS= 64
4e10d188042815c5285edf00ea96896b862e0863auriumCOMPILER= gcc
83aaf46c9feab529aeb9add871c05c3d1177afccauriuminclude ../../../make-rules/shared-macros.mk
83aaf46c9feab529aeb9add871c05c3d1177afccaurium
83aaf46c9feab529aeb9add871c05c3d1177afccauriumCOMPONENT_NAME= gnome-terminal
4e10d188042815c5285edf00ea96896b862e0863auriumCOMPONENT_VERSION= 3.18.2
4e10d188042815c5285edf00ea96896b862e0863auriumCOMPONENT_PROJECT_URL= https://wiki.gnome.org/Apps/Terminal
83aaf46c9feab529aeb9add871c05c3d1177afccauriumCOMPONENT_ARCHIVE_HASH= \
83aaf46c9feab529aeb9add871c05c3d1177afccaurium sha256:5e35c0fa1395258bab83952cfabe4c1828b8655bcd761f8faed70b452bd89efa
83aaf46c9feab529aeb9add871c05c3d1177afccauriumCOMPONENT_BUGDB= gnome/terminal
4e10d188042815c5285edf00ea96896b862e0863aurium
83aaf46c9feab529aeb9add871c05c3d1177afccauriumTPNO= 25405
4e10d188042815c5285edf00ea96896b862e0863aurium
4e10d188042815c5285edf00ea96896b862e0863aurium# Needs newer intltool, not available in 11.3
83aaf46c9feab529aeb9add871c05c3d1177afccauriuminclude $(WS_MAKE_RULES)/no-evaluation.mk
83aaf46c9feab529aeb9add871c05c3d1177afccaurium
83aaf46c9feab529aeb9add871c05c3d1177afccauriuminclude $(WS_MAKE_RULES)/gnome-component.mk
83aaf46c9feab529aeb9add871c05c3d1177afccaurium
83aaf46c9feab529aeb9add871c05c3d1177afccaurium# Need to regenerate configure after stack-protector.patch edits configure.ac
83aaf46c9feab529aeb9add871c05c3d1177afccauriumCOMPONENT_PREP_ACTION += (cd $(@D); autoreconf -fiv);
905e42f96548e175ead68243a632f06b19285e1faurium
4e10d188042815c5285edf00ea96896b862e0863auriumCONFIGURE_ENV += PATH=$(GNUBIN):$(PATH)
4e10d188042815c5285edf00ea96896b862e0863auriumCOMPONENT_BUILD_ENV += PATH="$(GNUBIN):$(PATH)"
83aaf46c9feab529aeb9add871c05c3d1177afccaurium
4e10d188042815c5285edf00ea96896b862e0863auriumCONFIGURE_OPTIONS += --libexecdir=$(USRLIBDIR)
4e10d188042815c5285edf00ea96896b862e0863aurium
4e10d188042815c5285edf00ea96896b862e0863aurium# Force use of gnutls-3 pkgconfig during 2.x->3.x transition
83aaf46c9feab529aeb9add871c05c3d1177afccauriumPKG_CONFIG_PATHS.32 += /usr/lib/pkgconfig/gnutls-3
83aaf46c9feab529aeb9add871c05c3d1177afccauriumPKG_CONFIG_PATHS.64 += /usr/lib/$(MACH64)/pkgconfig/gnutls-3
83aaf46c9feab529aeb9add871c05c3d1177afccauriumPKG_CONFIG_PATHS += $(PKG_CONFIG_PATHS.$(BITS))
83aaf46c9feab529aeb9add871c05c3d1177afccauriumLD_OPTIONS.32 += -L /usr/lib/gnutls-3 -R /usr/lib/gnutls-3
83aaf46c9feab529aeb9add871c05c3d1177afccauriumLD_OPTIONS.64 += -L /usr/lib/$(MACH64)/gnutls-3 -R /usr/lib/$(MACH64)/gnutls-3
83aaf46c9feab529aeb9add871c05c3d1177afccauriumLD_OPTIONS += $(LD_OPTIONS.$(BITS))
83aaf46c9feab529aeb9add871c05c3d1177afccaurium
83aaf46c9feab529aeb9add871c05c3d1177afccaurium# uuid detection fails due to Solaris bug 15586738, use local uuid.pc to avoid
83aaf46c9feab529aeb9add871c05c3d1177afccauriumPKG_CONFIG_PATHS += $(COMPONENT_DIR)
83aaf46c9feab529aeb9add871c05c3d1177afccaurium
83aaf46c9feab529aeb9add871c05c3d1177afccauriumCONFIGURE_OPTIONS += --disable-static
CONFIGURE_OPTIONS += --enable-introspection
CONFIGURE_OPTIONS += --enable-shared
CONFIGURE_OPTIONS += --disable-migration
CONFIGURE_OPTIONS += --enable-nautilus-extension
unexport SHELLOPTS
REQUIRED_PACKAGES += gnome/file-manager/nautilus
REQUIRED_PACKAGES += gnome/gnome-shell
REQUIRED_PACKAGES += gnome/gsettings-desktop-schemas
REQUIRED_PACKAGES += library/desktop/atk
REQUIRED_PACKAGES += library/desktop/gobject/gobject-introspection
REQUIRED_PACKAGES += library/desktop/gtk3
REQUIRED_PACKAGES += library/desktop/pango
REQUIRED_PACKAGES += library/glib2
REQUIRED_PACKAGES += library/gnome/dconf
REQUIRED_PACKAGES += library/gnome/vte3
REQUIRED_PACKAGES += system/library/gcc/gcc-c-runtime
REQUIRED_PACKAGES += system/library/math
REQUIRED_PACKAGES += x11/library/libx11