forked from Lainports/freebsd-ports
- Bump PORTREVISION for ftp/curl shlib change - Add TEST_DEPENDS - Convert to new options framework - Adjust options: - Add COOKIES - Add CYASSL, NSS, POLARSSL, THREADED_RESOLVER, TLS_SRP [1] - Add GSSAPI and SPNEGO [2] - Remove KERBEROS4 - Rename LIBIDN to IDN - Remove TRACKMEMORY [1] - Sort option handler - Add SLAVEDIRS: ftp/curl-hiphop - Cosmetic change - Cleanup Makefile header - While I'm here, fix typo (PORTREVSION) in x11-wm/ede/Makefile Changes: http://curl.haxx.se/changes.html PR: ports/172325 (-exp run), ports/177369 (based on) [1] Submitted by: Hirohisa Yamaguchi <umq@ueo.co.jp> [1], hrs (via email) [2] Exp run by: miwi
39 lines
791 B
Makefile
39 lines
791 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= binwalk
|
|
PORTVERSION= 0.5.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= security
|
|
MASTER_SITES= GOOGLE_CODE
|
|
|
|
MAINTAINER= fbsd-ports@opsec.eu
|
|
COMMENT= Search binary images for embedded files and executable code
|
|
|
|
LICENSE= MIT
|
|
|
|
LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl
|
|
|
|
PLIST_FILES= bin/binwalk \
|
|
etc/binwalk/extract.conf \
|
|
etc/binwalk/magic.binarch \
|
|
etc/binwalk/magic.bincast \
|
|
etc/binwalk/magic.binwalk
|
|
PLIST_DIRS= etc/binwalk
|
|
|
|
PORTDOCS= README
|
|
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/src
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKDIR}/${PORTNAME}-${PORTVERSION}/docs/README ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|