aboutsummaryrefslogtreecommitdiffstats
path: root/security/bugs/Makefile
blob: 2349c3bdfcdbf855cd1430fc14b03aedddab09c9 (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
# New ports collection makefile for:    bugs
# Date created:     20 June 1998
# Whom:         Stephane Legrand
#
# $FreeBSD$
#

PORTNAME=   bugs
PORTVERSION=    4.1.1
PORTREVISION=   2
CATEGORIES= security
MASTER_SITES=   SUNSITE/apps/crypto
EXTRACT_SUFX=   .tgz

MAINTAINER= ports@FreeBSD.org
COMMENT=    Great cryptography library and sample programs

LICENSE=    GPLv2
LICENSE_FILE=   ${WRKSRC}/COPYING

USE_GMAKE=  yes

PLIST_SUB=  PORTVERSION="${PORTVERSION}"

DOCSDIR=    ${PREFIX}/${DISTNAME}/doc

post-configure:
    (cd ${WRKSRC}; ${MAKE} bsd);
    ${REINPLACE_CMD} -e 's:^INSTALL_PATH = "/usr/local/bugs-.*":INSTALL_PATH = "${PREFIX}/${DISTNAME}":' ${WRKSRC}/Makefile;
    ${REINPLACE_CMD} -e 's/^install: instchoice all/install: instchoice/' ${WRKSRC}/Makefile;
    # Comment the docs installation
    ${REINPLACE_CMD} -e 's+\(@echo "Copying docs.*\)+# \1+' ${WRKSRC}/Makefile;
    ${REINPLACE_CMD} -e 's+\(@cp -rf ./doc/.*\)+# \1+' ${WRKSRC}/Makefile;

post-build:
    @${LN} -sf ${WRKSRC}/lib/unix/*.a ${WRKSRC}/lib/

pre-install:
    (cd ${WRKSRC}; ${MAKE} test)

post-install:
    @${MKDIR} ${PREFIX}/${DISTNAME}/include
    ${INSTALL_DATA} ${WRKSRC}/include/*.h ${PREFIX}/${DISTNAME}/include
.for file in bchat bcrypt bhide bkey block blogin bmore bpass bpassdel bunlock
    @${STRIP_CMD} ${PREFIX}/${DISTNAME}/${file}
.endfor
.if !defined(NOPORTDOCS)
    @(cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${DOCSDIR})
.endif

.include <bsd.port.mk>