11 # or http://www.opensolaris.org/os/licensing.
12 # See the License for the specific language governing permissions
13 # and limitations under the License.
14 #
15 # When distributing Covered Code, include this CDDL HEADER in each
16 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
17 # If applicable, add the following below this CDDL HEADER, with the
18 # fields enclosed by brackets "[]" replaced with your own identifying
19 # information: Portions Copyright [yyyy] [name of copyright owner]
20 #
21 # CDDL HEADER END
22 #
23 #
24 # Copyright 2011-2013 OmniTI Computer Consulting, Inc. All rights reserved.
25 # Use is subject to license terms.
26 #
27 # Load support functions
28 . ../../lib/functions.sh
29
30 PROG=openssh
31 VER=6.7p1
32 VERHUMAN=$VER
33 PKG=network/openssh
34 SUMMARY="OpenSSH Client and utilities"
35 DESC="OpenSSH Secure Shell protocol Client and associated Utilities"
36
37 GLOBAL_DEPENDS="library/security/openssl@1.0.2 library/zlib@1.2 system/library system/library/g++-4-runtime@4.7.2"
38
39 BUILDARCH=32
40 # Since we're only building 32-bit, don't bother with isaexec subdirs
41 CONFIGURE_OPTS_32="
42 --prefix=$PREFIX
43 --sysconfdir=/etc/ssh
44 --includedir=$PREFIX/include
45 --bindir=$PREFIX/bin
46 --sbindir=$PREFIX/sbin
47 --libdir=$PREFIX/lib
48 --libexecdir=$PREFIX/libexec
49 "
50 # Feature choices
51 CONFIGURE_OPTS="
52 --with-solaris-contracts
53 --with-solaris-projects
54 --with-tcp-wrappers
55 --with-ssl-engine
56 --with-pam
57 "
58
61 logcmd mkdir -p $DESTDIR/lib/svc/manifest/network || \
62 logerr "--- Failed to create manifest directory"
63 logcmd cp $SRCDIR/ssh.xml $DESTDIR/lib/svc/manifest/network/ || \
64 logerr "--- Failed to copy manifest file"
65 logcmd mkdir -p $DESTDIR/lib/svc/method || \
66 logerr "--- Failed to create method directory"
67 logcmd cp $SRCDIR/method-sshd $DESTDIR/lib/svc/method/sshd || \
68 logerr "--- Failed to copy method script"
69 }
70
71 init
72 download_source $PROG $PROG $VER
73 patch_source
74 prep_build
75 build
76
77 # Remove the letter from VER for packaging
78 VER=${VER//p/.}
79
80 # Client package
81 DEPENDS_IPS="-network/ssh -network/ssh/ssh-key $GLOBAL_DEPENDS"
82 make_package client.mog
83
84 # Server package
85 PKG=network/openssh-server
86 PKGE=$(url_encode $PKG)
87 SUMMARY="OpenSSH Server"
88 DESC="OpenSSH Secure Shell protocol Server"
89 DEPENDS_IPS="-service/network/ssh network/openssh $GLOBAL_DEPENDS"
90 install_smf
91 make_package server.mog
92
93 clean_up
94
95 # Vim hints
96 # vim:ts=4:sw=4:et:
|
11 # or http://www.opensolaris.org/os/licensing.
12 # See the License for the specific language governing permissions
13 # and limitations under the License.
14 #
15 # When distributing Covered Code, include this CDDL HEADER in each
16 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
17 # If applicable, add the following below this CDDL HEADER, with the
18 # fields enclosed by brackets "[]" replaced with your own identifying
19 # information: Portions Copyright [yyyy] [name of copyright owner]
20 #
21 # CDDL HEADER END
22 #
23 #
24 # Copyright 2011-2013 OmniTI Computer Consulting, Inc. All rights reserved.
25 # Use is subject to license terms.
26 #
27 # Load support functions
28 . ../../lib/functions.sh
29
30 PROG=openssh
31 VER=7.1p1
32 VERHUMAN=$VER
33 PKG=network/openssh
34 SUMMARY="OpenSSH Client and utilities"
35 DESC="OpenSSH Secure Shell protocol Client and associated Utilities"
36
37 BUILDARCH=32
38 # Since we're only building 32-bit, don't bother with isaexec subdirs
39 CONFIGURE_OPTS_32="
40 --prefix=$PREFIX
41 --sysconfdir=/etc/ssh
42 --includedir=$PREFIX/include
43 --bindir=$PREFIX/bin
44 --sbindir=$PREFIX/sbin
45 --libdir=$PREFIX/lib
46 --libexecdir=$PREFIX/libexec
47 "
48 # Feature choices
49 CONFIGURE_OPTS="
50 --with-solaris-contracts
51 --with-solaris-projects
52 --with-tcp-wrappers
53 --with-ssl-engine
54 --with-pam
55 "
56
59 logcmd mkdir -p $DESTDIR/lib/svc/manifest/network || \
60 logerr "--- Failed to create manifest directory"
61 logcmd cp $SRCDIR/ssh.xml $DESTDIR/lib/svc/manifest/network/ || \
62 logerr "--- Failed to copy manifest file"
63 logcmd mkdir -p $DESTDIR/lib/svc/method || \
64 logerr "--- Failed to create method directory"
65 logcmd cp $SRCDIR/method-sshd $DESTDIR/lib/svc/method/sshd || \
66 logerr "--- Failed to copy method script"
67 }
68
69 init
70 download_source $PROG $PROG $VER
71 patch_source
72 prep_build
73 build
74
75 # Remove the letter from VER for packaging
76 VER=${VER//p/.}
77
78 # Client package
79 RUN_DEPENDS_IPS="-pkg:/network/ssh -pkg:/network/ssh/ssh-key"
80 make_package client.mog
81
82 # Server package
83 PKG=network/openssh-server
84 PKGE=$(url_encode $PKG)
85 SUMMARY="OpenSSH Server"
86 DESC="OpenSSH Secure Shell protocol Server"
87 RUN_DEPENDS_IPS="-pkg:/service/network/ssh pkg:/network/openssh@$VER"
88 install_smf
89 make_package server.mog
90
91 clean_up
92
93 # Vim hints
94 # vim:ts=4:sw=4:et:
|