aboutsummaryrefslogtreecommitdiffstats
path: root/security/fpm/Makefile
blob: 40066ff208f0c52523c3fd34eef13df9e261e37a (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
# New ports collection makefile for:    fpm
# Date created:             10 June 2001
# Whom:                 Anders Nordby <anders@fix.no>
#
# $FreeBSD$
#

PORTNAME=   fpm
PORTVERSION=    0.53
CATEGORIES= security
MASTER_SITES=   ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}

MAINTAINER= anders@FreeBSD.org
COMMENT=    Figaro's Password Manager, an app to securely store your passwords

USE_GNOME=  yes
USE_X_PREFIX=   yes
USE_REINPLACE=  yes

SOURCEFILES=    main.c fpm.c support.c interface.c passfile.c callbacks.c \
        blowfish.c fpm_crypt.c fpm_gpw.c md5.c fpm_clist.c fpm_pref.c
DOCS=       AUTHORS ChangeLog README TODO

GNOME_CFLAGS?=  `${GNOME_CONFIG} --cflags gnomeui`
GNOME_LIBS?=    `${GNOME_CONFIG} --libs gnomeui` \
        `${LOCALBASE}/bin/xml-config --libs`
CFLAGS+=    -DHAVE_CONFIG_H -I. -I.. ${GNOME_CFLAGS}

pre-build:
    ${REINPLACE_CMD} -E -e "s@encrypt\(@bfishencrypt\(@g" ${WRKSRC}/src/blowfish.c

do-build:
.for f in ${SOURCEFILES}
    (cd ${WRKSRC}/src; ${CC} ${CFLAGS} ${GNOME_CFLAGS} -c ${f})
.endfor
    (cd ${WRKSRC}/src; ${CC} ${CFLAGS} -o fpm ${SOURCEFILES:S/.c/.o/g} \
    ${GNOME_LIBS})

do-install:
    ${INSTALL_PROGRAM} ${WRKSRC}/src/fpm ${PREFIX}/bin
    ${INSTALL} -d -o root -g wheel -m 0755 \
    ${PREFIX}/share/gnome/pixmaps/fpm
    ${INSTALL_DATA} ${WRKSRC}/pixmaps/logo.xpm \
    ${PREFIX}/share/gnome/pixmaps/fpm
.if !defined(NOPORTDOCS)
    ${INSTALL} -d -o root -g wheel -m 0755 ${PREFIX}/share/doc/fpm
.for f in ${DOCS}
    ${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/doc/fpm
.endfor
.endif
    @${ECHO} "========================================================================="
    @${ECHO} "Make sure you set up a few IRQ's for random generation with rndcontrol before"
    @${ECHO} "expecting password generation to work well."
    @${ECHO} "========================================================================="

.include <bsd.port.mk>