mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-17 03:25:46 +00:00
cb037d3c98
- Bump PORTREVISION for shlib change Changes: https://cnswww.cns.cwru.edu/php/chet/readline/CHANGES https://lists.gnu.org/archive/html/bug-bash/2016-09/msg00107.html https://lists.gnu.org/archive/html/bug-readline/2017-01/msg00002.html Differential Revision: https://reviews.freebsd.org/D11172 PR: 219947 Exp-run by: antoine
30 lines
611 B
Makefile
30 lines
611 B
Makefile
# Created by: Samy Al Bahra <samy@kerneled.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= elf
|
|
PORTVERSION= 0.5.4p1
|
|
PORTREVISION= 4
|
|
CATEGORIES= devel
|
|
MASTER_SITES= PACKETSTORM/linux/reverse-engineering
|
|
|
|
MAINTAINER= mmokhi@FreeBSD.org
|
|
COMMENT= Commandline based ELF header analyzer
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= gmake libedit readline
|
|
GNU_CONFIGURE= yes
|
|
PLIST_FILES= bin/elf man/man1/elf.1.gz
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|gcc|${CC}|g' ${WRKSRC}/src/Makefile.in
|
|
|
|
do-build:
|
|
${DO_MAKE_BUILD} -C ${WRKSRC}/src
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|