mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
308d323cda
PR: 87281 Submitted by: Gabor Kovesdan <gabor.kovesdan@t-hosting.hu> (maintainer)
61 lines
1.3 KiB
Makefile
61 lines
1.3 KiB
Makefile
# New ports collection makefile for: rar
|
|
# Date created: 15 May 1996
|
|
# Whom: ache
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= rar
|
|
PORTVERSION= 3.51
|
|
PORTEPOCH= 1
|
|
CATEGORIES= archivers
|
|
MASTER_SITES= http://files2.rarlab.com/rar/ \
|
|
http://files3.rarlab.com/rar/ \
|
|
http://files4.rarlab.com/rar/ \
|
|
http://files5.rarlab.com/rar/ \
|
|
http://files6.rarlab.com/rar/
|
|
DISTNAME= rarbsd-3.5.1
|
|
|
|
MAINTAINER= gkovesdan@t-hosting.hu
|
|
COMMENT= File archiver (binary port)
|
|
|
|
ONLY_FOR_ARCHS= i386 amd64
|
|
NO_PACKAGE= Only unmodified original package can be distributed
|
|
NO_BUILD= yes
|
|
WRKSRC= ${WRKDIR}/rar
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 503000
|
|
IGNORE= is unsupported on versions prior to FreeBSD 5.3
|
|
.endif
|
|
|
|
.if ${OSVERSION} >= 600000
|
|
LIB_DEPENDS+= c.5:${PORTSDIR}/misc/compat5x
|
|
.endif
|
|
|
|
.if ${PORTOBJFORMAT} == "elf"
|
|
STRIP=
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/rar ${PREFIX}/bin/rar
|
|
(cd ${WRKSRC} && \
|
|
${INSTALL_MAN} rar.txt ${PREFIX}/man/cat1/rar.1 && \
|
|
${INSTALL_DATA} rarfiles.lst \
|
|
${PREFIX}/etc && \
|
|
${INSTALL_DATA} default.sfx \
|
|
${PREFIX}/lib )
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
(cd ${WRKSRC} && \
|
|
${INSTALL_DATA} technote.txt license.txt \
|
|
order.htm readme.txt whatsnew.txt \
|
|
file_id.diz \
|
|
${DOCSDIR} )
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|