Skip site navigation (1)Skip section navigation (2)
Date:      Fri,  9 Jun 2000 22:51:58 -0700 (PDT)
From:      tkato@prontomail.ne.jp
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/19164: Update port: archivers/macutils
Message-ID:  <20000610055158.5280637BC13@hub.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         19164
>Category:       ports
>Synopsis:       Update port: archivers/macutils
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Fri Jun 09 23:00:01 PDT 2000
>Closed-Date:
>Last-Modified:
>Originator:     KATO Tsuguru
>Release:        4.0-RELEASE i386
>Organization:
>Environment:
>Description:
- Use MASTER_SITE_SUNSITE to MASTER_SITES
- Support CFLAGS/MAKE properly
- Sort pkg/PLIST

>How-To-Repeat:

>Fix:
diff -urN /usr/ports/archivers/macutils/Makefile archivers/macutils/Makefile
--- /usr/ports/archivers/macutils/Makefile	Wed Apr 12 13:55:33 2000
+++ archivers/macutils/Makefile	Sat Jun 10 12:59:31 2000
@@ -1,7 +1,6 @@
-# New ports collection makefile for:   macutils
+# New ports collection makefile for:	macutils
 # Date created:		14th April 1997
 # Whom:			Joel Sutton <jsutton@bbcon.com.au>
-# FreeBSD Version:	2.1.5-RELEASE
 #
 # $FreeBSD: ports/archivers/macutils/Makefile,v 1.8 2000/04/12 04:55:33 mharo Exp $
 #
@@ -9,14 +8,13 @@
 PORTNAME=	macutils
 PORTVERSION=	2.0b3
 CATEGORIES=	emulators
-MASTER_SITES=	ftp://sunsite.unc.edu/pub/Linux/distributions/debian/main/source/otherosfs/
-DISTNAME=	${PORTNAME}_${PORTVERSION}.orig
-# ${MASTER_SITE_SUNSITE} isn't appropriate because distributions/ isn't
-# mirrored.
+MASTER_SITES=	${MASTER_SITE_SUNSITE}
+MASTER_SITE_SUBDIR=	utils/compress
+DISTNAME=	${PORTNAME}
 
 MAINTAINER=	jsutton@bbcon.com.au
 
-WRKSRC=		${WRKDIR}/macutils
+WRKSRC=		${WRKDIR}/${PORTNAME}
 MAKEFILE=	makefile
 
 MAN1=		macunpack.1 hexbin.1 macsave.1 macstream.1 binhex.1 tomac.1 \
@@ -51,10 +49,10 @@
 	${INSTALL_MAN} ${WRKSRC}/man/macutil.1 ${MANPREFIX}/man/man1
 .if !defined(NOPORTDOCS)
 	@${ECHO_MSG} "===>  Installing supplementary documents..."
-	-${MKDIR} ${DOCDIR}/
-	for file in ${DOCFILES} ; do \
-	  ${INSTALL_DATA} ${WRKSRC}/doc/$$file ${DOCDIR}/ ;\
-	done
+	-${MKDIR} ${DOCDIR}
+.for file in ${DOCFILES}
+	${INSTALL_DATA} ${WRKSRC}/doc/${file} ${DOCDIR}/
+.endfor
 .endif
 
 .include <bsd.port.mk>
diff -urN /usr/ports/archivers/macutils/files/md5 archivers/macutils/files/md5
--- /usr/ports/archivers/macutils/files/md5	Fri Apr 16 17:08:01 1999
+++ archivers/macutils/files/md5	Sat Jun 10 13:01:19 2000
@@ -1 +1 @@
-MD5 (macutils_2.0b3.orig.tar.gz) = 4ff71b1634ea503398c33994458fbe40
+MD5 (macutils.tar.gz) = 4ff71b1634ea503398c33994458fbe40
diff -urN /usr/ports/archivers/macutils/patches/patch-aa archivers/macutils/patches/patch-aa
--- /usr/ports/archivers/macutils/patches/patch-aa	Fri Apr 16 17:08:01 1999
+++ archivers/macutils/patches/patch-aa	Sat Jun 10 13:35:22 2000
@@ -1,18 +1,83 @@
---- makefile.orig	Sat Oct  2 13:16:00 1993
-+++ makefile	Fri Apr 16 00:10:58 1999
+--- makefile.orig	Sun Oct  3 05:16:00 1993
++++ makefile	Sat Jun 10 13:35:16 2000
 @@ -1,5 +1,4 @@
--SHELL =	/bin/sh
+ SHELL =	/bin/sh
 -BINDIR =	/ufs/dik/tmpbin
-+SHELL =		/bin/sh
  # Use the following flags on the CF macro definition as needed.
  #
  # -DBSD if you are on a BSD system
-@@ -24,7 +23,7 @@
+@@ -24,44 +23,44 @@
  #
  # -DAPPLEDOUBLE if you want to be able to use an AppleDouble file system
  #
 -CF =	-DBSD -DTYPES_H -DDIRENT_H -DTERMIOS_H -DNODOT -DAPPLEDOUBLE
-+CF = -DBSD -DTYPES_H -DDIRENT_H -DTERMIOS_H -DAUFSPLUS ${CFLAGS}
++CF =	-DBSD -DTYPES_H -DDIRENT_H -DTERMIOS_H -DAUFSPLUS ${CFLAGS}
  
  all:
- 	(cd crc; make CF='$(CF)')
+-	(cd crc; make CF='$(CF)')
+-	(cd util; make CF='$(CF)')
+-	(cd fileio; make CF='$(CF)')
+-	(cd macunpack; make CF='$(CF)')
+-	(cd hexbin; make CF='$(CF)')
+-	(cd mixed; make CF='$(CF)')
+-	(cd binhex; make CF='$(CF)')
+-	(cd comm; make CF='$(CF)')
++	(cd crc; $(MAKE) CFLAGS='$(CF)')
++	(cd util; $(MAKE) CFLAGS='$(CF)')
++	(cd fileio; $(MAKE) CFLAGS='$(CF)')
++	(cd macunpack; $(MAKE) CFLAGS='$(CF)')
++	(cd hexbin; $(MAKE) CFLAGS='$(CF)')
++	(cd mixed; $(MAKE) CFLAGS='$(CF)')
++	(cd binhex; $(MAKE) CFLAGS='$(CF)')
++	(cd comm; $(MAKE) CFLAGS='$(CF)')
+ 
+ clean:
+-	(cd crc; make clean)
+-	(cd util; make clean)
+-	(cd fileio; make clean)
+-	(cd macunpack; make clean)
+-	(cd hexbin; make clean)
+-	(cd mixed; make clean)
+-	(cd binhex; make clean)
+-	(cd comm; make clean)
++	(cd crc; $(MAKE) clean)
++	(cd util; $(MAKE) clean)
++	(cd fileio; $(MAKE) clean)
++	(cd macunpack; $(MAKE) clean)
++	(cd hexbin; $(MAKE) clean)
++	(cd mixed; $(MAKE) clean)
++	(cd binhex; $(MAKE) clean)
++	(cd comm; $(MAKE) clean)
+ 
+ clobber:
+-	(cd crc; make clean)
+-	(cd util; make clean)
+-	(cd fileio; make clean)
+-	(cd macunpack; make clobber)
+-	(cd hexbin; make clobber)
+-	(cd mixed; make clobber)
+-	(cd binhex; make clobber)
+-	(cd comm; make clobber)
++	(cd crc; (MAKE) clean)
++	(cd util; (MAKE) clean)
++	(cd fileio; (MAKE) clean)
++	(cd macunpack; (MAKE) clobber)
++	(cd hexbin; (MAKE) clobber)
++	(cd mixed; (MAKE) clobber)
++	(cd binhex; (MAKE) clobber)
++	(cd comm; (MAKE) clobber)
+ 
+ lint:
+-	(cd macunpack; make CF='$(CF)' lint)
+-	(cd hexbin; make CF='$(CF)' lint)
+-	(cd mixed; make CF='$(CF)' lint)
+-	(cd binhex; make CF='$(CF)' lint)
+-	(cd comm; make CF='$(CF)' lint)
++	(cd macunpack; (MAKE) CFLAGS='$(CF)' lint)
++	(cd hexbin; (MAKE) CFLAGS='$(CF)' lint)
++	(cd mixed; (MAKE) CFLAGS='$(CF)' lint)
++	(cd binhex; (MAKE) CFLAGS='$(CF)' lint)
++	(cd comm; (MAKE) CFLAGS='$(CF)' lint)
+ 
+ install:
+ 	cp macunpack/macunpack $(BINDIR)/.
diff -urN /usr/ports/archivers/macutils/pkg/PLIST archivers/macutils/pkg/PLIST
--- /usr/ports/archivers/macutils/pkg/PLIST	Wed Jun 23 11:03:22 1999
+++ archivers/macutils/pkg/PLIST	Sat Jun 10 13:24:48 2000
@@ -1,10 +1,10 @@
-bin/macunpack
+bin/binhex
+bin/frommac
 bin/hexbin
 bin/macsave
 bin/macstream
-bin/binhex
+bin/macunpack
 bin/tomac
-bin/frommac
 share/doc/macutils/README
 share/doc/macutils/README.crc
 share/doc/macutils/README.crc.orig


>Release-Note:
>Audit-Trail:
>Unformatted:


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20000610055158.5280637BC13>