mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
0e32330f15
Chase the devel/libffi update Bump portrevision of all dependent ports to chace shard library version bump in libffi. Update LIB_DEPENDS lines where needed to not require a specific version of libffi.so. PR: 247028 (for tracking)
45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
# Created by: Yukihiro Nakai <nakai@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= librep
|
|
PORTVERSION= 0.92.7
|
|
PORTREVISION= 4
|
|
CATEGORIES= lang elisp gnome
|
|
MASTER_SITES= http://download.tuxfamily.org/librep/
|
|
DISTNAME= ${PORTNAME}_${PORTVERSION}
|
|
|
|
MAINTAINER= bofh@FreeBSD.org
|
|
COMMENT= Emacs Lisp like runtime library
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libgdbm.so:databases/gdbm \
|
|
libffi.so:devel/libffi \
|
|
libgmp.so:math/gmp
|
|
RUN_DEPENDS= gtar:archivers/gtar
|
|
|
|
USE_CSTD= gnu89
|
|
|
|
USES= autoreconf gettext gmake libtool makeinfo pathfix pkgconfig readline \
|
|
shebangfix tar:xz
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-aclocaldir=${PREFIX}/share/aclocal \
|
|
--with-stack-direction=-1
|
|
SHEBANG_FILES= ${WRKSRC}/src/rep-xgettext.jl
|
|
SHEBANG_LANG= rep
|
|
rep_OLD_CMD= /usr/bin/rep
|
|
rep_CMD?= ${PREFIX}/bin/rep
|
|
USE_LDCONFIG= yes
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib -pthread
|
|
|
|
INFO= librep
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|share/man|man|' ${WRKSRC}/man/Makefile.in
|
|
@${REINPLACE_CMD} -E 's|(INSTALL_PROGRAM\))( [^-])|\1 -m 755\2|' \
|
|
${WRKSRC}/src/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|