pkgsrc/mbone/sdr/Makefile

61 lines
1.4 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.54 2012/10/08 09:25:50 asau Exp $
Update sdr to 3.0. Changes: 3.0 K.Hasler/E.Whelan 22 Aug 2000 - new 'application' media type for session directories - fixed byte ordering of headers on intel machines - fixed IP6 address allocation for unix IP6 stacks - Authentication and encryption code fixed to allow for extra space for IPv6 addresses - Added IPv6 flags to configure scripts "--enable-ipv6" 3.0 K.Hasler 6 Dec 1999 - changed use of option get to use the resource procs in generic.tcl - store_address now returns if it already has the address. 3.0 C.Perkins 16 Nov 1999 - Remove TTL scoping option 2.9 K.Hasler 26 Oct 1999 - created a directory type for the directory icon, so that the directory icon is displayed for directory sessions in the main SDR window. - Fix reshow_sessions to delete sessbox when they exist - fixes problem when using the Apply button from the preferences window. 2.9 E.Whelan 25 Oct 1999 - fixed window problems caused by adding directories - fixes problems with passphrase window. - eg geometry option and key passphrase window at startup - FAQ has also been updated - Fixed problem which quit from SDR when closed directory windows 2.8 K.Hasler 9 Sep 1999 - fixdaysinmonth proc fixes daysinmonth variable for leap years. Used when creating a new session and in calendar. - Fix convert_vars to recognise other variable separators (ie not just /). - Fixed set_fmt_menu in create_proc_menu which had attributes in wrong order. - Directory SDP Patches from: http://www.live.com/sdrpatch.html 2.7e K.Hasler 15 July 1999 - enabled pgp
2000-12-17 10:39:53 +01:00
DISTNAME= sdr-3.0
PKGREVISION= 2
2000-09-08 20:58:05 +02:00
CATEGORIES= mbone tk
Update sdr to 3.0. Changes: 3.0 K.Hasler/E.Whelan 22 Aug 2000 - new 'application' media type for session directories - fixed byte ordering of headers on intel machines - fixed IP6 address allocation for unix IP6 stacks - Authentication and encryption code fixed to allow for extra space for IPv6 addresses - Added IPv6 flags to configure scripts "--enable-ipv6" 3.0 K.Hasler 6 Dec 1999 - changed use of option get to use the resource procs in generic.tcl - store_address now returns if it already has the address. 3.0 C.Perkins 16 Nov 1999 - Remove TTL scoping option 2.9 K.Hasler 26 Oct 1999 - created a directory type for the directory icon, so that the directory icon is displayed for directory sessions in the main SDR window. - Fix reshow_sessions to delete sessbox when they exist - fixes problem when using the Apply button from the preferences window. 2.9 E.Whelan 25 Oct 1999 - fixed window problems caused by adding directories - fixes problems with passphrase window. - eg geometry option and key passphrase window at startup - FAQ has also been updated - Fixed problem which quit from SDR when closed directory windows 2.8 K.Hasler 9 Sep 1999 - fixdaysinmonth proc fixes daysinmonth variable for leap years. Used when creating a new session and in calendar. - Fix convert_vars to recognise other variable separators (ie not just /). - Fixed set_fmt_menu in create_proc_menu which had attributes in wrong order. - Directory SDP Patches from: http://www.live.com/sdrpatch.html 2.7e K.Hasler 15 July 1999 - enabled pgp
2000-12-17 10:39:53 +01:00
MASTER_SITES= http://www-mice.cs.ucl.ac.uk/multimedia/software/sdr/3.0/
2003-07-17 23:41:05 +02:00
MAINTAINER= is@NetBSD.org
HOMEPAGE= http://www-mice.cs.ucl.ac.uk/multimedia/software/sdr/
COMMENT= MBone Session Directory
BROKEN= Depends on TCL/TK 8.3
WRKSRC= ${WRKDIR}/sdr/${SYSDIR}
CRYPTO= yes
USE_TOOLS+= gmake
HAS_CONFIGURE= yes
1999-10-04 22:56:59 +02:00
PKG_OPTIONS_VAR= PKG_OPTIONS.sdr
PKG_SUPPORTED_OPTIONS= inet6
PKG_SUGGESTED_OPTIONS= inet6
.include "../../mk/bsd.options.mk"
2000-03-15 08:17:39 +01:00
.if !empty(PKG_OPTIONS:Minet6)
CONFIGURE_ARGS+= --enable-ipv6
2000-12-17 10:43:16 +01:00
.endif
.if exists(/usr/include/sys/inttypes.h)
EXTRA_FLAGS+= -DHAVE_SYS_INTTYPES_H
MAKE_FLAGS+= EXTRA_FLAGS=${EXTRA_FLAGS:Q}
.endif
2000-03-15 08:17:39 +01:00
.if ${OPSYS} == "SunOS"
SYSDIR= solaris
.else
Update sdr to 3.0. Changes: 3.0 K.Hasler/E.Whelan 22 Aug 2000 - new 'application' media type for session directories - fixed byte ordering of headers on intel machines - fixed IP6 address allocation for unix IP6 stacks - Authentication and encryption code fixed to allow for extra space for IPv6 addresses - Added IPv6 flags to configure scripts "--enable-ipv6" 3.0 K.Hasler 6 Dec 1999 - changed use of option get to use the resource procs in generic.tcl - store_address now returns if it already has the address. 3.0 C.Perkins 16 Nov 1999 - Remove TTL scoping option 2.9 K.Hasler 26 Oct 1999 - created a directory type for the directory icon, so that the directory icon is displayed for directory sessions in the main SDR window. - Fix reshow_sessions to delete sessbox when they exist - fixes problem when using the Apply button from the preferences window. 2.9 E.Whelan 25 Oct 1999 - fixed window problems caused by adding directories - fixes problems with passphrase window. - eg geometry option and key passphrase window at startup - FAQ has also been updated - Fixed problem which quit from SDR when closed directory windows 2.8 K.Hasler 9 Sep 1999 - fixdaysinmonth proc fixes daysinmonth variable for leap years. Used when creating a new session and in calendar. - Fix convert_vars to recognise other variable separators (ie not just /). - Fixed set_fmt_menu in create_proc_menu which had attributes in wrong order. - Directory SDP Patches from: http://www.live.com/sdrpatch.html 2.7e K.Hasler 15 July 1999 - enabled pgp
2000-12-17 10:39:53 +01:00
SYSDIR= freebsd
2000-03-15 08:17:39 +01:00
.endif
INSTALLATION_DIRS= bin
post-patch:
${MV} ${WRKSRC}/../src/sdr.tcl ${WRKSRC}/../src/sdr.tcl.in && \
${SED} -e 's|@PREFIX@|${PREFIX}|' ${WRKSRC}/../src/sdr.tcl.in > \
${WRKSRC}/../src/sdr.tcl
2000-03-15 08:17:39 +01:00
.if ${OPSYS} == "SunOS"
post-configure:
Update sdr to 3.0. Changes: 3.0 K.Hasler/E.Whelan 22 Aug 2000 - new 'application' media type for session directories - fixed byte ordering of headers on intel machines - fixed IP6 address allocation for unix IP6 stacks - Authentication and encryption code fixed to allow for extra space for IPv6 addresses - Added IPv6 flags to configure scripts "--enable-ipv6" 3.0 K.Hasler 6 Dec 1999 - changed use of option get to use the resource procs in generic.tcl - store_address now returns if it already has the address. 3.0 C.Perkins 16 Nov 1999 - Remove TTL scoping option 2.9 K.Hasler 26 Oct 1999 - created a directory type for the directory icon, so that the directory icon is displayed for directory sessions in the main SDR window. - Fix reshow_sessions to delete sessbox when they exist - fixes problem when using the Apply button from the preferences window. 2.9 E.Whelan 25 Oct 1999 - fixed window problems caused by adding directories - fixes problems with passphrase window. - eg geometry option and key passphrase window at startup - FAQ has also been updated - Fixed problem which quit from SDR when closed directory windows 2.8 K.Hasler 9 Sep 1999 - fixdaysinmonth proc fixes daysinmonth variable for leap years. Used when creating a new session and in calendar. - Fix convert_vars to recognise other variable separators (ie not just /). - Fixed set_fmt_menu in create_proc_menu which had attributes in wrong order. - Directory SDP Patches from: http://www.live.com/sdrpatch.html 2.7e K.Hasler 15 July 1999 - enabled pgp
2000-12-17 10:39:53 +01:00
# Untested for sdr 3.0 !!!
${CAT} ${WRKSRC}/sdr/solaris/Makefile.solaris \
${WRKSRC}/sdr/src/Makefile.template \
> ${WRKSRC}/sdr/solaris/Makefile
2000-03-15 08:17:39 +01:00
.endif
1999-10-04 22:56:59 +02:00
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/sdr ${DESTDIR}${PREFIX}/bin/sdr
1999-10-04 22:56:59 +02:00
2005-04-05 12:34:19 +02:00
.include "../../mbone/common-mml/buildlink3.mk"
#.include "../../x11/tk83/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"