mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
627a084eea
Install shared libraries, and use them (except for e2fsck, which links it statically so it can be used from /sbin), requested by pgf@ and fsu@. To that end, we need to add LIB_DEPENDS and tweak CONFIGURE_ARGS (notably LDFLAGS need to be passed there already, not in MAKE_ARGS, so that we can find libuuid/libblkid). Use @comment trick in pkg-plist to ignore not-to-install libraries (libss, libblkid - these have their own ports) while shutting up make check-plist and poudriere checks at the same time. Reported by: pgf@, fsu@ [1]
35 lines
798 B
Makefile
35 lines
798 B
Makefile
# Created by: Matthias Andree <matthias.andree@gmx.de>
|
|
# $FreeBSD$
|
|
|
|
PORTREVISION= 0
|
|
CATEGORIES= misc devel
|
|
PKGNAMESUFFIX= -libblkid
|
|
|
|
COMMENT= Blkid library from e2fsprogs package
|
|
|
|
LICENSE= LGPL20+
|
|
_no_license_file= sorry
|
|
|
|
LIB_DEPENDS= libuuid.so:misc/e2fsprogs-libuuid
|
|
|
|
CONFIGURE_ARGS= --enable-elf-shlibs --disable-libuuid --enable-libblkid
|
|
|
|
MASTERDIR= ${.CURDIR}/../../sysutils/e2fsprogs
|
|
MAKE_ARGS= LIB_SUBDIRS=lib/blkid LDFLAGS_SHLIB=-L${LOCALBASE}/lib
|
|
USE_LDCONFIG= yes
|
|
ALL_TARGET= libs
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
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 ${INSTALL_WRKSRC} && ${MAKE_CMD} check
|
|
|
|
.include "${MASTERDIR}/Makefile"
|