components/w3m/Makefile
author Shawn Walker-Salas <shawn.walker@oracle.com>
Wed, 30 Mar 2016 13:33:31 -0700
changeset 5682 94c0ca64c022
parent 4967 c997e4903b71
child 5797 432ac76de3b0
permissions -rw-r--r--
15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh 22228656 remove redundant declarations and additions from makefiles 22252545 simplify build rules for components from common upstream 22378457 tclConfig.sh compiler settings are too specific 22727315 httping curses gui missing 22750630 procmail ignores userland cflags and may use private strstr function 22758725 wdiff uses diff from PATH instead of /usr/gnu/bin/diff 22926847 cloog Makefile typo when setting ASLR_MODE 22935090 tk config script has wrong linker flags
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3680
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     1
#
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     2
# CDDL HEADER START
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     3
#
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     4
# The contents of this file are subject to the terms of the
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     5
# Common Development and Distribution License (the "License").
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     6
# You may not use this file except in compliance with the License.
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     7
#
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     8
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     9
# or http://www.opensolaris.org/os/licensing.
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    10
# See the License for the specific language governing permissions
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    11
# and limitations under the License.
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    12
#
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    13
# When distributing Covered Code, include this CDDL HEADER in each
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    14
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    15
# If applicable, add the following below this CDDL HEADER, with the
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    16
# fields enclosed by brackets "[]" replaced with your own identifying
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    17
# information: Portions Copyright [yyyy] [name of copyright owner]
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    18
#
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    19
# CDDL HEADER END
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    20
#
5682
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4967
diff changeset
    21
3680
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    22
#
5682
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4967
diff changeset
    23
# Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4967
diff changeset
    24
#
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4967
diff changeset
    25
BUILD_BITS= 64
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4967
diff changeset
    26
COMPILER= gcc
3680
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    27
include ../../make-rules/shared-macros.mk
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    28
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    29
COMPONENT_NAME=		w3m
3995
7d35330d300c 20738232 w3m should be updated to version 0.5.3
Rich Burridge <rich.burridge@oracle.com>
parents: 3817
diff changeset
    30
COMPONENT_VERSION=	0.5.3
3680
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    31
COMPONENT_PROJECT_URL=	http://w3m.sourceforge.net/
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    32
COMPONENT_ARCHIVE_HASH=	\
3995
7d35330d300c 20738232 w3m should be updated to version 0.5.3
Rich Burridge <rich.burridge@oracle.com>
parents: 3817
diff changeset
    33
    sha256:e994d263f2fd2c22febfbe45103526e00145a7674a0fda79c822b97c2770a9e3
3680
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    34
COMPONENT_ARCHIVE_URL=	http://sourceforge.net/projects/$(COMPONENT_NAME)/files/$(COMPONENT_NAME)/$(COMPONENT_SRC)/$(COMPONENT_ARCHIVE)/download
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    35
3995
7d35330d300c 20738232 w3m should be updated to version 0.5.3
Rich Burridge <rich.burridge@oracle.com>
parents: 3817
diff changeset
    36
TPNO=			21998
3680
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    37
5682
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4967
diff changeset
    38
SYSTEM_TEST_TARGET= $(SYSTEM_TEST_64)
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4967
diff changeset
    39
include $(WS_MAKE_RULES)/common.mk
3680
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    40
3995
7d35330d300c 20738232 w3m should be updated to version 0.5.3
Rich Burridge <rich.burridge@oracle.com>
parents: 3817
diff changeset
    41
COMPONENT_PREP_ACTION = (cd $(@D) ; autoconf ; automake ; aclocal ; libtoolize )
3680
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    42
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    43
# install the bits in /usr/bin and /usr/lib
5682
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4967
diff changeset
    44
CONFIGURE_LIBDIR.64= $(CONFIGURE_LIBDIR.32)
3680
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    45
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    46
CONFIGURE_OPTIONS +=	--libexecdir=$(CONFIGURE_LIBDIR.32)
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    47
CONFIGURE_OPTIONS +=	--sysconfdir=$(ETCDIR)
5682
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4967
diff changeset
    48
CONFIGURE_OPTIONS +=	--with-browser=$(USRBINDIR)/firefox
3680
4dc408325e7e 20146056 Move w3m from the Desktop consolidation to Userland
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    49
3686
c1ae48efb7af 20414425 lynx should have some master test results to compare against
Rich Burridge <rich.burridge@oracle.com>
parents: 3680
diff changeset
    50
# Use the HTML and CSS styling external test suite as referenced at
c1ae48efb7af 20414425 lynx should have some master test results to compare against
Rich Burridge <rich.burridge@oracle.com>
parents: 3680
diff changeset
    51
# http://www.w3.org/2005/MWI/Tests/
c1ae48efb7af 20414425 lynx should have some master test results to compare against
Rich Burridge <rich.burridge@oracle.com>
parents: 3680
diff changeset
    52
COMPONENT_TEST_CMD = $(@D)/w3m
c1ae48efb7af 20414425 lynx should have some master test results to compare against
Rich Burridge <rich.burridge@oracle.com>
parents: 3680
diff changeset
    53
COMPONENT_TEST_ARGS = -dump \
c1ae48efb7af 20414425 lynx should have some master test results to compare against
Rich Burridge <rich.burridge@oracle.com>
parents: 3680
diff changeset
    54
	http://www.cameronmoll.com/mobile/mkp/pg1.html \
c1ae48efb7af 20414425 lynx should have some master test results to compare against
Rich Burridge <rich.burridge@oracle.com>
parents: 3680
diff changeset
    55
	http://www.cameronmoll.com/mobile/mkp/pg2.html \
c1ae48efb7af 20414425 lynx should have some master test results to compare against
Rich Burridge <rich.burridge@oracle.com>
parents: 3680
diff changeset
    56
	http://www.cameronmoll.com/mobile/mkp/pg3.html \
c1ae48efb7af 20414425 lynx should have some master test results to compare against
Rich Burridge <rich.burridge@oracle.com>
parents: 3680
diff changeset
    57
	http://www.cameronmoll.com/mobile/mkp/pg4.html
c1ae48efb7af 20414425 lynx should have some master test results to compare against
Rich Burridge <rich.burridge@oracle.com>
parents: 3680
diff changeset
    58
COMPONENT_TEST_TARGETS =
c1ae48efb7af 20414425 lynx should have some master test results to compare against
Rich Burridge <rich.burridge@oracle.com>
parents: 3680
diff changeset
    59
4206
a24a2855075c 20974465 Two "gmake system-test" infrastructure fixes plus 3 components with system tests
Rich Burridge <rich.burridge@oracle.com>
parents: 3995
diff changeset
    60
COMPONENT_SYSTEM_TEST_DIR =
5682
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4967
diff changeset
    61
COMPONENT_SYSTEM_TEST_CMD =		$(USRBINDIR)/w3m
4206
a24a2855075c 20974465 Two "gmake system-test" infrastructure fixes plus 3 components with system tests
Rich Burridge <rich.burridge@oracle.com>
parents: 3995
diff changeset
    62
COMPONENT_SYSTEM_TEST_ARGS =		-dump \
a24a2855075c 20974465 Two "gmake system-test" infrastructure fixes plus 3 components with system tests
Rich Burridge <rich.burridge@oracle.com>
parents: 3995
diff changeset
    63
	http://www.cameronmoll.com/mobile/mkp/pg1.html \
a24a2855075c 20974465 Two "gmake system-test" infrastructure fixes plus 3 components with system tests
Rich Burridge <rich.burridge@oracle.com>
parents: 3995
diff changeset
    64
	http://www.cameronmoll.com/mobile/mkp/pg2.html \
a24a2855075c 20974465 Two "gmake system-test" infrastructure fixes plus 3 components with system tests
Rich Burridge <rich.burridge@oracle.com>
parents: 3995
diff changeset
    65
	http://www.cameronmoll.com/mobile/mkp/pg3.html \
a24a2855075c 20974465 Two "gmake system-test" infrastructure fixes plus 3 components with system tests
Rich Burridge <rich.burridge@oracle.com>
parents: 3995
diff changeset
    66
	http://www.cameronmoll.com/mobile/mkp/pg4.html
a24a2855075c 20974465 Two "gmake system-test" infrastructure fixes plus 3 components with system tests
Rich Burridge <rich.burridge@oracle.com>
parents: 3995
diff changeset
    67
COMPONENT_SYSTEM_TEST_TARGETS =
a24a2855075c 20974465 Two "gmake system-test" infrastructure fixes plus 3 components with system tests
Rich Burridge <rich.burridge@oracle.com>
parents: 3995
diff changeset
    68
4967
c997e4903b71 21959942 extra REQUIRED_PACKAGE needed for w3m on S11 for evaluation project
John Beck <John.Beck@Oracle.COM>
parents: 4206
diff changeset
    69
# The desktop packages differ between S11 and S12; list both for normal
c997e4903b71 21959942 extra REQUIRED_PACKAGE needed for w3m on S11 for evaluation project
John Beck <John.Beck@Oracle.COM>
parents: 4206
diff changeset
    70
# and BUILD_TYPE=evaluation builds.
3817
30b42c38bbc4 15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents: 3686
diff changeset
    71
REQUIRED_PACKAGES += library/desktop/gdk-pixbuf
4967
c997e4903b71 21959942 extra REQUIRED_PACKAGE needed for w3m on S11 for evaluation project
John Beck <John.Beck@Oracle.COM>
parents: 4206
diff changeset
    72
REQUIRED_PACKAGES += library/desktop/gtk2
3817
30b42c38bbc4 15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents: 3686
diff changeset
    73
REQUIRED_PACKAGES += library/gc
30b42c38bbc4 15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents: 3686
diff changeset
    74
REQUIRED_PACKAGES += library/glib2
30b42c38bbc4 15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents: 3686
diff changeset
    75
REQUIRED_PACKAGES += library/security/openssl
30b42c38bbc4 15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents: 3686
diff changeset
    76
REQUIRED_PACKAGES += library/security/openssl/openssl-fips-140
30b42c38bbc4 15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents: 3686
diff changeset
    77
REQUIRED_PACKAGES += library/zlib
30b42c38bbc4 15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents: 3686
diff changeset
    78
REQUIRED_PACKAGES += runtime/perl-512
30b42c38bbc4 15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents: 3686
diff changeset
    79
REQUIRED_PACKAGES += system/library/math
30b42c38bbc4 15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents: 3686
diff changeset
    80
REQUIRED_PACKAGES += x11/library/libx11