blob: 65c1c4eb11a4b7016cae7100f6bc96b892e308b0 (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# New ports collection makefile for: gnupg-rsa
# Date created: 10 May, 2000
# Whom: dirk.meyer@dinoex.sub.org
#
# $FreeBSD$
#
PORTNAME= gnupg-rsa
PORTVERSION= 1.0.1
CATEGORIES= security
MASTER_SITES= ftp://ftp.gnupg.org/pub/gcrypt/contrib/
MAINTAINER= dirk.meyer@dinoex.sub.org
RESTRICTED= "Crypto; export-controlled"
RUN_DEPENDS= ${LOCALBASE}/bin/gpg:${PORTSDIR}/security/gnupg
NO_WRKSUBDIR= yes
DIST_SUBDIR= ${PORTNAME}
CFLAGS+= -O2 -shared -fPIC -DIS_MODULE
CFLAGS+= -Wall -Wcast-align -Wshadow -Wstrict-prototypes
.if !defined(USA_RESIDENT) || ${USA_RESIDENT} != YES && ${USA_RESIDENT} != NO
pre-fetch:
@${ECHO_MSG}
@${ECHO_MSG} You must set variable USA_RESIDENT to YES, if you are USA resident
@${ECHO_MSG} or to NO, if you aren\'t USA resident to build this package
@${FALSE}
.include <bsd.port.mk>
.elif defined(USA_RESIDENT)
.if ${USA_RESIDENT} == NO
DISTFILES= rsa.c idea.c
CONTRIB= rsa idea
.include <bsd.port.pre.mk>
do-extract:
@${RM} -rf ${WRKDIR}
@${MKDIR} ${WRKDIR}
.for i in ${DISTFILES}
${CP} ${_DISTDIR}/${i} ${WRKSRC}/${i}
.endfor
do-build:
.for i in ${CONTRIB}
${CC} ${CFLAGS} -o ${WRKSRC}/${i} ${WRKSRC}/${i}.c
.endfor
do-install:
.for i in ${CONTRIB}
${INSTALL_PROGRAM} ${WRKSRC}/${i} ${PREFIX}/lib/gnupg/${i}
.endfor
.include <bsd.port.post.mk>
.else
pre-fetch:
@${ECHO_MSG}
@${ECHO_MSG} rsaref is not supported in this port
@${FALSE}
.include <bsd.port.mk>
.endif
.endif
|