Index: head/sysutils/ddrescue/Makefile =================================================================== --- head/sysutils/ddrescue/Makefile (revision 289960) +++ head/sysutils/ddrescue/Makefile (revision 289961) @@ -1,39 +1,44 @@ # New ports collection makefile for: ddrescue # Date created: 16 August 2007 # Whom: Andrew Pantyukhin # # $FreeBSD$ # PORTNAME= ddrescue -PORTVERSION= 1.14 +PORTVERSION= 1.15 CATEGORIES= sysutils MASTER_SITES= GNU MAINTAINER= ports@FreeBSD.org COMMENT= Data recovery tool LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING HAS_CONFIGURE= yes CONFIGURE_ARGS= CC="${CC}" CXX="${CXX}" CFLAGS="${CFLAGS}" \ CXXFLAGS="${CXXFLAGS}" +MAKE_JOBS_SAFE= yes -MAN1= ${PORTNAME}.1 -INFO= ${PORTNAME} +MAN1= ddrescue.1 ddrescuelog.1 +INFO= ddrescue PORTDOCS= AUTHORS ChangeLog NEWS README -PLIST_FILES= bin/${PORTNAME} +PLIST_FILES= bin/ddrescue bin/ddrescuelog do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/doc/${PORTNAME}.1 ${MAN1PREFIX}/man/man1 - ${INSTALL_DATA} ${WRKSRC}/doc/${PORTNAME}.info ${PREFIX}/${INFO_PATH} +.for i in ddrescue ddrescuelog + ${INSTALL_PROGRAM} ${WRKSRC}/${i} ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/doc/${i}.1 ${MAN1PREFIX}/man/man1 +.endfor +.for i in ddrescue + ${INSTALL_DATA} ${WRKSRC}/doc/${i}.info ${PREFIX}/${INFO_PATH} +.endfor .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} .for file in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} .endfor .endif .include Property changes on: head/sysutils/ddrescue/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.10 \ No newline at end of property +1.11 \ No newline at end of property Index: head/sysutils/ddrescue/distinfo =================================================================== --- head/sysutils/ddrescue/distinfo (revision 289960) +++ head/sysutils/ddrescue/distinfo (revision 289961) @@ -1,2 +1,2 @@ -SHA256 (ddrescue-1.14.tar.gz) = cd17b92d64d68ecdef5a61ae17741d45c856a8c5f49e44fbf1f4381d29aaa906 -SIZE (ddrescue-1.14.tar.gz) = 85327 +SHA256 (ddrescue-1.15.tar.gz) = 75e01362005ba5b59a275edd9d012229b43e0b56533c2abb89d40a44d7ec2d78 +SIZE (ddrescue-1.15.tar.gz) = 99082 Property changes on: head/sysutils/ddrescue/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.10 \ No newline at end of property +1.11 \ No newline at end of property Index: head/sysutils/ddrescue/files/patch-Makefile.in =================================================================== --- head/sysutils/ddrescue/files/patch-Makefile.in (nonexistent) +++ head/sysutils/ddrescue/files/patch-Makefile.in (revision 289961) @@ -0,0 +1,23 @@ +--- Makefile.in.orig 2011-11-22 22:09:38.000000000 +0900 ++++ Makefile.in 2012-01-07 05:34:41.000000000 +0900 +@@ -18,16 +18,16 @@ + all : $(progname) ddrescuelog + + $(progname) : $(objs) +- $(CXX) $(LDFLAGS) -o $@ $^ ++ $(CXX) $(LDFLAGS) -o $@ $(objs) + + $(progname)_profiled : $(objs) +- $(CXX) $(LDFLAGS) -pg -o $@ $^ ++ $(CXX) $(LDFLAGS) -pg -o $@ $(objs) + + ddrescuelog : $(logobjs) +- $(CXX) $(LDFLAGS) -o $@ $^ ++ $(CXX) $(LDFLAGS) -o $@ $(logobjs) + + static_$(progname) : $(objs) +- $(CXX) $(LDFLAGS) -static -o $@ $^ ++ $(CXX) $(LDFLAGS) -static -o $@ $(objs) + + main.o : main.cc + $(CXX) $(CPPFLAGS) $(CXXFLAGS) -DPROGVERSION=\"$(pkgversion)\" -c -o $@ $< Property changes on: head/sysutils/ddrescue/files/patch-Makefile.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property