7be05569c8
Approved by: itetcu
37 lines
721 B
Makefile
37 lines
721 B
Makefile
# New ports collection makefile for: libexecinfo
|
|
# Date created: 10 August 2003
|
|
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libexecinfo
|
|
PORTVERSION= 1.1
|
|
PORTREVISION= 3
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
|
MASTER_SITE_SUBDIR= itetcu
|
|
|
|
MAINTAINER= itetcu@FreeBSD.org
|
|
COMMENT= A library for inspecting program's backtrace
|
|
|
|
USE_BZIP2= yes
|
|
USE_LDCONFIG= yes
|
|
MAKE_FLAGS= LIBDIR=${PREFIX}/lib \
|
|
INCLUDEDIR=${PREFIX}/include
|
|
|
|
PORTDOCS= README
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "amd64"
|
|
CFLAGS+= -fno-omit-frame-pointer
|
|
.endif
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|