mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
bf2b151831
PR: 193240 Submitted by: Horia Racoviceanu <horia@racoviceanu.com> (maintainer)
52 lines
1.3 KiB
Makefile
52 lines
1.3 KiB
Makefile
# Created by: Kris Moore <kmoore@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libfm
|
|
PORTVERSION= 1.2.2.1
|
|
CATEGORIES= x11
|
|
MASTER_SITES= SF/pcmanfm/PCManFM%20%2B%20Libfm%20%28tarball%20release%29/libfm%20%28required%20by%20PCManFM%29/
|
|
|
|
MAINTAINER= horia@racoviceanu.com
|
|
COMMENT= LibFM backend library to PCManFM
|
|
|
|
LICENSE= GPLv2
|
|
|
|
BUILD_DEPENDS= p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser \
|
|
valac:${PORTSDIR}/lang/vala
|
|
LIB_DEPENDS= libmenu-cache.so:${PORTSDIR}/x11/menu-cache \
|
|
libexif.so:${PORTSDIR}/graphics/libexif
|
|
|
|
USES= desktop-file-utils fam gmake libtool pathfix pkgconfig \
|
|
shared-mime-info tar:xz
|
|
USE_GNOME= gtk20
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --sysconfdir=${LOCALBASE}/etc
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LIBS+= -L${LOCALBASE}/lib
|
|
INSTALL_TARGET= install-strip
|
|
|
|
PORTDOCS= AUTHORS NEWS README
|
|
|
|
OPTIONS_DEFINE= DOCS NLS STATIC
|
|
OPTIONS_SUB= yes
|
|
|
|
NLS_USES= gettext
|
|
NLS_CONFIGURE_ENABLE= nls
|
|
STATIC_CONFIGURE_ENABLE= static
|
|
|
|
PLIST_SUB+= MAJORVER=1.0
|
|
PLIST_SUB+= VER=4
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|-DG_DISABLE_DEPRECATED||' \
|
|
${WRKSRC}/src/Makefile.in
|
|
|
|
post-install:
|
|
${MV} ${STAGEDIR}${PREFIX}/etc/xdg/libfm/libfm.conf \
|
|
${STAGEDIR}${PREFIX}/etc/xdg/libfm/libfm.conf.sample
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|