aboutsummaryrefslogtreecommitdiffstats
path: root/archivers/unrar/Makefile
blob: 6296405307588bc77893e37533ab26c1aaffa1fb (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# New ports collection makefile for:    unrar
# Date created:         28 Dec 1994
# Whom:                 ache
#
# $FreeBSD$
#

PORTNAME=   unrar
PORTVERSION=    4.10
PORTREVISION=   2
PORTEPOCH=  5
CATEGORIES+=    archivers
MASTER_SITES=   http://www.rarlab.com/rar/ \
        LOCAL/sunpoet
DISTNAME=   unrarsrc-4.1.4

MAINTAINER?=    sunpoet@FreeBSD.org
COMMENT=    Extract, view & test RAR archives

OPTIONS=    OPENSSL_AES "Use OpenSSL implementation of AES" on

CONFLICTS?= zh-unrar-[0-9].* unrar-iconv-[0-9].*

MAKE_ARGS=  STRIP=${STRIP_CMD}
MAKEFILE=   makefile.unix
USE_GMAKE=  yes
WRKSRC=     ${WRKDIR}/${PORTNAME}

PLIST_FILES=    bin/unrar
PORTDOCS=   license.txt readme.txt

.include <bsd.port.options.mk>

.if !defined(WITHOUT_OPENSSL_AES)
CPPFLAGS+=  -DOPENSSL_AES -I${OPENSSLINC}
LDFLAGS+=   -L${OPENSSLLIB} -lcrypto
USE_OPENSSL=    yes
.endif

post-patch:
    @${REINPLACE_CMD} -e '/^CXX/ s|^|#|' ${WRKSRC}/${MAKEFILE}

do-install:
    ${INSTALL_PROGRAM} ${WRKSRC}/unrar ${PREFIX}/bin/
.if !defined(NOPORTDOCS)
    ${MKDIR} ${DOCSDIR}/
    cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}/
.endif

.include <bsd.port.mk>