components/mutt/Makefile
changeset 257 31daaf0e6143
child 587 9cc973a7ad62
equal deleted inserted replaced
256:ba784342febe 257:31daaf0e6143
       
     1 #
       
     2 # CDDL HEADER START
       
     3 #
       
     4 # The contents of this file are subject to the terms of the
       
     5 # Common Development and Distribution License (the "License").
       
     6 # You may not use this file except in compliance with the License.
       
     7 #
       
     8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
       
     9 # or http://www.opensolaris.org/os/licensing.
       
    10 # See the License for the specific language governing permissions
       
    11 # and limitations under the License.
       
    12 #
       
    13 # When distributing Covered Code, include this CDDL HEADER in each
       
    14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
       
    15 # If applicable, add the following below this CDDL HEADER, with the
       
    16 # fields enclosed by brackets "[]" replaced with your own identifying
       
    17 # information: Portions Copyright [yyyy] [name of copyright owner]
       
    18 #
       
    19 # CDDL HEADER END
       
    20 #
       
    21 
       
    22 #
       
    23 # Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
       
    24 #
       
    25 
       
    26 include ../../make-rules/shared-macros.mk
       
    27 
       
    28 COMPONENT_NAME=		mutt
       
    29 COMPONENT_VERSION=	1.5.21
       
    30 IPS_PKG_NAME=		mail/mutt
       
    31 COMPONENT_SRC=		$(COMPONENT_NAME)-$(COMPONENT_VERSION)
       
    32 COMPONENT_ARCHIVE=	$(COMPONENT_SRC).tar.gz
       
    33 COMPONENT_ARCHIVE_HASH=	sha1:a8475f2618ce5d5d33bff85c0affdf21ab1d76b9
       
    34 COMPONENT_ARCHIVE_URL=	ftp://ftp.mutt.org/mutt/devel/$(COMPONENT_ARCHIVE)
       
    35 COMPONENT_PROJECT_URL=	http://www.mutt.org/
       
    36 COPYRIGHT_FILE=		mutt.license
       
    37 COPYRIGHTS=		GPLv2
       
    38 
       
    39 include ../../make-rules/prep.mk
       
    40 include ../../make-rules/configure.mk
       
    41 include ../../make-rules/ips.mk
       
    42 
       
    43 PKG_MACROS +=	IPS_PKG_NAME=$(IPS_PKG_NAME)
       
    44 PKG_MACROS +=	COPYRIGHT_FILE=$(COPYRIGHT_FILE)
       
    45 PKG_MACROS +=	COPYRIGHTS=$(COPYRIGHTS)
       
    46 
       
    47 CONFIGURE_OPTIONS  +=		CFLAGS="$(CFLAGS)"
       
    48 CONFIGURE_OPTIONS  +=		--sysconfdir="$(ETCDIR)/$(COMPONENT_NAME)"
       
    49 CONFIGURE_OPTIONS  +=		--enable-pop
       
    50 CONFIGURE_OPTIONS  +=		--enable-imap
       
    51 CONFIGURE_OPTIONS  +=		--enable-smtp
       
    52 CONFIGURE_OPTIONS  +=		--enable-hcache
       
    53 CONFIGURE_OPTIONS  +=		--with-gdbm
       
    54 CONFIGURE_OPTIONS  +=		--with-regex
       
    55 CONFIGURE_OPTIONS  +=		--with-slang
       
    56 CONFIGURE_OPTIONS  +=		--with-ssl
       
    57 CONFIGURE_OPTIONS  +=		--with-idn
       
    58 CFLAGS +=			-I"$(USRINCDIR)/idn"
       
    59 CONFIGURE_OPTIONS  +=		--with-wc-funcs
       
    60 CONFIGURE_OPTIONS  +=		--with-sasl
       
    61 
       
    62 # common targets
       
    63 build:		$(BUILD_32)
       
    64 
       
    65 install:	$(INSTALL_32)
       
    66 
       
    67 test:		$(NO_TESTS)
       
    68 
       
    69 BUILD_PKG_DEPENDENCIES =	$(BUILD_TOOLS)
       
    70 
       
    71 include ../../make-rules/depend.mk