aboutsummaryrefslogtreecommitdiffstats
path: root/misc/e2fsprogs-libuuid/Makefile
blob: d6e4d2eb1bbe0e9df0810950b726fc1b8cbc6fca (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
# New ports collection makefile for:    e2fsprogs-libuuid
# Date created:             26 Jan 2006
# Whom:                 Matthias Andree <matthias.andree@gmx.de>
#
# $FreeBSD$
#

PORTREVISION=   0
CATEGORIES= misc devel
PKGNAMESUFFIX=  -libuuid

COMMENT=    UUID library from e2fsprogs package

CONFLICTS=  ossp-uuid-[0-9]*

CONFIGURE_ARGS= --enable-elf-shlibs

WITHOUT_NLS=    yes
OPTIONSFILE=    # works around optionsNG trouble
MASTERDIR=  ${.CURDIR}/../../sysutils/e2fsprogs
MAKE_ARGS=  LIB_SUBDIRS=lib/uuid
USE_GMAKE=  yes
USE_LDCONFIG=   yes
ALL_TARGET= libs
INSTALL_TARGET= install install-shlibs
INSTALL_WRKSRC= ${WRKSRC}/lib/uuid
FILESDIR=   ${.CURDIR}/files
USE_RC_SUBR=    uuidd
MAKE_JOBS_SAFE= yes

MAN1=       uuidgen.1

MAN3=       uuid.3 uuid_clear.3 uuid_compare.3 uuid_copy.3 uuid_generate.3 \
        uuid_is_null.3 uuid_parse.3 uuid_time.3 uuid_unparse.3 \
        uuid_generate_random.3 uuid_generate_time.3

MAN8=       uuidd.8

PKGDIR=     ${.CURDIR}

post-patch::
    ${REINPLACE_CMD} -e 's,/var/lib/libuuid,/var/run/libuuid,g' \
        -e 's,/usr/sbin/uuidd,${PREFIX}/sbin/uuidd,' \
        ${WRKSRC}/lib/uuid/*.[ch]

pre-build:
    ${MKDIR} ${WRKSRC}/lib/uuid/elfshared
    cd ${WRKSRC}/util && ${GMAKE} subst

# ulimit guards against runaway tests
# failure to launch uuidd is fine (one might be running, or we may lack
# privileges); if it works, it'll quit after 50 seconds
post-build:
    cd ${WRKSRC}/misc && ${GMAKE} uuidgen uuidgen.1 uuidd uuidd.8
    cd ${INSTALL_WRKSRC} && ( ulimit -t 5 && ${GMAKE} check )

post-install:
    ${INSTALL_PROGRAM} ${WRKSRC}/misc/uuidgen ${PREFIX}/bin/
    ${INSTALL_MAN} ${WRKSRC}/misc/uuidgen.1 ${MAN8PREFIX}/man/man1/
    ${INSTALL_PROGRAM} ${WRKSRC}/misc/uuidd ${PREFIX}/sbin/
    ${INSTALL_MAN} ${WRKSRC}/misc/uuidd.8 ${MAN8PREFIX}/man/man8/
    ${MKDIR} /var/run/libuuid

.include "${MASTERDIR}/Makefile"