svn commit: r507065 - in head/sysutils: . boot-extract boot-extract/files

Kurt Jaeger pi at FreeBSD.org
Sun Jul 21 19:28:12 UTC 2019


Author: pi
Date: Sun Jul 21 19:28:10 2019
New Revision: 507065
URL: https://svnweb.freebsd.org/changeset/ports/507065

Log:
  New port: sysutils/boot-extract
  
  Utility to extract kernel and ramdisk from
  an Android boot or recovery image file
  
  WWW: https://github.com/csimmonds/boot-extract
  
  PR:		239206
  Submitted by:	Martin Filla <freebsd at sysctl.cz>

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

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Sun Jul 21 19:21:17 2019	(r507064)
+++ head/sysutils/Makefile	Sun Jul 21 19:28:10 2019	(r507065)
@@ -107,6 +107,7 @@
     SUBDIR += biosfont
     SUBDIR += bkpupsd
     SUBDIR += bksh
+    SUBDIR += boot-extract
     SUBDIR += boxbackup-devel
     SUBDIR += brasero
     SUBDIR += bsd-splash-changer

Added: head/sysutils/boot-extract/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/boot-extract/Makefile	Sun Jul 21 19:28:10 2019	(r507065)
@@ -0,0 +1,24 @@
+# $FreeBSD$
+
+PORTNAME=	boot-extract
+PORTVERSION=	g20190614
+CATEGORIES=	sysutils
+
+MAINTAINER=	freebsd at sysctl.cz
+COMMENT=	Android Boot image extraction tool
+
+LICENSE=	GPLv2
+
+USES=		gmake
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	csimmonds
+GH_PROJECT=	boot-extract
+GH_TAGNAME=	486995f
+
+PLIST_FILES=	bin/boot-extract
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
+
+.include <bsd.port.mk>

Added: head/sysutils/boot-extract/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/boot-extract/distinfo	Sun Jul 21 19:28:10 2019	(r507065)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1563120360
+SHA256 (csimmonds-boot-extract-g20190614-486995f_GH0.tar.gz) = 3dcdc36c308e6a8a76db8cb902c2162ee02d9bd06704c010c39ee15ea9b475ba
+SIZE (csimmonds-boot-extract-g20190614-486995f_GH0.tar.gz) = 3785

Added: head/sysutils/boot-extract/files/patch-Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/boot-extract/files/patch-Makefile	Sun Jul 21 19:28:10 2019	(r507065)
@@ -0,0 +1,16 @@
+--- Makefile.orig	2017-11-25 09:25:52 UTC
++++ Makefile
+@@ -1,4 +1,5 @@
+ 
++
+ CFLAGS=-Wall
+ PROGS=boot-extract
+ 
+@@ -10,3 +11,7 @@ clean:
+ 	rm -f *.o
+ 	rm -f $(PROGS)
+ 
++install: boot-extract
++
++.PHONY: all clean install
++

Added: head/sysutils/boot-extract/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/boot-extract/pkg-descr	Sun Jul 21 19:28:10 2019	(r507065)
@@ -0,0 +1,4 @@
+Utility to extract kernel and ramdisk from
+an Android boot or recovery image file
+
+WWW: https://github.com/csimmonds/boot-extract


More information about the svn-ports-head mailing list