Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 20 Jan 2015 12:26:17 +0000 (UTC)
From:      Danilo Egea Gondolfo <danilo@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r377510 - head/devel/libunwind
Message-ID:  <201501201226.t0KCQHSE082463@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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>



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