blob: 8c97614f9829c6d7d9524ff148daf9e87245e3c4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Created by: Emanuel Haupt <ehaupt@FreeBSD.org>
# $FreeBSD$
PORTNAME= unmass
PORTVERSION= 0.9
CATEGORIES= archivers
MASTER_SITES= http://mirex.mypage.sk/FILES/ \
CRITICAL
MAINTAINER= ehaupt@FreeBSD.org
COMMENT= Extract game archives such as wad, dar, mea exe's, and many more
LICENSE= GPLv2
USES= gmake dos2unix
GNU_CONFIGURE= yes
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/kdev
PLIST_FILES= bin/unmass
post-patch:
.for f in ma.cpp massfs.h utools.h
@${REINPLACE_CMD} -e 's|<malloc\.h>|<stdlib.h>|' ${WRKSRC}/src/${f}
.endfor
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME}_kdev \
${STAGEDIR}${PREFIX}/bin/${PORTNAME}
.include <bsd.port.mk>
|