Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 22 Oct 2014 05:27:03 +0000 (UTC)
From:      Kurt Jaeger <pi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r371341 - in head/sysutils: . ciso-maker ciso-maker/files
Message-ID:  <201410220527.s9M5R3iw030597@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pi
Date: Wed Oct 22 05:27:03 2014
New Revision: 371341
URL: https://svnweb.freebsd.org/changeset/ports/371341
QAT: https://qat.redports.org/buildarchive/r371341/

Log:
  New port: sysutils/ciso-maker
  
  Tiny and easy to use tool to convert ISO images
  in CSO (compressed ISO) format. Based on CISO, but with bug fixes.
  
  WWW: http://github.com/laffer1/ciso-maker
  
  PR:		193609
  Submitted by:	Lucas Holt <luke@foolishgames.com>

Added:
  head/sysutils/ciso-maker/
  head/sysutils/ciso-maker/Makefile   (contents, props changed)
  head/sysutils/ciso-maker/distinfo   (contents, props changed)
  head/sysutils/ciso-maker/files/
  head/sysutils/ciso-maker/files/patch-Makefile   (contents, props changed)
  head/sysutils/ciso-maker/pkg-descr   (contents, props changed)
Modified:
  head/sysutils/Makefile

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Wed Oct 22 02:47:17 2014	(r371340)
+++ head/sysutils/Makefile	Wed Oct 22 05:27:03 2014	(r371341)
@@ -118,6 +118,7 @@
     SUBDIR += cfengine36-rc
     SUBDIR += chgrep
     SUBDIR += ciso
+    SUBDIR += ciso-maker
     SUBDIR += ck4up
     SUBDIR += clean
     SUBDIR += clockspeed

Added: head/sysutils/ciso-maker/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/ciso-maker/Makefile	Wed Oct 22 05:27:03 2014	(r371341)
@@ -0,0 +1,23 @@
+# Created by: Lucas Holt <luke@foolishgames.com>
+# $FreeBSD$
+
+PORTNAME=	ciso-maker
+PORTVERSION=	1.02
+CATEGORIES=	sysutils
+
+MAINTAINER=	luke@foolishgames.com
+COMMENT=	Tool to compress ISO images to CSO format
+
+LICENSE=	GPLv2 GPLv3
+LICENSE_COMB=	dual
+
+WRKSRC=		${WRKDIR}/laffer1-ciso-maker-fd80b04
+USE_GITHUB=	yes
+GH_PROJECT=	${PORTNAME}
+GH_ACCOUNT=	laffer1
+GH_TAGNAME=	${PORTVERSION}
+GH_COMMIT=	f7640f5
+
+PLIST_FILES=	bin/ciso-maker
+
+.include <bsd.port.mk>

Added: head/sysutils/ciso-maker/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/ciso-maker/distinfo	Wed Oct 22 05:27:03 2014	(r371341)
@@ -0,0 +1,2 @@
+SHA256 (ciso-maker-1.02.tar.gz) = 06d3fded243b32d78180602ee3fdf21502c8c281c5d64be1994797d8392ab923
+SIZE (ciso-maker-1.02.tar.gz) = 9633

Added: head/sysutils/ciso-maker/files/patch-Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/ciso-maker/files/patch-Makefile	Wed Oct 22 05:27:03 2014	(r371341)
@@ -0,0 +1,17 @@
+--- Makefile.orig	2014-09-13 15:12:12.000000000 +0000
++++ Makefile	2014-09-13 15:12:41.000000000 +0000
+@@ -1,13 +1,9 @@
+ DESTDIR= 
+ PREFIX=	/usr/local/
+-CC=	gcc
++CC?=	llvm
+ 
+ INSTALL = install
+ 
+-#.if ${CC} == "clang"
+-#CFLAGS+=	-Wno-format -Wno-tautological-compare
+-#.endif
+-
+ all : ciso-maker
+ ciso-maker : ciso.o
+ 	${CC} -o ciso-maker ciso.o -lz

Added: head/sysutils/ciso-maker/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/ciso-maker/pkg-descr	Wed Oct 22 05:27:03 2014	(r371341)
@@ -0,0 +1,6 @@
+ciso-maker - tiny and easy to use tool to convert ISO images
+in CSO (compressed ISO) format.
+
+Based on CISO, but with bug fixes.
+
+WWW: http://github.com/laffer1/ciso-maker



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