mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
70f88c47c0
Security fix for "ripMIME attachment extraction bypass", http://www.freebsd.org/ports/portaudit/85e19dff-e606-11d8-9b0a-000347a4fa7d.html PR: ports/70874 Submitted by: Esa Karkkainen Approved by: maintainer
33 lines
739 B
Makefile
33 lines
739 B
Makefile
# New ports collection Makefile for: RipMIME
|
|
# Date created: 16th March 2001
|
|
# Whom: Justin Stanford <jus@security.za.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ripmime
|
|
PORTVERSION= 1.3.2.3
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://www.pldaniels.com/ripmime/
|
|
|
|
MAINTAINER= jus@security.za.net
|
|
COMMENT= Extracts attached files out of a MIME encoded email package
|
|
|
|
PLIST_FILES= bin/ripmime
|
|
MAN1= ripmime.1
|
|
USE_REINPLACE= yes
|
|
|
|
pre-build:
|
|
@${REINPLACE_CMD} -e 's!CC=!CC?=!; s!/usr/local!${PREFIX}!; \
|
|
s!CFLAGS= -Wall -O2!CFLAGS+= -Wall!' \
|
|
${WRKSRC}/Makefile
|
|
|
|
do_install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/ripmime ${PREFIX}/bin/
|
|
${INSTALL_MAN} ${WRKSRC}/ripmime.1 ${MANPREFIX}/man/man1/
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|