4c3bcd5faf
no bump, because !mips64 packages didn't change, and mips64 didn't package.
43 lines
913 B
Makefile
43 lines
913 B
Makefile
# $OpenBSD: Makefile,v 1.39 2007/11/06 09:44:54 jasper Exp $
|
|
|
|
COMMENT= extract, list, and test RAR archives
|
|
|
|
DISTNAME= unrarsrc-3.7.8
|
|
PKGNAME= unrar-3.78
|
|
CATEGORIES= archivers
|
|
|
|
HOMEPAGE= http://www.rarlab.com/
|
|
|
|
MAINTAINER= Rui Reis <rui@rui.cx>
|
|
|
|
# Restrictive
|
|
PERMIT_PACKAGE_CDROM= no fee
|
|
PERMIT_PACKAGE_FTP= may not modify
|
|
PERMIT_DISTFILES_CDROM= no fee
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= c m stdc++
|
|
|
|
MASTER_SITES= ${HOMEPAGE}rar/
|
|
|
|
WRKDIST= ${WRKDIR}/unrar
|
|
|
|
MAKE_FILE= makefile.unix
|
|
MAKE_FLAGS= CXX="${CXX}" CXXFLAGS="${CXXFLAGS}"
|
|
|
|
# gcc 3.3.5 internal compiler error
|
|
.if ${MACHINE_ARCH} == "mips64"
|
|
EXTRA_CFLAGS= -O0
|
|
.endif
|
|
|
|
MAKE_FLAGS+= EXTRA_CFLAGS=${EXTRA_CFLAGS}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKBUILD}/unrar ${PREFIX}/bin
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/unrar
|
|
${INSTALL_MAN} ${WRKSRC}/readme.txt ${WRKSRC}/license.txt \
|
|
${PREFIX}/share/doc/unrar
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
.include <bsd.port.mk>
|