diff options
author | Joerg Wunsch <joerg@FreeBSD.org> | 2004-04-28 20:24:39 +0000 |
---|---|---|
committer | Joerg Wunsch <joerg@FreeBSD.org> | 2004-04-28 20:24:39 +0000 |
commit | fdfb17efb84ec4765a56aab9ac7fe3cc2779de37 (patch) | |
tree | c28ff8e6e00eb3eb458ae3b9ec18c4156e24e15d /devel/libbfd/Makefile | |
parent | a2356ca7d9453cfcc6d4a8dd775d580c6d50f4bd (diff) | |
download | ports-fdfb17efb84ec4765a56aab9ac7fe3cc2779de37.tar.gz ports-fdfb17efb84ec4765a56aab9ac7fe3cc2779de37.zip |
This is a port of GNU libbfd, the binary file descriptor library from
GNU binutils. It can read/write about any object file format on earth.
Soon to be used by devel/avarice.
Requires devel/gnulibiberty, since it (alas) uses undocumented internal
functions from that library.
Notes
Notes:
svn path=/head/; revision=107870
Diffstat (limited to 'devel/libbfd/Makefile')
-rw-r--r-- | devel/libbfd/Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/devel/libbfd/Makefile b/devel/libbfd/Makefile new file mode 100644 index 000000000000..8ce67ce92692 --- /dev/null +++ b/devel/libbfd/Makefile @@ -0,0 +1,30 @@ +# New ports collection makefile for: libbfd +# Date created: 26 Feb 2004 +# Whom: Joerg Wunsch <joerg@freebsd.org> +# +# $FreeBSD$ +# + +PORTNAME= libbfd +PORTVERSION= 2.14 +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITE_SOURCEWARE} +MASTER_SITE_SUBDIR= binutils/releases +DISTNAME= binutils-${PORTVERSION} + +MAINTAINER= joerg@freebsd.org +COMMENT= Universal BFD library from GNU binutils + +WRKSRC= ${WRKDIR}/binutils-${PORTVERSION}/bfd + +USE_BZIP2= yes +USE_GMAKE= yes +CONFIGURE_ARGS= --enable-install-libbfd \ + --enable-commonbfdlib \ + --disable-nls \ + --enable-targets=all +USE_LIBTOOL= yes + +INFO= bfd + +.include <bsd.port.mk> |