mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-22 08:58:47 +00:00
Update to 0.2.6
PR: 31727 Reviewed by: maintainer
This commit is contained in:
parent
6c34c9e6f2
commit
97fccae1c1
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=52796
@ -6,22 +6,19 @@
|
||||
#
|
||||
|
||||
PORTNAME= pnet
|
||||
PORTVERSION= 0.1.8
|
||||
PORTVERSION= 0.2.6
|
||||
CATEGORIES= lang
|
||||
MASTER_SITES= http://www.southern-storm.com.au/download/
|
||||
|
||||
MAINTAINER= ahze@ahze.net
|
||||
|
||||
BUILD_DEPENDS= ${LOCALBASE}/bin/treecc:${PORTSDIR}/lang/treecc
|
||||
BUILD_DEPENDS= treecc:${PORTSDIR}/lang/treecc
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
USE_GMAKE= yes
|
||||
MAN1= ilasm.1 \
|
||||
ildasm.1 \
|
||||
ilsize.1 \
|
||||
ilnative.1 \
|
||||
ilfind.1 \
|
||||
cscc.1 \
|
||||
|
||||
MAN1= cscc.1 csdoc.1 csdoc2html.1 csdoc2texi.1 ilasm.1 \
|
||||
ildasm.1 ildiff.1 ilfind.1 ilnative.1 ilsize.1 \
|
||||
resgen.1
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1 +1 @@
|
||||
MD5 (pnet-0.1.8.tar.gz) = 1c115507ac57d51d20bd4b12f9b07198
|
||||
MD5 (pnet-0.2.6.tar.gz) = a044e93eafc636a467fbbb9835c41f38
|
||||
|
25
lang/pnet/files/patch-configure
Normal file
25
lang/pnet/files/patch-configure
Normal file
@ -0,0 +1,25 @@
|
||||
--- configure.orig Mon Nov 26 20:55:10 2001
|
||||
+++ configure Sun Dec 30 23:00:35 2001
|
||||
@@ -3739,20 +3739,9 @@
|
||||
# The recursion is here.
|
||||
if test -n "$ac_sub_configure"; then
|
||||
|
||||
- # Make the cache file name correct relative to the subdirectory.
|
||||
- case "$cache_file" in
|
||||
- /*) ac_sub_cache_file=$cache_file ;;
|
||||
- *) # Relative path.
|
||||
- ac_sub_cache_file="$ac_dots$cache_file" ;;
|
||||
- esac
|
||||
- case "$ac_given_INSTALL" in
|
||||
- [/$]*) INSTALL="$ac_given_INSTALL" ;;
|
||||
- *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
|
||||
- esac
|
||||
-
|
||||
- echo "running ${CONFIG_SHELL-/bin/sh} $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_sub_srcdir"
|
||||
+ echo "running ${CONFIG_SHELL-/bin/sh} $ac_sub_configure $ac_sub_configure_args --srcdir=$ac_sub_srcdir"
|
||||
# The eval makes quoting arguments work.
|
||||
- if eval ${CONFIG_SHELL-/bin/sh} $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_sub_srcdir
|
||||
+ if eval ${CONFIG_SHELL-/bin/sh} $ac_sub_configure $ac_sub_configure_args --srcdir=$ac_sub_srcdir
|
||||
then :
|
||||
else
|
||||
{ echo "configure: error: $ac_sub_configure failed for $ac_config_dir" 1>&2; exit 1; }
|
19
lang/pnet/files/patch-libgc::configure
Normal file
19
lang/pnet/files/patch-libgc::configure
Normal file
@ -0,0 +1,19 @@
|
||||
--- libgc/configure.orig Sun Dec 30 23:15:13 2001
|
||||
+++ libgc/configure Sun Dec 30 23:21:19 2001
|
||||
@@ -410,16 +410,6 @@
|
||||
-*) { echo "configure: error: $ac_option: invalid option; use --help to show usage" 1>&2; exit 1; }
|
||||
;;
|
||||
|
||||
- *)
|
||||
- if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
|
||||
- echo "configure: warning: $ac_option: invalid host type" 1>&2
|
||||
- fi
|
||||
- if test "x$nonopt" != xNONE; then
|
||||
- { echo "configure: error: can only configure for one host and one target at a time" 1>&2; exit 1; }
|
||||
- fi
|
||||
- nonopt="$ac_option"
|
||||
- ;;
|
||||
-
|
||||
esac
|
||||
done
|
||||
|
@ -1,32 +1,53 @@
|
||||
bin/csant
|
||||
bin/cscc
|
||||
bin/csdoc
|
||||
bin/csdoc2html
|
||||
bin/csdoc2texi
|
||||
bin/csdocvalil
|
||||
bin/ilalink
|
||||
bin/ilasm
|
||||
bin/ildasm
|
||||
bin/ilsize
|
||||
bin/ilnative
|
||||
bin/ildb
|
||||
bin/ildiff
|
||||
bin/ilfind
|
||||
bin/cscc
|
||||
bin/ilnative
|
||||
bin/ilrun
|
||||
bin/ilsize
|
||||
bin/ilverify
|
||||
bin/resgen
|
||||
include/pnet/il_coder.h
|
||||
include/pnet/il_config.h
|
||||
include/pnet/il_decimal.h
|
||||
include/pnet/il_dumpasm.h
|
||||
include/pnet/il_gc.h
|
||||
include/pnet/il_image.h
|
||||
include/pnet/il_jopcodes.h
|
||||
include/pnet/il_meta.h
|
||||
include/pnet/il_opcodes.h
|
||||
include/pnet/il_program.h
|
||||
include/pnet/il_serialize.h
|
||||
include/pnet/il_system.h
|
||||
include/pnet/il_types.h
|
||||
include/pnet/il_utils.h
|
||||
include/pnet/il_values.h
|
||||
include/pnet/il_writer.h
|
||||
include/pnet/il_xml.h
|
||||
lib/libILSupport.a
|
||||
lib/libILImage.a
|
||||
lib/libILDumpAsm.a
|
||||
lib/libILEngine.a
|
||||
lib/libILCodeGen.a
|
||||
info/pnettools.info
|
||||
info/pnettools.info-1
|
||||
info/pnettools.info-2
|
||||
info/pnettools.info-3
|
||||
info/pnettools.info-4
|
||||
lib/cscc/plugins/cscc-cs
|
||||
lib/cscc/plugins/cscc-csharp
|
||||
@dirrm include/pnet
|
||||
lib/libILCodeGen.a
|
||||
lib/libILDumpAsm.a
|
||||
lib/libILEngine.a
|
||||
lib/libILImage.a
|
||||
lib/libILLink.a
|
||||
lib/libILSupport.a
|
||||
lib/libgc.a
|
||||
lib/libgc.la
|
||||
lib/libgc.so.1
|
||||
@dirrm lib/cscc/plugins
|
||||
@dirrm lib/cscc
|
||||
@dirrm include/pnet
|
||||
|
Loading…
Reference in New Issue
Block a user