9867fe2790
* several features for debugfs added * there is a new e2mmpstatus command * there are several bug fixes, among them endianness fixes and robustness fixes against corrupted input. * add hashmap.h header file, for libext2fs users * a few type fixes for format strings, found while building for MIPS, ARM, or i386 * add new option SLOWTESTS which prevents skipping of slow tests * add new option BASHTESTS which enables tests that require bash (currently affects only the test f_large_dir that is also marked as slow) Full release notes: <http://e2fsprogs.sourceforge.net/e2fsprogs-release.html#1.44.3> Reset PORTREVISION in slave ports, e2fsprogs{-libss,-libuuid} now that we have bumped PORTVERSION. MFH: 2018Q3
29 lines
685 B
Makefile
29 lines
685 B
Makefile
# Created by: Ben Kaduk <kaduk@mit.edu>
|
|
# $FreeBSD$
|
|
|
|
PORTREVISION= 0
|
|
CATEGORIES= devel
|
|
PKGNAMESUFFIX= -libss
|
|
|
|
MAINTAINER= kaduk-fbsd@mit.edu
|
|
COMMENT= Command-line interface parsing library from e2fsprogs
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${INSTALL_WRKSRC}/ss.h
|
|
|
|
OPTIONS_EXCLUDE= DOCS EXAMPLES IPV6 NLS
|
|
CONFIGURE_ARGS= --enable-elf-shlibs
|
|
MASTERDIR= ${.CURDIR}/../../sysutils/e2fsprogs
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
BUILD_WRKSRC= ${WRKSRC}/lib/ss
|
|
INSTALL_WRKSRC= ${WRKSRC}/lib/ss
|
|
FILESDIR= ${.CURDIR}/files
|
|
|
|
PKGDIR= ${.CURDIR}
|
|
|
|
pre-build:
|
|
(cd ${WRKSRC}/lib/ss && compile_et ss_err.et && \
|
|
${REINPLACE_CMD} -f ${FILESDIR}/fix-ss_err.h.sed ss_err.h)
|
|
|
|
.include "${MASTERDIR}/Makefile"
|