mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
07251e0e2f
PR: ports/100924 Submitted by: Thomas Abthorpe (maintainer)
61 lines
1.5 KiB
Makefile
61 lines
1.5 KiB
Makefile
# New ports collection makefile for: sword
|
|
# Date created: 22 may 2001
|
|
# Whom: Willem van Engen <wvengen@stack.nl>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= sword
|
|
PORTVERSION= 1.5.8
|
|
CATEGORIES= misc
|
|
MASTER_SITES= ftp://ftp.crosswire.org/pub/sword/source/v1.5/ \
|
|
http://www.goodking.ca/pub/files/ \
|
|
ftp://stjames.stthomasanglican.org/pub/files/
|
|
|
|
MAINTAINER= thomas@goodking.ca
|
|
COMMENT= A project framework for manipulating Bible texts
|
|
|
|
USE_GNOME= pkgconfig
|
|
USE_GMAKE= yes
|
|
USE_GCC= 3.2+
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
CONFIGURE_ARGS+= --without-conf
|
|
INSTALLS_SHLIB= yes
|
|
SUB_FILES= pkg-message
|
|
PKGMESSAGE= ${WRKDIR}/pkg-message
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITHOUT_CURL)
|
|
CONFIGURE_ARGS+= --without-curl
|
|
PLIST_SUB+= INSTALLMGR="@comment "
|
|
.else
|
|
LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl
|
|
CONFIGURE_ARGS+= --with-curl
|
|
PLIST_SUB+= INSTALLMGR=""
|
|
|
|
pre-everything::
|
|
@${ECHO_CMD} "Define WITHOUT_CURL to disable remote fetch (curl) support in the installmanager"
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|$$(libdir)/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \
|
|
${WRKSRC}/Makefile.in
|
|
|
|
post-install:
|
|
@${MKDIR} ${PREFIX}/share/sword/mods.d
|
|
.if !exists(${PREFIX}/etc/sword.conf)
|
|
@(cd ${WRKSRC} && make install_config)
|
|
.else
|
|
@${ECHO_CMD} "Config file not installed since ${PREFIX}/etc/sword.conf already exists."
|
|
@${ECHO_CMD} "Please check that DataPath points to your modules (default ${DATADIR}).";
|
|
.endif
|
|
@${ECHO_CMD} ""
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
register:
|
|
@(cd ${WRKSRC} && make register)
|
|
|
|
.include <bsd.port.post.mk>
|