silc-toolkit-0.9.12, from pedro martelletto and myself, maintained by
pedro
This commit is contained in:
parent
af329a3caf
commit
1f9130ab83
32
devel/silc-toolkit/Makefile
Normal file
32
devel/silc-toolkit/Makefile
Normal file
@ -0,0 +1,32 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2004/04/11 21:25:13 jolan Exp $
|
||||
|
||||
COMMENT= "toolkit for the development of SILC applications"
|
||||
DISTNAME= silc-toolkit-0.9.12
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= http://www.silcnet.org/download/toolkit/sources/
|
||||
|
||||
HOMEPAGE= http://www.silcnet.org/software/developers/toolkit/
|
||||
|
||||
MAINTAINER= Pedro Martelletto <pbastos@inf.puc-rio.br>
|
||||
|
||||
# GPL
|
||||
PERMIT_PACKAGE_CDROM= Yes
|
||||
PERMIT_PACKAGE_FTP= Yes
|
||||
PERMIT_DISTFILES_CDROM= Yes
|
||||
PERMIT_DISTFILES_FTP= Yes
|
||||
|
||||
MODULES=iconv
|
||||
|
||||
CONFIGURE_STYLE=gnu
|
||||
CONFIGURE_ARGS+=${CONFIGURE_SHARED} \
|
||||
--enable-ipv6 \
|
||||
--without-irssi \
|
||||
--without-silcd \
|
||||
--with-docdir=${PREFIX}/share/doc/silc \
|
||||
--includedir=${PREFIX}/include/silc
|
||||
|
||||
.if (${MACHINE_ARCH} != "i386")
|
||||
CONFIGURE_ARGS+= --disable-asm
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
3
devel/silc-toolkit/distinfo
Normal file
3
devel/silc-toolkit/distinfo
Normal file
@ -0,0 +1,3 @@
|
||||
MD5 (silc-toolkit-0.9.12.tar.gz) = 58e42d78b76e72cbf72cb52fcb32e83c
|
||||
RMD160 (silc-toolkit-0.9.12.tar.gz) = 0d2d754130db78d840f4164994b9c37613b5bdd4
|
||||
SHA1 (silc-toolkit-0.9.12.tar.gz) = 477b99499086ad38fc33dee72a76fe2b0ceabbc6
|
20
devel/silc-toolkit/patches/patch-Makefile_in
Normal file
20
devel/silc-toolkit/patches/patch-Makefile_in
Normal file
@ -0,0 +1,20 @@
|
||||
$OpenBSD: patch-Makefile_in,v 1.1.1.1 2004/04/11 21:25:15 jolan Exp $
|
||||
--- Makefile.in.orig 2004-02-29 09:10:00.000000000 -0600
|
||||
+++ Makefile.in 2004-04-10 18:44:48.000000000 -0500
|
||||
@@ -833,7 +833,6 @@ toolkit-install:
|
||||
-mkdir -p $(docdir)/toolkit/
|
||||
-$(INSTALL_DATA) $(srcdir)/doc/toolkit/* $(docdir)/toolkit
|
||||
-$(INSTALL_DATA) $(srcdir)/lib/doc/*.gif $(docdir)/toolkit
|
||||
- -cp -R $(srcdir)/tutorial $(prefix)
|
||||
|
||||
examples-install:
|
||||
-mkdir -p $(docdir)/examples/
|
||||
@@ -846,7 +845,7 @@ generate-server-key:
|
||||
fi
|
||||
|
||||
@SILC_DIST_CLIENT_TRUE@install-data-hook: install-dirs-client sim-install doc-install-client etc-install-client
|
||||
-@SILC_DIST_CLIENT_FALSE@@SILC_DIST_TOOLKIT_TRUE@install-data-hook: install-dirs-client install-dirs-server sim-install doc-install-client doc-install-server toolkit-install examples-install etc-install-client etc-install-server
|
||||
+@SILC_DIST_CLIENT_FALSE@@SILC_DIST_TOOLKIT_TRUE@install-data-hook: install-dirs-client install-dirs-server sim-install doc-install-client doc-install-server toolkit-install
|
||||
@SILC_DIST_CLIENT_FALSE@@SILC_DIST_TOOLKIT_FALSE@install-data-hook: install-dirs-server sim-install doc-install-server examples-install etc-install-server generate-server-key
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
55
devel/silc-toolkit/patches/patch-ltmain_sh
Normal file
55
devel/silc-toolkit/patches/patch-ltmain_sh
Normal file
@ -0,0 +1,55 @@
|
||||
$OpenBSD: patch-ltmain_sh,v 1.1.1.1 2004/04/11 21:25:15 jolan Exp $
|
||||
--- ltmain.sh.orig 2004-02-29 09:10:08.000000000 -0600
|
||||
+++ ltmain.sh 2004-04-10 18:55:32.000000000 -0500
|
||||
@@ -5508,8 +5508,8 @@ relink_command=\"$relink_command\""
|
||||
for linkname
|
||||
do
|
||||
if test "$linkname" != "$realname"; then
|
||||
- $show "(cd $destdir && $rm $linkname && $LN_S $realname $linkname)"
|
||||
- $run eval "(cd $destdir && $rm $linkname && $LN_S $realname $linkname)"
|
||||
+ $show "(cd $destdir && $rm $linkname && $mv $realname $linkname)"
|
||||
+ $run eval "(cd $destdir && $rm $linkname && $mv $realname $linkname)"
|
||||
fi
|
||||
done
|
||||
fi
|
||||
@@ -5801,40 +5801,6 @@ relink_command=\"$relink_command\""
|
||||
# Exit here if they wanted silent mode.
|
||||
test "$show" = : && exit 0
|
||||
|
||||
- $echo "----------------------------------------------------------------------"
|
||||
- $echo "Libraries have been installed in:"
|
||||
- for libdir in $libdirs; do
|
||||
- $echo " $libdir"
|
||||
- done
|
||||
- $echo
|
||||
- $echo "If you ever happen to want to link against installed libraries"
|
||||
- $echo "in a given directory, LIBDIR, you must either use libtool, and"
|
||||
- $echo "specify the full pathname of the library, or use the \`-LLIBDIR'"
|
||||
- $echo "flag during linking and do at least one of the following:"
|
||||
- if test -n "$shlibpath_var"; then
|
||||
- $echo " - add LIBDIR to the \`$shlibpath_var' environment variable"
|
||||
- $echo " during execution"
|
||||
- fi
|
||||
- if test -n "$runpath_var"; then
|
||||
- $echo " - add LIBDIR to the \`$runpath_var' environment variable"
|
||||
- $echo " during linking"
|
||||
- fi
|
||||
- if test -n "$hardcode_libdir_flag_spec"; then
|
||||
- libdir=LIBDIR
|
||||
- eval flag=\"$hardcode_libdir_flag_spec\"
|
||||
-
|
||||
- $echo " - use the \`$flag' linker flag"
|
||||
- fi
|
||||
- if test -n "$admincmds"; then
|
||||
- $echo " - have your system administrator run these commands:$admincmds"
|
||||
- fi
|
||||
- if test -f /etc/ld.so.conf; then
|
||||
- $echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'"
|
||||
- fi
|
||||
- $echo
|
||||
- $echo "See any operating system documentation about shared libraries for"
|
||||
- $echo "more information, such as the ld(1) and ld.so(8) manual pages."
|
||||
- $echo "----------------------------------------------------------------------"
|
||||
exit 0
|
||||
;;
|
||||
|
8
devel/silc-toolkit/pkg/DESCR
Normal file
8
devel/silc-toolkit/pkg/DESCR
Normal file
@ -0,0 +1,8 @@
|
||||
The SILC Toolkit is a set of libraries that provide not only the full
|
||||
protocol implementation, but also mathematical and cryptographic
|
||||
utilities the developer will find handy when developing SILC
|
||||
applications.
|
||||
|
||||
It provides a well structured, flexible and extensively documented API,
|
||||
making it a good start point for anyone wanting to develop applications
|
||||
in this protocol.
|
4
devel/silc-toolkit/pkg/PFRAG.shared
Normal file
4
devel/silc-toolkit/pkg/PFRAG.shared
Normal file
@ -0,0 +1,4 @@
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2004/04/11 21:25:15 jolan Exp $
|
||||
lib/libsilc.so.3.0
|
||||
lib/libsilcclient.so.3.0
|
||||
DYNLIBDIR(%D/lib)
|
1137
devel/silc-toolkit/pkg/PLIST
Normal file
1137
devel/silc-toolkit/pkg/PLIST
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user