aed7b6d5b0
lzop -- # GNU GPL -> # GPL macutil -- sync w/# None style nulib -- # Restrictive rar -- # Restrictive ucl -- # GPL unace -- # Copyrighted but freely distributable. That's all the author states. Is this acceptable as a license? -- Drop MAINTAINER per his request unarj -- # Restrictive PERMIT_*_CDROM=No "If you wish to distribute a modified version of UNARJ you MUST indicate that it is a modified version both in the program and source code." unrar -- # Restrictive unzip -- # Conditional It is freely re-distributable with conditions which we meet. This could use another pair of eyes to confirm. zip -- # Conditional Same thing as unzip. zoo -- # Conditional Different author/license but same idea as zip/unzip.
39 lines
894 B
Makefile
39 lines
894 B
Makefile
# $OpenBSD: Makefile,v 1.20 2003/05/24 02:40:42 jolan Exp $
|
|
|
|
COMMENT= "extract, list, and test RAR archives"
|
|
|
|
DISTNAME= unrarsrc-3.2.1
|
|
PKGNAME= unrar-3.20beta3
|
|
CATEGORIES= archivers
|
|
|
|
HOMEPAGE= http://www.rarlab.com/
|
|
|
|
# Restrictive
|
|
PERMIT_PACKAGE_CDROM= "no fee"
|
|
PERMIT_PACKAGE_FTP= "may not modify"
|
|
PERMIT_DISTFILES_CDROM= "no fee"
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${HOMEPAGE}rar/
|
|
|
|
# - work around optimizer bug in gcc 2.95
|
|
# - exceptions don't work on sparc64
|
|
.if ${MACHINE_ARCH} == "sparc64"
|
|
PATCH_LIST= patch-* gcc-patch-*
|
|
.endif
|
|
|
|
WRKDIST= ${WRKDIR}/unrar
|
|
|
|
MAKE_FILE= makefile.unix
|
|
MAKE_FLAGS= CXX="${CXX}" CXXFLAGS="${CXXFLAGS}" DEFINES=""
|
|
|
|
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>
|