aboutsummaryrefslogtreecommitdiff
path: root/devel/strace
diff options
context:
space:
mode:
authorMax Khon <fjoe@FreeBSD.org>2003-04-19 13:30:41 +0000
committerMax Khon <fjoe@FreeBSD.org>2003-04-19 13:30:41 +0000
commit8cd828c6b5ae7317067379523624b9476acb66c2 (patch)
treec597ba7c62afb1479c2f12a56785846cb09b3d5c /devel/strace
parent1a3ef4ae0a2ff35d658c8dbf31ce8ca21d06336d (diff)
downloadports-8cd828c6b5ae7317067379523624b9476acb66c2.tar.gz
ports-8cd828c6b5ae7317067379523624b9476acb66c2.zip
Update to 4.4.94.
PR: 50432 Submitted by: MAINTAINER
Notes
Notes: svn path=/head/; revision=79283
Diffstat (limited to 'devel/strace')
-rw-r--r--devel/strace/Makefile12
-rw-r--r--devel/strace/distinfo2
-rw-r--r--devel/strace/files/patch-configure45
-rw-r--r--devel/strace/files/patch-process.c13
-rw-r--r--devel/strace/pkg-descr5
-rw-r--r--devel/strace/pkg-plist2
6 files changed, 54 insertions, 25 deletions
diff --git a/devel/strace/Makefile b/devel/strace/Makefile
index 1b7e9d24c201..6a0130461905 100644
--- a/devel/strace/Makefile
+++ b/devel/strace/Makefile
@@ -6,27 +6,27 @@
#
PORTNAME= strace
-PORTVERSION= 4.4
+PORTVERSION= 4.4.94
CATEGORIES= devel sysutils
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
-DISTNAME= ${PORTNAME}_${PORTVERSION}-1
+USE_BZIP2= yes
MAINTAINER= alex@rinet.ru
COMMENT= A portable process tracer
-WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
-
GNU_CONFIGURE= yes
ONLY_FOR_ARCHS= i386
MAN1= strace.1
+check-umask:
+
do-install:
+ -${MKDIR} ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/strace ${PREFIX}/bin
${INSTALL_SCRIPT} ${WRKSRC}/strace-graph ${PREFIX}/bin
+ -${MKDIR} ${PREFIX}/man/man1
${INSTALL_MAN} ${WRKSRC}/strace.1 ${PREFIX}/man/man1
- ${MKDIR} ${PREFIX}/share/strace
- ${INSTALL_DATA} ${WRKSRC}/xlate.el ${PREFIX}/share/strace
.include <bsd.port.mk>
diff --git a/devel/strace/distinfo b/devel/strace/distinfo
index a03666806d6a..9486e8157a55 100644
--- a/devel/strace/distinfo
+++ b/devel/strace/distinfo
@@ -1 +1 @@
-MD5 (strace_4.4-1.tar.gz) = 7246ce73640760fa7e8357fd9ecf7af3
+MD5 (strace-4.4.94.tar.bz2) = 483890e6ea930f8c09ccae55121ca7ac
diff --git a/devel/strace/files/patch-configure b/devel/strace/files/patch-configure
new file mode 100644
index 000000000000..9c8b033da9c3
--- /dev/null
+++ b/devel/strace/files/patch-configure
@@ -0,0 +1,45 @@
+*** configure Thu Feb 20 05:55:30 2003
+--- /tmp/w/configure Tue Feb 25 14:47:53 2003
+***************
+*** 5602,5606 ****
+ cat >>conftest.$ac_ext <<_ACEOF
+ /* end confdefs.h. */
+! #include <netinet/in.h
+
+ int
+--- 5602,5607 ----
+ cat >>conftest.$ac_ext <<_ACEOF
+ /* end confdefs.h. */
+! #include <sys/types.h>
+! #include <netinet/in.h>
+
+ int
+***************
+*** 5638,5642 ****
+ cat >>conftest.$ac_ext <<_ACEOF
+ /* end confdefs.h. */
+! #include <netinet/in.h
+
+ int
+--- 5639,5644 ----
+ cat >>conftest.$ac_ext <<_ACEOF
+ /* end confdefs.h. */
+! #include <sys/types.h>
+! #include <netinet/in.h>
+
+ int
+***************
+*** 6490,6493 ****
+--- 6492,6496 ----
+ cat >>conftest.$ac_ext <<_ACEOF
+ /* end confdefs.h. */
++ #include <sys/types.h>
+ #include <netinet/in.h>
+
+***************
+*** 6749,6752 ****
+--- 6752,6756 ----
+ cat >>conftest.$ac_ext <<_ACEOF
+ /* end confdefs.h. */
++ #include <sys/types.h>
+ #include <sys/socket.h>
diff --git a/devel/strace/files/patch-process.c b/devel/strace/files/patch-process.c
deleted file mode 100644
index 41ffc61b48df..000000000000
--- a/devel/strace/files/patch-process.c
+++ /dev/null
@@ -1,13 +0,0 @@
---- process.c.old Thu Sep 27 22:08:22 2001
-+++ process.c Thu Sep 27 22:08:57 2001
-@@ -1771,7 +1771,9 @@
- { PT_READ_D, "PT_READ_D" },
- { PT_WRITE_I, "PT_WRITE_I" },
- { PT_WRITE_D, "PT_WRITE_D" },
-- { PT_READ_U, "PT_WRITE_U" },
-+#ifdef PT_READ_U
-+ { PT_READ_U, "PT_READ_U" },
-+#endif
- { PT_CONTINUE, "PT_CONTINUE" },
- { PT_KILL, "PT_KILL" },
- { PT_STEP, "PT_STEP" },
diff --git a/devel/strace/pkg-descr b/devel/strace/pkg-descr
index 3d271fb5f364..1fc66bb65d1b 100644
--- a/devel/strace/pkg-descr
+++ b/devel/strace/pkg-descr
@@ -5,7 +5,6 @@ process itself or a process and its descendants.
Strace is similar to the native BSD ``truss'' utility, but it's
output style is more convenient in most cases.
-WWW: http://www.liacs.nl/~wichert/strace/
+WWW: http://strace.sourceforge.net/
-- Alex Semenyaka
-alex@rinet.ru
+Maintains: Alex Semenyaka (alex@rinet.ru)
diff --git a/devel/strace/pkg-plist b/devel/strace/pkg-plist
index 687009593c07..6e32da3c5d88 100644
--- a/devel/strace/pkg-plist
+++ b/devel/strace/pkg-plist
@@ -1,4 +1,2 @@
bin/strace
bin/strace-graph
-share/strace/xlate.el
-@dirrm share/strace