Bug 63234

Summary: New port: misc/skyutils A library required by the new version of smssend (same author)
Product: Ports & Packages Reporter: machiel_mastenbroek <machiel_mastenbroek>
Component: Individual Port(s)Assignee: Thierry Thomas <thierry>
Status: Closed FIXED    
Severity: Affects Only Me CC: machiel
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   
Attachments:
Description Flags
bug_repport
none
skyutils none

Description machiel_mastenbroek 2004-02-22 20:00:22 UTC
This library contains many useful functions that the maintainer of Smssend and Skyutils used in many of his projects.

The current version of smssend is depended of this library.

My goal is to update smssend version 2.9-1 (from the port collection) to version 3.3.
Comment 1 Thierry Thomas freebsd_committer freebsd_triage 2004-03-27 18:37:18 UTC
Responsible Changed
From-To: freebsd-ports-bugs->thierry


I'll take it.
Comment 2 machiel_mastenbroek 2004-03-29 15:32:25 UTC
I have changed the Makefile and added this 2 extra lines

USE_LIBTOOL=        yes
INSTALLS_SHLIB=     yes


This new file is created from the relative path 'misc/skyutils/'

The file is also available from the following location:

http://www.generaal.net/san/skyutils

_________________________________________________________________
Hotmail en Messenger on the move 
http://www.msn.nl/communicatie/smsdiensten/hotmailsmsv2/
Comment 3 Thierry Thomas freebsd_committer freebsd_triage 2004-03-30 23:08:40 UTC
State Changed
From-To: open->closed


Committed, thanks! 

Remark: the patch file is now under files/.
Comment 4 machiel 2004-04-01 08:47:17 UTC
The configuration utility from the skyutils library
(/usr/local/bin/skyutils-config libs) does not return the linker option
-lcrypto.

Fix:

A new patch file for configure.in.

--- patch_file begins here ---
--- configure.in	Wed Aug 27 20:54:02 2003
+++ configure.in.new	Sat Feb 21 13:37:18 2004
@@ -171,7 +171,7 @@

 SU_SSL_CFLAGS=""
 if test "$ssl" = "true"; then
-  AC_CHECK_LIB(ssl,SSL_library_init,SU_SSL_LIB="-lssl")
+  AC_CHECK_LIB(ssl,SSL_library_init,SU_SSL_LIB="-lssl -lcrypto", ,-lcrypto)
   if test ! "$SU_SSL_LIB"; then
     AC_MSG_WARN("Cannot find libssl... ssl code in skyweb will be disabled")
   else

--- patch_file ends here ---

This file is also available from here:

http://machiel.generaal.net/files/patches/skyutils-2.6/patch2-configure.in