svn commit: r356882 - in head/devel/elf: . files

Vanilla I. Shu vanilla at FreeBSD.org
Sat Jun 7 05:43:37 UTC 2014


Author: vanilla
Date: Sat Jun  7 05:43:36 2014
New Revision: 356882
URL: http://svnweb.freebsd.org/changeset/ports/356882
QAT: https://qat.redports.org/buildarchive/r356882/

Log:
  Stagify.

Added:
  head/devel/elf/files/
  head/devel/elf/files/patch-Makefile.in   (contents, props changed)
  head/devel/elf/files/patch-doc__Makefile.in   (contents, props changed)
  head/devel/elf/files/patch-src__Makefile.in   (contents, props changed)
Modified:
  head/devel/elf/Makefile

Modified: head/devel/elf/Makefile
==============================================================================
--- head/devel/elf/Makefile	Sat Jun  7 05:26:52 2014	(r356881)
+++ head/devel/elf/Makefile	Sat Jun  7 05:43:36 2014	(r356882)
@@ -11,13 +11,10 @@ MASTER_SITE_SUBDIR=	linux/reverse-engine
 MAINTAINER=	ports at FreeBSD.org
 COMMENT=	A commandline based ELF header analyzer
 
-MAN1=		elf.1
-MANCOMPRESSED=	no
-PLIST_FILES=	bin/elf
 USES=		gmake
 GNU_CONFIGURE=	yes
+PLIST_FILES=	bin/elf man/man1/elf.1.gz
 
-NO_STAGE=	yes
 post-patch:
 	@${REINPLACE_CMD} -e 's/gcc/${CC}/g' ${WRKSRC}/src/Makefile.in
 

Added: head/devel/elf/files/patch-Makefile.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/elf/files/patch-Makefile.in	Sat Jun  7 05:43:36 2014	(r356882)
@@ -0,0 +1,15 @@
+--- Makefile.in.orig	2014-06-07 13:38:33.334423095 +0800
++++ Makefile.in	2014-06-07 13:39:03.004421673 +0800
+@@ -1,9 +1,9 @@
+ all:		./src/Makefile
+-		cd ./src; make; cd ../
++		cd ./src; ${MAKE}
+ 
+ install:	./src/Makefile ./doc/Makefile
+-		cd ./src; make install; cd ../
+-		cd ./doc; make install; cd ../
++		cd ./src; ${MAKE} install
++		cd ./doc; ${MAKE} install
+ 
+ uninstall:	./src/Makefile ./doc/Makefile
+ 		cd ./src;make uninstall; cd ../

Added: head/devel/elf/files/patch-doc__Makefile.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/elf/files/patch-doc__Makefile.in	Sat Jun  7 05:43:36 2014	(r356882)
@@ -0,0 +1,13 @@
+--- doc/Makefile.in.orig	2014-06-07 13:36:10.752433006 +0800
++++ doc/Makefile.in	2014-06-07 13:36:26.417432242 +0800
+@@ -5,8 +5,8 @@ INSDIR=@prefix@/man/man1
+ 
+ 
+ install:	
+-		cp elf.1 $(INSDIR)/
+-		chmod 644 $(INSDIR)/elf.1
++		cp elf.1 $(DESTDIR)$(INSDIR)/
++		chmod 644 $(DESTDIR)$(INSDIR)/elf.1
+ 
+ uninstall:	install
+ 		rm $(INSDIR)/elf.1

Added: head/devel/elf/files/patch-src__Makefile.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/elf/files/patch-src__Makefile.in	Sat Jun  7 05:43:36 2014	(r356882)
@@ -0,0 +1,11 @@
+--- src/Makefile.in.orig	2014-06-07 13:35:52.417434266 +0800
++++ src/Makefile.in	2014-06-07 13:36:02.841435177 +0800
+@@ -16,7 +16,7 @@ main.o:		main.c ../include/sehdr.h ../in
+ 		$(CC) $(CFLAGS) $(INC) -c main.c
+ 
+ install:	elf
+-		cp elf $(BINDIR)
++		cp elf $(DESTDIR)$(BINDIR)
+ 
+ uninstall:	install
+ 		rm $(BINDIR)/elf


More information about the svn-ports-head mailing list