24 lines
627 B
Bash
24 lines
627 B
Bash
# Copyright 1999-2009 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libexecinfo/libexecinfo-1.1.ebuild,v 1.1 2009/05/15 07:22:15 aballier Exp $
|
|
|
|
inherit bsdmk freebsd
|
|
|
|
DESCRIPTION="A library for inspecting program's backtrace"
|
|
HOMEPAGE="http://www.freebsdsoftware.org/devel/libexecinfo.html"
|
|
SRC_URI="mirror://freebsd/distfiles/${P}.tar.bz2"
|
|
|
|
LICENSE="BSD-2"
|
|
SLOT="0"
|
|
KEYWORDS="~x86-fbsd"
|
|
IUSE=""
|
|
|
|
DEPEND="sys-freebsd/freebsd-mk-defs"
|
|
RDEPEND=""
|
|
|
|
PATCHES=( "${FILESDIR}/${P}-build.patch" )
|
|
|
|
src_install() {
|
|
freebsd_src_install
|
|
dodoc README
|
|
}
|