mirror of
https://git.freebsd.org/ports.git
synced 2025-07-17 09:19:15 -04:00
- Change default Tcl/Tk version to 8.5
- Bump PORTVERSION of ports affected Tested by: pointyhat (pav)
This commit is contained in:
parent
356df709ff
commit
24bf28eff1
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=228909
105 changed files with 119 additions and 66 deletions
|
@ -13,7 +13,7 @@ Tcl_Include_MAINTAINER= mm@FreeBSD.org
|
||||||
# via the port or by the user via defined variable try to find the highest
|
# via the port or by the user via defined variable try to find the highest
|
||||||
# stable installed version.
|
# stable installed version.
|
||||||
# Available values: yes 86+ 85+ 84+ 83+ 82+ 80+ 85 84 83 82 80
|
# Available values: yes 86+ 85+ 84+ 83+ 82+ 80+ 85 84 83 82 80
|
||||||
# NOTE: - default value 84 is used in case of USE_TCL=yes
|
# NOTE: - default value 85 is used in case of USE_TCL=yes
|
||||||
#
|
#
|
||||||
# USE_TCL_BUILD - Add buildtime dependency on Tcl (tclsh).
|
# USE_TCL_BUILD - Add buildtime dependency on Tcl (tclsh).
|
||||||
# Available values: see USE_TCL
|
# Available values: see USE_TCL
|
||||||
|
@ -28,7 +28,7 @@ Tcl_Include_MAINTAINER= mm@FreeBSD.org
|
||||||
# a specific tclsh version may use this.
|
# a specific tclsh version may use this.
|
||||||
# The tclsh wrapper script installs into ${LOCALBASE}/bin/tclsh
|
# The tclsh wrapper script installs into ${LOCALBASE}/bin/tclsh
|
||||||
# NOTE: - USE_TCL_WRAPPER and USE_TCL can be used together
|
# NOTE: - USE_TCL_WRAPPER and USE_TCL can be used together
|
||||||
# - ports using the wrapper should support default Tcl (8.4)
|
# - ports using the wrapper should support default Tcl (8.5)
|
||||||
##
|
##
|
||||||
# INVALID_TCL_VER - This variable contains a list of Tcl versions not supported by the port.
|
# INVALID_TCL_VER - This variable contains a list of Tcl versions not supported by the port.
|
||||||
# This setting is effective only when USE_TCL is set to a range (e.g. 83+)
|
# This setting is effective only when USE_TCL is set to a range (e.g. 83+)
|
||||||
|
@ -53,7 +53,7 @@ Tcl_Include_MAINTAINER= mm@FreeBSD.org
|
||||||
# stable installed version.
|
# stable installed version.
|
||||||
# Avaliable values: yes 86+ 85+ 84+ 83+ 82+ 80+ 85 84 83 82 80
|
# Avaliable values: yes 86+ 85+ 84+ 83+ 82+ 80+ 85 84 83 82 80
|
||||||
# NOTE: - overrides USE_TCL
|
# NOTE: - overrides USE_TCL
|
||||||
# - default value 84 is used in case of USE_TK=yes
|
# - default value 85 is used in case of USE_TK=yes
|
||||||
#
|
#
|
||||||
# USE_TK_BUILD - Add buildtime dependency on Tk (wish).
|
# USE_TK_BUILD - Add buildtime dependency on Tk (wish).
|
||||||
# Available values: see USE_TK
|
# Available values: see USE_TK
|
||||||
|
@ -68,7 +68,7 @@ Tcl_Include_MAINTAINER= mm@FreeBSD.org
|
||||||
# a specific wish version may use this.
|
# a specific wish version may use this.
|
||||||
# The wish wrapper script installs into ${LOCALBASE}/bin/wish
|
# The wish wrapper script installs into ${LOCALBASE}/bin/wish
|
||||||
# NOTE: - USE_TK_WRAPPER and USE_TK can be used together.
|
# NOTE: - USE_TK_WRAPPER and USE_TK can be used together.
|
||||||
# - ports using the wrapper should support default Tk (8.4)
|
# - ports using the wrapper should support default Tk (8.5)
|
||||||
##
|
##
|
||||||
# INVALID_TK_VER - This variable contains a list of Tk versions not supported by the port
|
# INVALID_TK_VER - This variable contains a list of Tk versions not supported by the port
|
||||||
# This setting is effective only when USE_TK is set to a range (e.g. 83+)
|
# This setting is effective only when USE_TK is set to a range (e.g. 83+)
|
||||||
|
@ -190,7 +190,7 @@ INVALID_TCL_VER:= ${INVALID_TK_VER}
|
||||||
#
|
#
|
||||||
. if defined(USE_TCL)
|
. if defined(USE_TCL)
|
||||||
|
|
||||||
_TCL_DEFAULT_VERSION= 84
|
_TCL_DEFAULT_VERSION= 85
|
||||||
_TCL_VERSIONS= 86 85 84 83 82 80
|
_TCL_VERSIONS= 86 85 84 83 82 80
|
||||||
_TCL_THREADS_VERSIONS= 86 85 84
|
_TCL_THREADS_VERSIONS= 86 85 84
|
||||||
_TCL_RANGE_VERSIONS= 86+ 85+ 84+ 83+ 82+ 80+
|
_TCL_RANGE_VERSIONS= 86+ 85+ 84+ 83+ 82+ 80+
|
||||||
|
|
11
UPDATING
11
UPDATING
|
@ -6,6 +6,17 @@ You should get into the habit of checking this file for changes each
|
||||||
time you update your ports collection, before attempting any port
|
time you update your ports collection, before attempting any port
|
||||||
upgrades.
|
upgrades.
|
||||||
|
|
||||||
|
20090223:
|
||||||
|
AFFECTS: users of Tcl/Tk
|
||||||
|
AUTHOR: mm@FreeBSD.org
|
||||||
|
|
||||||
|
The default version of Tcl/Tk has been changed from 8.4 to 8.5.
|
||||||
|
|
||||||
|
To restore old behavior and prefer using Tcl 8.4 with supported ports set
|
||||||
|
WITH_TCL_VER=84 in /etc/make.conf. This has no effect on ports that have
|
||||||
|
USE_TCL=yes or USE_TK=yes. They stick to the new default version and have
|
||||||
|
to be updated by their maintainers to support other versions than default.
|
||||||
|
|
||||||
20090218:
|
20090218:
|
||||||
AFFECTS: users of www/zend-framework
|
AFFECTS: users of www/zend-framework
|
||||||
AUTHOR: glarkin@FreeBSD.org
|
AUTHOR: glarkin@FreeBSD.org
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= tclmkziplib
|
PORTNAME= tclmkziplib
|
||||||
PORTVERSION= 1.0
|
PORTVERSION= 1.0
|
||||||
PORTREVISION= 1
|
PORTREVISION= 2
|
||||||
CATEGORIES= archivers tcl
|
CATEGORIES= archivers tcl
|
||||||
MASTER_SITES= http://mkextensions.sourceforge.net/
|
MASTER_SITES= http://mkextensions.sourceforge.net/
|
||||||
DISTNAME= mkZiplib${PORTVERSION:S/.//}
|
DISTNAME= mkZiplib${PORTVERSION:S/.//}
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= ptiger
|
PORTNAME= ptiger
|
||||||
PORTVERSION= 2.2
|
PORTVERSION= 2.2
|
||||||
PORTREVISION= 2
|
PORTREVISION= 3
|
||||||
CATEGORIES= astro tk
|
CATEGORIES= astro tk
|
||||||
MASTER_SITES= SF
|
MASTER_SITES= SF
|
||||||
MASTER_SITE_SUBDIR= tkgeomap
|
MASTER_SITE_SUBDIR= tkgeomap
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= tclgeomap
|
PORTNAME= tclgeomap
|
||||||
PORTVERSION= 2.11.5
|
PORTVERSION= 2.11.5
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= astro tcl
|
CATEGORIES= astro tcl
|
||||||
MASTER_SITES= SF/tkgeomap
|
MASTER_SITES= SF/tkgeomap
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= tkgeomap
|
PORTNAME= tkgeomap
|
||||||
PORTVERSION= 2.11.5
|
PORTVERSION= 2.11.5
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= astro tk
|
CATEGORIES= astro tk
|
||||||
MASTER_SITES= SF
|
MASTER_SITES= SF
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= xeartk
|
PORTNAME= xeartk
|
||||||
PORTVERSION= 2.2
|
PORTVERSION= 2.2
|
||||||
PORTREVISION= 2
|
PORTREVISION= 3
|
||||||
CATEGORIES= astro tk
|
CATEGORIES= astro tk
|
||||||
MASTER_SITES= SF
|
MASTER_SITES= SF
|
||||||
MASTER_SITE_SUBDIR= tkgeomap
|
MASTER_SITE_SUBDIR= tkgeomap
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
PORTNAME= pd
|
PORTNAME= pd
|
||||||
DISTVERSION= 0.42-4
|
DISTVERSION= 0.42-4
|
||||||
DISTVERSIONSUFFIX= .src
|
DISTVERSIONSUFFIX= .src
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= audio
|
CATEGORIES= audio
|
||||||
MASTER_SITES= http://www-crca.ucsd.edu/~msp/Software/
|
MASTER_SITES= http://www-crca.ucsd.edu/~msp/Software/
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= rat
|
PORTNAME= rat
|
||||||
PORTVERSION= 4.2.25
|
PORTVERSION= 4.2.25
|
||||||
PORTREVISION= 3
|
PORTREVISION= 4
|
||||||
CATEGORIES= mbone audio ipv6 tk
|
CATEGORIES= mbone audio ipv6 tk
|
||||||
MASTER_SITES= http://www-mice.cs.ucl.ac.uk/multimedia/software/rat/releases/${PORTVERSION}/ \
|
MASTER_SITES= http://www-mice.cs.ucl.ac.uk/multimedia/software/rat/releases/${PORTVERSION}/ \
|
||||||
http://www.icir.org/hodson/ucl-mirror/
|
http://www.icir.org/hodson/ucl-mirror/
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
PORTNAME= snack
|
PORTNAME= snack
|
||||||
PORTVERSION= 2.2.10
|
PORTVERSION= 2.2.10
|
||||||
PORTREVISION= 3
|
PORTREVISION= 4
|
||||||
CATEGORIES= audio tcl tk
|
CATEGORIES= audio tcl tk
|
||||||
MASTER_SITES= http://www.speech.kth.se/snack/dist/
|
MASTER_SITES= http://www.speech.kth.se/snack/dist/
|
||||||
DISTNAME= ${PORTNAME}${PORTVERSION}
|
DISTNAME= ${PORTNAME}${PORTVERSION}
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= xcd
|
PORTNAME= xcd
|
||||||
PORTVERSION= 1.7
|
PORTVERSION= 1.7
|
||||||
PORTREVISION= 2
|
PORTREVISION= 3
|
||||||
CATEGORIES= audio tk
|
CATEGORIES= audio tk
|
||||||
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
||||||
MASTER_SITE_SUBDIR= jmz
|
MASTER_SITE_SUBDIR= jmz
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= opencascade
|
PORTNAME= opencascade
|
||||||
PORTVERSION= 6.3
|
PORTVERSION= 6.3
|
||||||
PORTREVISION= 2
|
PORTREVISION= 3
|
||||||
CATEGORIES= cad science
|
CATEGORIES= cad science
|
||||||
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
||||||
MASTER_SITE_SUBDIR= thierry
|
MASTER_SITE_SUBDIR= thierry
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= pcb
|
PORTNAME= pcb
|
||||||
PORTVERSION= 20080202
|
PORTVERSION= 20080202
|
||||||
PORTREVISION= 3
|
PORTREVISION= 4
|
||||||
CATEGORIES= cad
|
CATEGORIES= cad
|
||||||
MASTER_SITES= SF
|
MASTER_SITES= SF
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= hamlib
|
PORTNAME= hamlib
|
||||||
PORTVERSION= 1.2.8
|
PORTVERSION= 1.2.8
|
||||||
PORTREVISION= 1
|
PORTREVISION= 2
|
||||||
CATEGORIES= comms hamradio
|
CATEGORIES= comms hamradio
|
||||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||||
MASTER_SITE_SUBDIR= ${PORTNAME}
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= ncid
|
PORTNAME= ncid
|
||||||
PORTVERSION= 0.72.1
|
PORTVERSION= 0.72.1
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= comms
|
CATEGORIES= comms
|
||||||
MASTER_SITES= SF
|
MASTER_SITES= SF
|
||||||
DISTNAME= ${PORTNAME}-${PORTVERSION}-src
|
DISTNAME= ${PORTNAME}-${PORTVERSION}-src
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
PORTNAME= tkscanfax
|
PORTNAME= tkscanfax
|
||||||
PORTVERSION= 1.1.8
|
PORTVERSION= 1.1.8
|
||||||
PORTEPOCH= 1
|
PORTEPOCH= 1
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= comms tk
|
CATEGORIES= comms tk
|
||||||
MASTER_SITES= http://shino.pos.to/linux/tkscanfax/
|
MASTER_SITES= http://shino.pos.to/linux/tkscanfax/
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= grass
|
PORTNAME= grass
|
||||||
PORTVERSION= 6.2.3
|
PORTVERSION= 6.2.3
|
||||||
PORTREVISION= 3
|
PORTREVISION= 4
|
||||||
PORTEPOCH= 2
|
PORTEPOCH= 2
|
||||||
CATEGORIES= databases geography
|
CATEGORIES= databases geography
|
||||||
MASTER_SITES= http://grass.itc.it/grass62/source/ \
|
MASTER_SITES= http://grass.itc.it/grass62/source/ \
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= metakit
|
PORTNAME= metakit
|
||||||
PORTVERSION= 2.4.9.7
|
PORTVERSION= 2.4.9.7
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= databases
|
CATEGORIES= databases
|
||||||
MASTER_SITES= http://www.equi4.com/pub/mk/
|
MASTER_SITES= http://www.equi4.com/pub/mk/
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= mysqltcl
|
PORTNAME= mysqltcl
|
||||||
PORTVERSION= 3.05
|
PORTVERSION= 3.05
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= databases tcl
|
CATEGORIES= databases tcl
|
||||||
MASTER_SITES= http://www.xdobry.de/mysqltcl/
|
MASTER_SITES= http://www.xdobry.de/mysqltcl/
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= pgtcl
|
PORTNAME= pgtcl
|
||||||
PORTVERSION= 1.6.2
|
PORTVERSION= 1.6.2
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= databases tcl
|
CATEGORIES= databases tcl
|
||||||
DISTNAME= ${PORTNAME}${PORTVERSION}
|
DISTNAME= ${PORTNAME}${PORTVERSION}
|
||||||
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:src
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:src
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= sybtcl
|
PORTNAME= sybtcl
|
||||||
PORTVERSION= 3.0rc2
|
PORTVERSION= 3.0rc2
|
||||||
PORTREVISION= 1
|
PORTREVISION= 2
|
||||||
CATEGORIES= databases devel
|
CATEGORIES= databases devel
|
||||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||||
MASTER_SITE_SUBDIR= ${PORTNAME}
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= zorro
|
PORTNAME= zorro
|
||||||
PORTVERSION= 1.1.8
|
PORTVERSION= 1.1.8
|
||||||
PORTREVISION= 2
|
PORTREVISION= 3
|
||||||
CATEGORIES= deskutils tk
|
CATEGORIES= deskutils tk
|
||||||
MASTER_SITES= ftp://ftp.nuug.no/pub/anders/distfiles/ \
|
MASTER_SITES= ftp://ftp.nuug.no/pub/anders/distfiles/ \
|
||||||
http://atreides.freenix.no/~anders/ \
|
http://atreides.freenix.no/~anders/ \
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= aegis
|
PORTNAME= aegis
|
||||||
PORTVERSION= 4.24
|
PORTVERSION= 4.24
|
||||||
PORTREVISION= 2
|
PORTREVISION= 3
|
||||||
CATEGORIES= devel
|
CATEGORIES= devel
|
||||||
MASTER_SITES= SF
|
MASTER_SITES= SF
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= cbrowser
|
PORTNAME= cbrowser
|
||||||
PORTVERSION= 0.8
|
PORTVERSION= 0.8
|
||||||
PORTREVISION= 3
|
PORTREVISION= 4
|
||||||
CATEGORIES= devel tk
|
CATEGORIES= devel tk
|
||||||
MASTER_SITES= SF
|
MASTER_SITES= SF
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= clig
|
PORTNAME= clig
|
||||||
PORTVERSION= 1.9.11.1
|
PORTVERSION= 1.9.11.1
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= devel tcl
|
CATEGORIES= devel tcl
|
||||||
MASTER_SITES= http://wsd.iitb.fhg.de/~geg/clighome/ \
|
MASTER_SITES= http://wsd.iitb.fhg.de/~geg/clighome/ \
|
||||||
http://www.carpetsmoker.net/distfiles/ \
|
http://www.carpetsmoker.net/distfiles/ \
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= ecos-tools
|
PORTNAME= ecos-tools
|
||||||
PORTVERSION= 0.0.${SNAPDATE}
|
PORTVERSION= 0.0.${SNAPDATE}
|
||||||
PORTREVISION= 7
|
PORTREVISION= 8
|
||||||
CATEGORIES= devel
|
CATEGORIES= devel
|
||||||
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
||||||
MASTER_SITE_SUBDIR= tg
|
MASTER_SITE_SUBDIR= tg
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= sml_tk
|
PORTNAME= sml_tk
|
||||||
PORTVERSION= 3.0
|
PORTVERSION= 3.0
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= devel
|
CATEGORIES= devel
|
||||||
MASTER_SITES= http://www.informatik.uni-bremen.de/~cxl/sml_tk/
|
MASTER_SITES= http://www.informatik.uni-bremen.de/~cxl/sml_tk/
|
||||||
DISTNAME= smltk
|
DISTNAME= smltk
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= memchan
|
PORTNAME= memchan
|
||||||
PORTVERSION= 2.2.1
|
PORTVERSION= 2.2.1
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= devel tcl
|
CATEGORIES= devel tcl
|
||||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||||
PKGNAMEPREFIX= tcl-
|
PKGNAMEPREFIX= tcl-
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= tclcl
|
PORTNAME= tclcl
|
||||||
PORTVERSION= 1.19
|
PORTVERSION= 1.19
|
||||||
PORTREVISION= 2
|
PORTREVISION= 3
|
||||||
DISTVERSIONPREFIX= src-
|
DISTVERSIONPREFIX= src-
|
||||||
CATEGORIES= devel tcl tk
|
CATEGORIES= devel tcl tk
|
||||||
MASTER_SITES= SF/otcl-tclcl
|
MASTER_SITES= SF/otcl-tclcl
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
PORTNAME= tcllib
|
PORTNAME= tcllib
|
||||||
PORTVERSION= 1.10
|
PORTVERSION= 1.10
|
||||||
CATEGORIES= devel tcl
|
CATEGORIES= devel tcl
|
||||||
PORTREVISION= 1
|
PORTREVISION= 2
|
||||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||||
MASTER_SITE_SUBDIR= tcllib
|
MASTER_SITE_SUBDIR= tcllib
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= tclmore
|
PORTNAME= tclmore
|
||||||
PORTVERSION= 0.7b1
|
PORTVERSION= 0.7b1
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= devel tcl
|
CATEGORIES= devel tcl
|
||||||
MASTER_SITES= http://download.gna.org/tclmore/0.7/
|
MASTER_SITES= http://download.gna.org/tclmore/0.7/
|
||||||
DISTNAME= ${PORTNAME}_${PORTVERSION}_src
|
DISTNAME= ${PORTNAME}_${PORTVERSION}_src
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= tclreadline
|
PORTNAME= tclreadline
|
||||||
PORTVERSION= 2.1.0
|
PORTVERSION= 2.1.0
|
||||||
PORTREVISION= 2
|
PORTREVISION= 3
|
||||||
CATEGORIES= devel tcl
|
CATEGORIES= devel tcl
|
||||||
MASTER_SITES= SF/tclreadline
|
MASTER_SITES= SF/tclreadline
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= thread
|
PORTNAME= thread
|
||||||
PORTVERSION= 2.6.5
|
PORTVERSION= 2.6.5
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= devel tcl
|
CATEGORIES= devel tcl
|
||||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||||
MASTER_SITE_SUBDIR= tcl
|
MASTER_SITE_SUBDIR= tcl
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= tcltls
|
PORTNAME= tcltls
|
||||||
PORTVERSION= 1.6
|
PORTVERSION= 1.6
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= devel tcl
|
CATEGORIES= devel tcl
|
||||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||||
MASTER_SITE_SUBDIR=tls
|
MASTER_SITE_SUBDIR=tls
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= tclxml
|
PORTNAME= tclxml
|
||||||
PORTVERSION= 3.1
|
PORTVERSION= 3.1
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= devel tcl
|
CATEGORIES= devel tcl
|
||||||
MASTER_SITES= SF
|
MASTER_SITES= SF
|
||||||
MASTER_SITE_SUBDIR= tclxml
|
MASTER_SITE_SUBDIR= tclxml
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= tkp4
|
PORTNAME= tkp4
|
||||||
PORTVERSION= 1.12
|
PORTVERSION= 1.12
|
||||||
PORTREVISION= 1
|
PORTREVISION= 2
|
||||||
CATEGORIES= devel tk
|
CATEGORIES= devel tk
|
||||||
MASTER_SITES= http://www.timshel.ca/tkp4/
|
MASTER_SITES= http://www.timshel.ca/tkp4/
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= ztcl
|
PORTNAME= ztcl
|
||||||
DISTVERSION= 1.0b4
|
DISTVERSION= 1.0b4
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= devel tcl
|
CATEGORIES= devel tcl
|
||||||
MASTER_SITES= http://download.gna.org/ztcl/1.0/
|
MASTER_SITES= http://download.gna.org/ztcl/1.0/
|
||||||
DISTNAME= ${PORTNAME}_${DISTVERSION}_src
|
DISTNAME= ${PORTNAME}_${DISTVERSION}_src
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= vigor
|
PORTNAME= vigor
|
||||||
PORTVERSION= 0.016
|
PORTVERSION= 0.016
|
||||||
PORTREVISION= 3
|
PORTREVISION= 4
|
||||||
CATEGORIES= editors tcl tk
|
CATEGORIES= editors tcl tk
|
||||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||||
MASTER_SITE_SUBDIR= ${PORTNAME}
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||||
|
|
|
@ -10,7 +10,7 @@ PORTNAME?= vim
|
||||||
PATCHLEVEL= 106
|
PATCHLEVEL= 106
|
||||||
PORTVERSION= 7.2.${PATCHLEVEL}
|
PORTVERSION= 7.2.${PATCHLEVEL}
|
||||||
RELEASE= vim-${PORTVERSION:C/\.[0-9a-z]*$//}
|
RELEASE= vim-${PORTVERSION:C/\.[0-9a-z]*$//}
|
||||||
PORTREVISION?= 0
|
PORTREVISION?= 1
|
||||||
CATEGORIES?= editors
|
CATEGORIES?= editors
|
||||||
MASTER_SITES= ${MASTER_SITE_VIM}
|
MASTER_SITES= ${MASTER_SITE_VIM}
|
||||||
DISTFILES= ${RELEASE}${EXTRACT_SUFX}
|
DISTFILES= ${RELEASE}${EXTRACT_SUFX}
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= bsvc
|
PORTNAME= bsvc
|
||||||
PORTVERSION= 2.1
|
PORTVERSION= 2.1
|
||||||
PORTREVISION= 2
|
PORTREVISION= 3
|
||||||
CATEGORIES= emulators tk
|
CATEGORIES= emulators tk
|
||||||
MASTER_SITES= ${MASTER_SITE_SUNSITE}
|
MASTER_SITES= ${MASTER_SITE_SUNSITE}
|
||||||
MASTER_SITE_SUBDIR= system/emulators
|
MASTER_SITE_SUBDIR= system/emulators
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= tkhfs
|
PORTNAME= tkhfs
|
||||||
PORTVERSION= 1.27
|
PORTVERSION= 1.27
|
||||||
PORTREVISION= 2
|
PORTREVISION= 3
|
||||||
CATEGORIES= emulators tk
|
CATEGORIES= emulators tk
|
||||||
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
||||||
MASTER_SITE_SUBDIR= jmz
|
MASTER_SITE_SUBDIR= jmz
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= 8kingdoms
|
PORTNAME= 8kingdoms
|
||||||
PORTVERSION= 1.1.0
|
PORTVERSION= 1.1.0
|
||||||
PORTREVISION= 1
|
PORTREVISION= 2
|
||||||
CATEGORIES= games
|
CATEGORIES= games
|
||||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||||
MASTER_SITE_SUBDIR=kralovstvi
|
MASTER_SITE_SUBDIR=kralovstvi
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= awale
|
PORTNAME= awale
|
||||||
PORTVERSION= 1.3
|
PORTVERSION= 1.3
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= games
|
CATEGORIES= games
|
||||||
MASTER_SITES= SAVANNAH CENKES
|
MASTER_SITES= SAVANNAH CENKES
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= dontspace
|
PORTNAME= dontspace
|
||||||
PORTVERSION= 1.2
|
PORTVERSION= 1.2
|
||||||
PORTREVISION= 2
|
PORTREVISION= 3
|
||||||
CATEGORIES= games tk
|
CATEGORIES= games tk
|
||||||
MASTER_SITES= http://www.isi.edu/~johnh/SOFTWARE/JACOBY/
|
MASTER_SITES= http://www.isi.edu/~johnh/SOFTWARE/JACOBY/
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= etracer
|
PORTNAME= etracer
|
||||||
PORTVERSION= 0.4
|
PORTVERSION= 0.4
|
||||||
PORTREVISION= 2
|
PORTREVISION= 3
|
||||||
CATEGORIES= games
|
CATEGORIES= games
|
||||||
MASTER_SITES= SF/extremetuxracer
|
MASTER_SITES= SF/extremetuxracer
|
||||||
DISTNAME= extremetuxracer-${PORTVERSION}
|
DISTNAME= extremetuxracer-${PORTVERSION}
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= ezquake
|
PORTNAME= ezquake
|
||||||
PORTVERSION= 1.9
|
PORTVERSION= 1.9
|
||||||
PORTEPOCH= 1
|
PORTEPOCH= 2
|
||||||
CATEGORIES= games
|
CATEGORIES= games
|
||||||
MASTER_SITES= SF:ezquake \
|
MASTER_SITES= SF:ezquake \
|
||||||
http://www.winimage.com/zLibDll/:minizip
|
http://www.winimage.com/zLibDll/:minizip
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= klondike
|
PORTNAME= klondike
|
||||||
PORTVERSION= 1.9
|
PORTVERSION= 1.9
|
||||||
PORTREVISION= 2
|
PORTREVISION= 3
|
||||||
CATEGORIES= games tk
|
CATEGORIES= games tk
|
||||||
MASTER_SITES= http://www.isi.edu/~johnh/SOFTWARE/JACOBY/
|
MASTER_SITES= http://www.isi.edu/~johnh/SOFTWARE/JACOBY/
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
PORTNAME= scid
|
PORTNAME= scid
|
||||||
PORTVERSION= 3.6.26
|
PORTVERSION= 3.6.26
|
||||||
PORTREVISION= 1
|
PORTREVISION= 2
|
||||||
CATEGORIES= games databases
|
CATEGORIES= games databases
|
||||||
MASTER_SITES= SF
|
MASTER_SITES= SF
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= tkmoo
|
PORTNAME= tkmoo
|
||||||
PORTVERSION= 0.3.32
|
PORTVERSION= 0.3.32
|
||||||
PORTREVISION= 2
|
PORTREVISION= 3
|
||||||
CATEGORIES= games tk
|
CATEGORIES= games tk
|
||||||
MASTER_SITES= http://www.awns.com/tkMOO-light/Source/
|
MASTER_SITES= http://www.awns.com/tkMOO-light/Source/
|
||||||
DISTNAME= tkMOO-light-${PORTVERSION}
|
DISTNAME= tkMOO-light-${PORTVERSION}
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= xconq
|
PORTNAME= xconq
|
||||||
PORTVERSION= 7.4.1
|
PORTVERSION= 7.4.1
|
||||||
PORTREVISION= 6
|
PORTREVISION= 7
|
||||||
CATEGORIES= games tcl tk
|
CATEGORIES= games tcl tk
|
||||||
MASTER_SITES= ftp://sources.redhat.com/pub/xconq/ \
|
MASTER_SITES= ftp://sources.redhat.com/pub/xconq/ \
|
||||||
ftp://unix.hensa.ac.uk/mirrors/sources.redhat.com/pub/xconq/
|
ftp://unix.hensa.ac.uk/mirrors/sources.redhat.com/pub/xconq/
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= nsgd
|
PORTNAME= nsgd
|
||||||
PORTVERSION= 2.0
|
PORTVERSION= 2.0
|
||||||
PORTREVISION= 4
|
PORTREVISION= 5
|
||||||
CATEGORIES= graphics www
|
CATEGORIES= graphics www
|
||||||
MASTER_SITES= http://www.aolserver.cz/download/
|
MASTER_SITES= http://www.aolserver.cz/download/
|
||||||
PKGNAMEPREFIX= aolserver-
|
PKGNAMEPREFIX= aolserver-
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= gocr
|
PORTNAME= gocr
|
||||||
PORTVERSION= 0.46
|
PORTVERSION= 0.46
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= graphics
|
CATEGORIES= graphics
|
||||||
MASTER_SITES= SF/jocr
|
MASTER_SITES= SF/jocr
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= graphviz
|
PORTNAME= graphviz
|
||||||
PORTVERSION= 2.20.3
|
PORTVERSION= 2.20.3
|
||||||
PORTREVISION= 2
|
PORTREVISION= 3
|
||||||
CATEGORIES= graphics tk
|
CATEGORIES= graphics tk
|
||||||
MASTER_SITES= http://www.graphviz.org/pub/graphviz/ARCHIVE/ \
|
MASTER_SITES= http://www.graphviz.org/pub/graphviz/ARCHIVE/ \
|
||||||
http://mirror.inerd.com/FreeBSD/distfiles/${PORTNAME}/
|
http://mirror.inerd.com/FreeBSD/distfiles/${PORTNAME}/
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= tkpng
|
PORTNAME= tkpng
|
||||||
PORTVERSION= 0.9
|
PORTVERSION= 0.9
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= graphics tk
|
CATEGORIES= graphics tk
|
||||||
MASTER_SITES= SF
|
MASTER_SITES= SF
|
||||||
DISTNAME= ${PORTNAME}${PORTVERSION}
|
DISTNAME= ${PORTNAME}${PORTVERSION}
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= eggdrop
|
PORTNAME= eggdrop
|
||||||
PORTVERSION= 1.6.19
|
PORTVERSION= 1.6.19
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= irc
|
CATEGORIES= irc
|
||||||
MASTER_SITES= ftp://ftp.eggheads.org/pub/eggdrop/source/1.6/ \
|
MASTER_SITES= ftp://ftp.eggheads.org/pub/eggdrop/source/1.6/ \
|
||||||
LOCAL/beech
|
LOCAL/beech
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= quirc
|
PORTNAME= quirc
|
||||||
PORTVERSION= 0.9.84
|
PORTVERSION= 0.9.84
|
||||||
PORTREVISION= 4
|
PORTREVISION= 5
|
||||||
CATEGORIES= irc tk
|
CATEGORIES= irc tk
|
||||||
MASTER_SITES= ${MASTER_SITE_LOCAL:S/$/:local/}
|
MASTER_SITES= ${MASTER_SITE_LOCAL:S/$/:local/}
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= roxirc
|
PORTNAME= roxirc
|
||||||
PORTVERSION= 2.0
|
PORTVERSION= 2.0
|
||||||
PORTREVISION= 1
|
PORTREVISION= 2
|
||||||
CATEGORIES= irc tk
|
CATEGORIES= irc tk
|
||||||
MASTER_SITES= http://roxirc.lighter.net/download/
|
MASTER_SITES= http://roxirc.lighter.net/download/
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= tkirc
|
PORTNAME= tkirc
|
||||||
PORTVERSION= 2.46
|
PORTVERSION= 2.46
|
||||||
PORTREVISION= 2
|
PORTREVISION= 3
|
||||||
CATEGORIES= irc tk
|
CATEGORIES= irc tk
|
||||||
MASTER_SITES= http://netsplit.de/tkirc2/
|
MASTER_SITES= http://netsplit.de/tkirc2/
|
||||||
DISTNAME= ${PORTNAME}${PORTVERSION}
|
DISTNAME= ${PORTNAME}${PORTVERSION}
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= bookview
|
PORTNAME= bookview
|
||||||
PORTVERSION= 3.2.1
|
PORTVERSION= 3.2.1
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= japanese
|
CATEGORIES= japanese
|
||||||
MASTER_SITES= ftp://ftp.sra.co.jp/pub/net/ndtp/bookview/ \
|
MASTER_SITES= ftp://ftp.sra.co.jp/pub/net/ndtp/bookview/ \
|
||||||
ftp://ftp.eos.hokudai.ac.jp/pub/net/ndtp/bookview/
|
ftp://ftp.eos.hokudai.ac.jp/pub/net/ndtp/bookview/
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= erlang
|
PORTNAME= erlang
|
||||||
PORTVERSION= r12b5
|
PORTVERSION= r12b5
|
||||||
PORTREVISION= 2
|
PORTREVISION= 3
|
||||||
PORTEPOCH= 1
|
PORTEPOCH= 1
|
||||||
CATEGORIES= lang parallel java
|
CATEGORIES= lang parallel java
|
||||||
MASTER_SITES= http://www.erlang.org/download/ \
|
MASTER_SITES= http://www.erlang.org/download/ \
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= erlang
|
PORTNAME= erlang
|
||||||
PORTVERSION= r12b5
|
PORTVERSION= r12b5
|
||||||
PORTREVISION= 2
|
PORTREVISION= 3
|
||||||
PORTEPOCH= 1
|
PORTEPOCH= 1
|
||||||
CATEGORIES= lang parallel java
|
CATEGORIES= lang parallel java
|
||||||
MASTER_SITES= http://www.erlang.org/download/ \
|
MASTER_SITES= http://www.erlang.org/download/ \
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
|
|
||||||
PORTNAME= expect
|
PORTNAME= expect
|
||||||
PORTVERSION= 5.44.1.11
|
PORTVERSION= 5.44.1.11
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= lang tcl tk
|
CATEGORIES= lang tcl tk
|
||||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||||
MASTER_SITE_SUBDIR= wintcltk
|
MASTER_SITE_SUBDIR= wintcltk
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
|
|
||||||
PORTNAME= ocs
|
PORTNAME= ocs
|
||||||
PORTVERSION= 2.3k
|
PORTVERSION= 2.3k
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= lang
|
CATEGORIES= lang
|
||||||
MASTER_SITES= http://uebb.cs.tu-berlin.de/opal/
|
MASTER_SITES= http://uebb.cs.tu-berlin.de/opal/
|
||||||
DISTNAME= ${PORTNAME}-${PORTVERSION}-src
|
DISTNAME= ${PORTNAME}-${PORTVERSION}-src
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= Tcl
|
PORTNAME= Tcl
|
||||||
PORTVERSION= 0.97
|
PORTVERSION= 0.97
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= lang perl5
|
CATEGORIES= lang perl5
|
||||||
MASTER_SITES= CPAN
|
MASTER_SITES= CPAN
|
||||||
PKGNAMEPREFIX= p5-
|
PKGNAMEPREFIX= p5-
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= wrapper
|
PORTNAME= wrapper
|
||||||
PORTVERSION= 1.1
|
PORTVERSION= 1.1
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= lang tcl
|
CATEGORIES= lang tcl
|
||||||
MASTER_SITES= # empty
|
MASTER_SITES= # empty
|
||||||
PKGNAMEPREFIX= ${TX_PORT}-
|
PKGNAMEPREFIX= ${TX_PORT}-
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= xotcl
|
PORTNAME= xotcl
|
||||||
PORTVERSION= 1.6.2
|
PORTVERSION= 1.6.2
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES?= lang tcl
|
CATEGORIES?= lang tcl
|
||||||
MASTER_SITES= SF \
|
MASTER_SITES= SF \
|
||||||
http://media.wu-wien.ac.at/download/
|
http://media.wu-wien.ac.at/download/
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= maxima
|
PORTNAME= maxima
|
||||||
PORTVERSION= 5.17.1
|
PORTVERSION= 5.17.1
|
||||||
PORTREVISION= 1
|
PORTREVISION= 2
|
||||||
CATEGORIES= math tk
|
CATEGORIES= math tk
|
||||||
MASTER_SITES= SF
|
MASTER_SITES= SF
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= octave-forge-tcl-octave
|
PORTNAME= octave-forge-tcl-octave
|
||||||
PORTVERSION= 0.1.7
|
PORTVERSION= 0.1.7
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= math
|
CATEGORIES= math
|
||||||
|
|
||||||
MAINTAINER= stephen@math.missouri.edu
|
MAINTAINER= stephen@math.missouri.edu
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
|
|
||||||
PORTNAME= matplotlib
|
PORTNAME= matplotlib
|
||||||
PORTVERSION= 0.98.3
|
PORTVERSION= 0.98.3
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= math python
|
CATEGORIES= math python
|
||||||
MASTER_SITES= SF
|
MASTER_SITES= SF
|
||||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
|
|
||||||
PORTNAME= vtk
|
PORTNAME= vtk
|
||||||
PORTVERSION= 5.0.4
|
PORTVERSION= 5.0.4
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= math graphics
|
CATEGORIES= math graphics
|
||||||
MASTER_SITES= http://www.vtk.org/files/release/5.0/ \
|
MASTER_SITES= http://www.vtk.org/files/release/5.0/ \
|
||||||
http://www.neuro.mcw.edu/Ports/distfiles/VTK5/
|
http://www.neuro.mcw.edu/Ports/distfiles/VTK5/
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= rat
|
PORTNAME= rat
|
||||||
PORTVERSION= 4.2.25
|
PORTVERSION= 4.2.25
|
||||||
PORTREVISION= 3
|
PORTREVISION= 4
|
||||||
CATEGORIES= mbone audio ipv6 tk
|
CATEGORIES= mbone audio ipv6 tk
|
||||||
MASTER_SITES= http://www-mice.cs.ucl.ac.uk/multimedia/software/rat/releases/${PORTVERSION}/ \
|
MASTER_SITES= http://www-mice.cs.ucl.ac.uk/multimedia/software/rat/releases/${PORTVERSION}/ \
|
||||||
http://www.icir.org/hodson/ucl-mirror/
|
http://www.icir.org/hodson/ucl-mirror/
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= ewipe
|
PORTNAME= ewipe
|
||||||
PORTVERSION= 1.2.0
|
PORTVERSION= 1.2.0
|
||||||
PORTREVISION= 2
|
PORTREVISION= 3
|
||||||
CATEGORIES?= misc tk
|
CATEGORIES?= misc tk
|
||||||
MASTER_SITES= http://www.jnet-jp.to/~sekisita/ewipe/ \
|
MASTER_SITES= http://www.jnet-jp.to/~sekisita/ewipe/ \
|
||||||
http://www.carpetsmoker.net/distfiles/ \
|
http://www.carpetsmoker.net/distfiles/ \
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= tkregexp
|
PORTNAME= tkregexp
|
||||||
PORTVERSION= 3.0
|
PORTVERSION= 3.0
|
||||||
PORTREVISION= 2
|
PORTREVISION= 3
|
||||||
CATEGORIES= misc tk
|
CATEGORIES= misc tk
|
||||||
MASTER_SITES= http://laurent.riesterer.free.fr/regexp/
|
MASTER_SITES= http://laurent.riesterer.free.fr/regexp/
|
||||||
DISTNAME= visual_regexp-${PORTVERSION}
|
DISTNAME= visual_regexp-${PORTVERSION}
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= tkxanim
|
PORTNAME= tkxanim
|
||||||
PORTVERSION= 0.43
|
PORTVERSION= 0.43
|
||||||
PORTREVISION= 2
|
PORTREVISION= 3
|
||||||
CATEGORIES= multimedia tk
|
CATEGORIES= multimedia tk
|
||||||
MASTER_SITES= http://freshmeat.net/redir/tkxanim/10652/url_tgz/ \
|
MASTER_SITES= http://freshmeat.net/redir/tkxanim/10652/url_tgz/ \
|
||||||
http://freebsd.unixfreunde.de/sources/
|
http://freebsd.unixfreunde.de/sources/
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= ipacco
|
PORTNAME= ipacco
|
||||||
PORTVERSION= 0.2.0.1
|
PORTVERSION= 0.2.0.1
|
||||||
PORTREVISION= 4
|
PORTREVISION= 5
|
||||||
CATEGORIES= net-mgmt www
|
CATEGORIES= net-mgmt www
|
||||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||||
MASTER_SITE_SUBDIR= ipacco
|
MASTER_SITE_SUBDIR= ipacco
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
PORTNAME= OpenVerse
|
PORTNAME= OpenVerse
|
||||||
PORTVERSION= 0.8.7
|
PORTVERSION= 0.8.7
|
||||||
PORTREVISION= 2
|
PORTREVISION= 3
|
||||||
CATEGORIES= net tcl tk
|
CATEGORIES= net tcl tk
|
||||||
MASTER_SITES= http://www.openverse.com/files/OpenVerse/
|
MASTER_SITES= http://www.openverse.com/files/OpenVerse/
|
||||||
DISTNAME= ${PORTNAME}-0.8-7
|
DISTNAME= ${PORTNAME}-0.8-7
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= tcludp
|
PORTNAME= tcludp
|
||||||
PORTVERSION= 1.0.8
|
PORTVERSION= 1.0.8
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= net tcl
|
CATEGORIES= net tcl
|
||||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||||
MASTER_SITE_SUBDIR=tcludp
|
MASTER_SITE_SUBDIR=tcludp
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= tcpillust
|
PORTNAME= tcpillust
|
||||||
PORTVERSION= 2.01a
|
PORTVERSION= 2.01a
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= net tcl tk
|
CATEGORIES= net tcl tk
|
||||||
MASTER_SITES= http://www.jp.nishida.org/tcpillust/
|
MASTER_SITES= http://www.jp.nishida.org/tcpillust/
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= omnetpp
|
PORTNAME= omnetpp
|
||||||
PORTVERSION= 3.3
|
PORTVERSION= 3.3
|
||||||
PORTREVISION= 1
|
PORTREVISION= 2
|
||||||
CATEGORIES= science
|
CATEGORIES= science
|
||||||
MASTER_SITES= http://www.omnetpp.org/download/release/
|
MASTER_SITES= http://www.omnetpp.org/download/release/
|
||||||
DISTNAME= ${PORTNAME}-${PORTVERSION}-src
|
DISTNAME= ${PORTNAME}-${PORTVERSION}-src
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= nsmcrypt
|
PORTNAME= nsmcrypt
|
||||||
PORTVERSION= 1.1
|
PORTVERSION= 1.1
|
||||||
PORTREVISION= 2
|
PORTREVISION= 3
|
||||||
CATEGORIES= security www
|
CATEGORIES= security www
|
||||||
MASTER_SITES= http://www.aolserver.cz/download/
|
MASTER_SITES= http://www.aolserver.cz/download/
|
||||||
PKGNAMEPREFIX= aolserver-
|
PKGNAMEPREFIX= aolserver-
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= nsmhash
|
PORTNAME= nsmhash
|
||||||
PORTVERSION= 1.1
|
PORTVERSION= 1.1
|
||||||
PORTREVISION= 1
|
PORTREVISION= 2
|
||||||
CATEGORIES= security www
|
CATEGORIES= security www
|
||||||
MASTER_SITES= http://www.aolserver.cz/download/
|
MASTER_SITES= http://www.aolserver.cz/download/
|
||||||
PKGNAMEPREFIX= aolserver-
|
PKGNAMEPREFIX= aolserver-
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= gorilla
|
PORTNAME= gorilla
|
||||||
PORTVERSION= 1.4
|
PORTVERSION= 1.4
|
||||||
PORTREVISION= 2
|
PORTREVISION= 3
|
||||||
CATEGORIES= security
|
CATEGORIES= security
|
||||||
MASTER_SITES= http://www.fpx.de/fp/Software/Gorilla/download/
|
MASTER_SITES= http://www.fpx.de/fp/Software/Gorilla/download/
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= tclsasl
|
PORTNAME= tclsasl
|
||||||
PORTVERSION= 1.0
|
PORTVERSION= 1.0
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= security tcl
|
CATEGORIES= security tcl
|
||||||
MASTER_SITES= http://beepcore-tcl.sourceforge.net/
|
MASTER_SITES= http://beepcore-tcl.sourceforge.net/
|
||||||
EXTRACT_SUFX= .tgz
|
EXTRACT_SUFX= .tgz
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= LPRngTool
|
PORTNAME= LPRngTool
|
||||||
PORTVERSION= 1.3.2
|
PORTVERSION= 1.3.2
|
||||||
PORTREVISION= 1
|
PORTREVISION= 2
|
||||||
CATEGORIES= sysutils print
|
CATEGORIES= sysutils print
|
||||||
MASTER_SITES= ftp://ftp.lprng.com/pub/%SUBDIR%/ \
|
MASTER_SITES= ftp://ftp.lprng.com/pub/%SUBDIR%/ \
|
||||||
ftp://ftp.cise.ufl.edu/pub/mirrors/%SUBDIR%/ \
|
ftp://ftp.cise.ufl.edu/pub/mirrors/%SUBDIR%/ \
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= lavaps
|
PORTNAME= lavaps
|
||||||
PORTVERSION= 2.7
|
PORTVERSION= 2.7
|
||||||
PORTREVISION= 4
|
PORTREVISION= 5
|
||||||
CATEGORIES= sysutils
|
CATEGORIES= sysutils
|
||||||
MASTER_SITES= http://www.isi.edu/~johnh/SOFTWARE/LAVAPS/
|
MASTER_SITES= http://www.isi.edu/~johnh/SOFTWARE/LAVAPS/
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= tclsyslog
|
PORTNAME= tclsyslog
|
||||||
PORTVERSION= 2.1
|
PORTVERSION= 2.1
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= sysutils tcl
|
CATEGORIES= sysutils tcl
|
||||||
MASTER_SITES= http://ftp.wagner.pp.ru/pub/tcl/tclsyslog/
|
MASTER_SITES= http://ftp.wagner.pp.ru/pub/tcl/tclsyslog/
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= tkdvd
|
PORTNAME= tkdvd
|
||||||
PORTVERSION= 4.0.9
|
PORTVERSION= 4.0.9
|
||||||
PORTREVISION= 1
|
PORTREVISION= 2
|
||||||
CATEGORIES= sysutils
|
CATEGORIES= sysutils
|
||||||
MASTER_SITES= http://regis.damongeot.free.fr/tkdvd/dl/ \
|
MASTER_SITES= http://regis.damongeot.free.fr/tkdvd/dl/ \
|
||||||
http://mirror.amdmi3.ru/
|
http://mirror.amdmi3.ru/
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= catdoc
|
PORTNAME= catdoc
|
||||||
PORTVERSION= 0.94.2
|
PORTVERSION= 0.94.2
|
||||||
PORTREVISION= 1
|
PORTREVISION= 2
|
||||||
CATEGORIES= textproc
|
CATEGORIES= textproc
|
||||||
MASTER_SITES= http://mirror.amdmi3.ru/ \
|
MASTER_SITES= http://mirror.amdmi3.ru/ \
|
||||||
${MASTER_SITE_LOCAL:S|%SUBDIR%|amdmi3|} \
|
${MASTER_SITE_LOCAL:S|%SUBDIR%|amdmi3|} \
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= cost
|
PORTNAME= cost
|
||||||
PORTVERSION= 2.2p1
|
PORTVERSION= 2.2p1
|
||||||
PORTREVISION= 1
|
PORTREVISION= 2
|
||||||
CATEGORIES= textproc tcl
|
CATEGORIES= textproc tcl
|
||||||
MASTER_SITES= http://www.flightlab.com/~joe/cost/
|
MASTER_SITES= http://www.flightlab.com/~joe/cost/
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= msort
|
PORTNAME= msort
|
||||||
PORTVERSION= 8.52
|
PORTVERSION= 8.52
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= textproc
|
CATEGORIES= textproc
|
||||||
MASTER_SITES= http://billposer.org/Software/Downloads/
|
MASTER_SITES= http://billposer.org/Software/Downloads/
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= WordNet
|
PORTNAME= WordNet
|
||||||
PORTVERSION= 3.0
|
PORTVERSION= 3.0
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= textproc
|
CATEGORIES= textproc
|
||||||
MASTER_SITES= ftp://ftp.cogsci.princeton.edu/pub/wordnet/${PORTVERSION}/ \
|
MASTER_SITES= ftp://ftp.cogsci.princeton.edu/pub/wordnet/${PORTVERSION}/ \
|
||||||
http://wordnet.princeton.edu/${PORTVERSION}/
|
http://wordnet.princeton.edu/${PORTVERSION}/
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
|
|
||||||
PORTNAME= xml2rfc
|
PORTNAME= xml2rfc
|
||||||
PORTVERSION= 1.33
|
PORTVERSION= 1.33
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= textproc
|
CATEGORIES= textproc
|
||||||
MASTER_SITES= http://xml.resource.org/authoring/
|
MASTER_SITES= http://xml.resource.org/authoring/
|
||||||
EXTRACT_SUFX= .tgz
|
EXTRACT_SUFX= .tgz
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= aolserver
|
PORTNAME= aolserver
|
||||||
PORTVERSION= 4.5.1
|
PORTVERSION= 4.5.1
|
||||||
|
PORTREVISION= 1
|
||||||
DISTVERSIONSUFFIX= -src
|
DISTVERSIONSUFFIX= -src
|
||||||
CATEGORIES= www
|
CATEGORIES= www
|
||||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= newsfeed
|
PORTNAME= newsfeed
|
||||||
PORTVERSION= 2.10
|
PORTVERSION= 2.10
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= www
|
CATEGORIES= www
|
||||||
MASTER_SITES= http://home.arcor.de/mdoege/newsfeed/
|
MASTER_SITES= http://home.arcor.de/mdoege/newsfeed/
|
||||||
DISTNAME= NewsFeed-${DISTVERSION}
|
DISTNAME= NewsFeed-${DISTVERSION}
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= tDOM
|
PORTNAME= tDOM
|
||||||
PORTVERSION= 0.8.2
|
PORTVERSION= 0.8.2
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= www
|
CATEGORIES= www
|
||||||
MASTER_SITES= http://www.tdom.org/files/
|
MASTER_SITES= http://www.tdom.org/files/
|
||||||
EXTRACT_SUFX= .tgz
|
EXTRACT_SUFX= .tgz
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= stopwatch
|
PORTNAME= stopwatch
|
||||||
PORTVERSION= 3.5
|
PORTVERSION= 3.5
|
||||||
PORTREVISION= 1
|
PORTREVISION= 2
|
||||||
CATEGORIES= x11-clocks
|
CATEGORIES= x11-clocks
|
||||||
MASTER_SITES= http://expect.nist.gov/stopwatch/
|
MASTER_SITES= http://expect.nist.gov/stopwatch/
|
||||||
DISTNAME= stopwatch
|
DISTNAME= stopwatch
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= bwidget
|
PORTNAME= bwidget
|
||||||
PORTVERSION= 1.8.0
|
PORTVERSION= 1.8.0
|
||||||
PORTREVISION= 1
|
PORTREVISION= 2
|
||||||
CATEGORIES= x11-toolkits
|
CATEGORIES= x11-toolkits
|
||||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||||
MASTER_SITE_SUBDIR= tcllib
|
MASTER_SITE_SUBDIR= tcllib
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= tktreectrl
|
PORTNAME= tktreectrl
|
||||||
PORTVERSION= 0.7
|
PORTVERSION= 0.7
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= x11-toolkits tk python
|
CATEGORIES= x11-toolkits tk python
|
||||||
MASTER_SITES= http://klappnase.bubble.org/TkinterTreectrl/ CENKES
|
MASTER_SITES= http://klappnase.bubble.org/TkinterTreectrl/ CENKES
|
||||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= tile
|
PORTNAME= tile
|
||||||
PORTVERSION= 0.8.2
|
PORTVERSION= 0.8.2
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= x11-toolkits tk
|
CATEGORIES= x11-toolkits tk
|
||||||
MASTER_SITES= SF/tktable
|
MASTER_SITES= SF/tktable
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
PORTNAME= tkdnd
|
PORTNAME= tkdnd
|
||||||
PORTVERSION= 1.0
|
PORTVERSION= 1.0
|
||||||
DISTVERSION= 1.0.20040304
|
DISTVERSION= 1.0.20040304
|
||||||
PORTREVISION= 2
|
PORTREVISION= 3
|
||||||
CATEGORIES= x11-toolkits tk
|
CATEGORIES= x11-toolkits tk
|
||||||
MASTER_SITES= CENKES
|
MASTER_SITES= CENKES
|
||||||
# Distfile prepared from SourceForge CVS
|
# Distfile prepared from SourceForge CVS
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue