Bug 184600 - New port: sysutils/diskimage-tools
Summary: New port: sysutils/diskimage-tools
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Pawel Pekala
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-12-08 19:20 UTC by Jason W. Bacon
Modified: 2013-12-19 13:00 UTC (History)
0 users

See Also:


Attachments
file.shar (2.39 KB, text/plain)
2013-12-08 19:20 UTC, Jason W. Bacon
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Jason W. Bacon freebsd_committer freebsd_triage 2013-12-08 19:20:01 UTC
Convenience tools for manipulating disk images such as ISOs and flash drive
install images.

WWW: http://acadix.biz/diskimage-tools.php

Fix: Patch attached with submission follows:
Comment 1 Pawel Pekala freebsd_committer freebsd_triage 2013-12-19 12:46:51 UTC
Responsible Changed
From-To: freebsd-ports-bugs->pawel

I'll take it.
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-12-19 12:57:26 UTC
Author: pawel
Date: Thu Dec 19 12:57:18 2013
New Revision: 336898
URL: http://svnweb.freebsd.org/changeset/ports/336898

Log:
  Convenience tools for manipulating disk images such as ISOs and flash drive
  install images.
  
  WWW: http://acadix.biz/diskimage-tools.php
  
  PR:		ports/184600
  Submitted by:	Jason Bacon <jwbacon@tds.net>

Added:
  head/sysutils/diskimage-tools/
  head/sysutils/diskimage-tools/Makefile   (contents, props changed)
  head/sysutils/diskimage-tools/distinfo   (contents, props changed)
  head/sysutils/diskimage-tools/pkg-descr   (contents, props changed)
  head/sysutils/diskimage-tools/pkg-plist   (contents, props changed)
Modified:
  head/sysutils/Makefile

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Thu Dec 19 12:57:03 2013	(r336897)
+++ head/sysutils/Makefile	Thu Dec 19 12:57:18 2013	(r336898)
@@ -181,6 +181,7 @@
     SUBDIR += dirdiff
     SUBDIR += dirvish
     SUBDIR += diskcheckd
+    SUBDIR += diskimage-tools
     SUBDIR += diskscrub
     SUBDIR += disktool
     SUBDIR += disktype

Added: head/sysutils/diskimage-tools/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/diskimage-tools/Makefile	Thu Dec 19 12:57:18 2013	(r336898)
@@ -0,0 +1,27 @@
+# Created by: Jason Bacon <jwbacon@tds.net>
+# $FreeBSD$
+
+PORTNAME=	diskimage-tools
+PORTVERSION=	0.1
+CATEGORIES=	sysutils
+MASTER_SITES=	http://acadix.biz/Ports/distfiles/ \
+		http://personalpages.tds.net/~jwbacon/Ports/distfiles/
+
+MAINTAINER=	jwbacon@tds.net
+COMMENT=	Convenience tools for manipulating disk images
+
+LICENSE=	BSD
+
+NO_BUILD=	yes
+USE_XZ=		yes
+
+do-install:
+	@${MKDIR} ${STAGEDIR}${PREFIX}/sbin
+	${INSTALL_SCRIPT} ${WRKSRC}/mount_cd9660_image \
+		${WRKSRC}/umount_cd9660_image ${WRKSRC}/img2dev \
+		${STAGEDIR}${PREFIX}/sbin
+	${INSTALL_MAN} ${WRKSRC}/mount_cd9660_image.1 \
+		${WRKSRC}/umount_cd9660_image.1 ${WRKSRC}/img2dev.1 \
+		${STAGEDIR}${MANPREFIX}/man/man1
+
+.include <bsd.port.mk>

Added: head/sysutils/diskimage-tools/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/diskimage-tools/distinfo	Thu Dec 19 12:57:18 2013	(r336898)
@@ -0,0 +1,2 @@
+SHA256 (diskimage-tools-0.1.tar.xz) = 4f0b6257fe7ea989adaff356c0e1ad6c1f1d206855164048aecb6174585f50b0
+SIZE (diskimage-tools-0.1.tar.xz) = 1748

Added: head/sysutils/diskimage-tools/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/diskimage-tools/pkg-descr	Thu Dec 19 12:57:18 2013	(r336898)
@@ -0,0 +1,4 @@
+Convenience tools for manipulating disk images such as ISOs and flash drive
+install images.
+
+WWW: http://acadix.biz/diskimage-tools.php

Added: head/sysutils/diskimage-tools/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/diskimage-tools/pkg-plist	Thu Dec 19 12:57:18 2013	(r336898)
@@ -0,0 +1,7 @@
+@comment Generated by sysutils/genplist
+sbin/img2dev
+sbin/mount_cd9660_image
+sbin/umount_cd9660_image
+man/man1/img2dev.1.gz
+man/man1/mount_cd9660_image.1.gz
+man/man1/umount_cd9660_image.1.gz
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Pawel Pekala freebsd_committer freebsd_triage 2013-12-19 12:57:54 UTC
State Changed
From-To: open->closed

Committed, with minor changes. Thanks!