svn commit: r377510 - head/devel/libunwind

Danilo Egea Gondolfo danilo at FreeBSD.org
Tue Jan 20 12:26:17 UTC 2015


Author: danilo
Date: Tue Jan 20 12:26:16 2015
New Revision: 377510
URL: https://svnweb.freebsd.org/changeset/ports/377510
QAT: https://qat.redports.org/buildarchive/r377510/

Log:
  - Add LICENSE
  - Use USES=autoreconf
  - Strip shared library
  - Simplify PLIST_SUB manipulation
  - Bump PORTREVISION for package change
  
  PR:		196890
  Submitted by:	sunpoet

Modified:
  head/devel/libunwind/Makefile

Modified: head/devel/libunwind/Makefile
==============================================================================
--- head/devel/libunwind/Makefile	Tue Jan 20 12:05:26 2015	(r377509)
+++ head/devel/libunwind/Makefile	Tue Jan 20 12:26:16 2015	(r377510)
@@ -3,7 +3,7 @@
 
 PORTNAME=	libunwind
 PORTVERSION=	20121006	# This is actually official libunwind 1.1
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	devel
 MASTER_SITES=	SAVANNAH
 DISTNAME=	${PORTNAME}-1.1
@@ -11,22 +11,16 @@ DISTNAME=	${PORTNAME}-1.1
 MAINTAINER=	danilo at FreeBSD.org
 COMMENT=	Generic stack unwinding library
 
+LICENSE=	MIT
+
 ONLY_FOR_ARCHS=	i386 amd64
 
-USES=		libtool pkgconfig pathfix
-PATHFIX_MAKEFILEIN=	Makefile.am
 GNU_CONFIGURE=	yes
+INSTALL_TARGET=	install-strip
+PATHFIX_MAKEFILEIN=	Makefile.am
 USE_LDCONFIG=	yes
-USE_AUTOTOOLS=	aclocal autoheader automake autoconf libtoolize
-ACLOCAL_ARGS=	-I . -I ${LOCALBASE}/share/aclocal
-AUTOMAKE_ARGS=	-c -a
-
-.include <bsd.port.pre.mk>
-
-.if ${ARCH} == i386
-PLIST_SUB=	ARCH=x86
-.elif ${ARCH} == amd64
-PLIST_SUB=	ARCH=x86_64
-.endif
+USES=		autoreconf libtool pathfix pkgconfig
+
+PLIST_SUB=	ARCH=${ARCH:S|i386|x86|:S|amd64|x86_64|}
 
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>


More information about the svn-ports-all mailing list