mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
168f57451a
COMMENT typos and surrounding whitespace fixes. A few Makefiles where not included as they contain Latin-1 characters that break the Phabricator workflow. Category M. CR: D306 Approved by: portmgr (bapt)
32 lines
708 B
Makefile
32 lines
708 B
Makefile
# Created by: Matthias Andree <matthias.andree@gmx.de>
|
|
# $FreeBSD$
|
|
|
|
PORTREVISION= 1
|
|
CATEGORIES= misc devel
|
|
PKGNAMESUFFIX= -libblkid
|
|
|
|
COMMENT= Blkid library from e2fsprogs package
|
|
|
|
LIB_DEPENDS= libuuid.so:${PORTSDIR}/misc/e2fsprogs-libuuid
|
|
|
|
CONFIGURE_ARGS= --enable-elf-shlibs
|
|
|
|
MASTERDIR= ${.CURDIR}/../../sysutils/e2fsprogs
|
|
MAKE_ARGS= LIB_SUBDIRS=lib/blkid
|
|
USE_LDCONFIG= yes
|
|
ALL_TARGET= libs
|
|
INSTALL_TARGET= install install-shlibs
|
|
INSTALL_WRKSRC= ${WRKSRC}/lib/blkid
|
|
|
|
PKGDIR= ${.CURDIR}
|
|
|
|
pre-build:
|
|
${MKDIR} ${WRKSRC}/lib/blkid/elfshared
|
|
cd ${WRKSRC}/util && ${MAKE_CMD} subst
|
|
|
|
post-build:
|
|
cd ${WRKSRC}/lib/uuid && ${MAKE_CMD}
|
|
cd ${INSTALL_WRKSRC} && ${MAKE_CMD} check
|
|
|
|
.include "${MASTERDIR}/Makefile"
|