2003-08-10 17:07:26 +02:00
|
|
|
# New ports collection makefile for: libexecinfo
|
|
|
|
# Date created: 10 August 2003
|
|
|
|
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= libexecinfo
|
2004-07-19 07:42:23 +02:00
|
|
|
PORTVERSION= 1.1
|
2008-11-23 20:07:52 +01:00
|
|
|
PORTREVISION= 3
|
2003-08-10 17:07:26 +02:00
|
|
|
CATEGORIES= devel
|
2006-05-09 12:22:46 +02:00
|
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
|
|
|
MASTER_SITE_SUBDIR= itetcu
|
2003-08-10 17:07:26 +02:00
|
|
|
|
2006-05-09 12:22:46 +02:00
|
|
|
MAINTAINER= itetcu@FreeBSD.org
|
2003-08-10 17:07:26 +02:00
|
|
|
COMMENT= A library for inspecting program's backtrace
|
|
|
|
|
|
|
|
USE_BZIP2= yes
|
2006-06-29 15:21:47 +02:00
|
|
|
USE_LDCONFIG= yes
|
2003-08-10 17:07:26 +02:00
|
|
|
MAKE_FLAGS= LIBDIR=${PREFIX}/lib \
|
|
|
|
INCLUDEDIR=${PREFIX}/include
|
|
|
|
|
2006-05-09 12:22:46 +02:00
|
|
|
PORTDOCS= README
|
|
|
|
|
2008-08-27 14:26:24 +02:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
|
|
|
.if ${ARCH} == "amd64"
|
|
|
|
CFLAGS+= -fno-omit-frame-pointer
|
|
|
|
.endif
|
|
|
|
|
2003-08-10 17:07:26 +02:00
|
|
|
post-install:
|
2006-05-09 12:22:46 +02:00
|
|
|
.if !defined(NOPORTDOCS)
|
2003-08-10 17:07:26 +02:00
|
|
|
${MKDIR} ${DOCSDIR}
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
2006-05-09 12:22:46 +02:00
|
|
|
.endif
|
2003-08-10 17:07:26 +02:00
|
|
|
|
2008-08-27 14:26:24 +02:00
|
|
|
.include <bsd.port.post.mk>
|