1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00
freebsd-ports/devel/omake/Makefile
Stanislav Sedov 422bce3414 - Return my ports back to the pool. I was unable to make any fixes to
my ports in the past 3 weeks while ports were broken on any 10.x
  machines, which means I'm unable to maintain them.  So let people know
  that there's no available support for them until things are back to
  normal (which also means that anyone with spare time will be able
  to fix them without getting approval).
2011-10-24 03:33:20 +00:00

62 lines
1.3 KiB
Makefile

# New ports collection makefile for: omake
# Date created: 2006-08-06
# Whom: Stanislav Sedov <ssedov@mbsd.msk.ru>
#
# $MBSDlabs$
# $FreeBSD$
#
PORTNAME= omake
PORTVERSION= 0.9.8.5
PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= http://omake.metaprl.org/downloads/
DISTNAME= omake-0.9.8.5-3
MAINTAINER= ports@FreeBSD.org
COMMENT= A flexible build system
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
USE_OCAML= yes
NO_OCAML_RUNDEPENDS=yes
MAKE_JOBS_UNSAFE= yes
FETCH_CMD?= /usr/bin/fetch -Rr
.if !defined(NOPORTDOCS)
INFO= omake-doc
.endif
.include <bsd.port.pre.mk>
.if exists(${LOCALBASE}/lib/libreadline.so.6)
LIB_DEPENDS+= readline.6:${PORTSDIR}/devel/readline
CFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
.endif
post-patch:
#
# Dirty hack for PREFIX safety
#
@${REINPLACE_CMD} -E -e "s,(getenv[[:space:]]+)LIBDIR,\1PREFLIBDIR," \
${WRKSRC}/mk/defaults
#
# Permissions safety
#
@${REINPLACE_CMD} -E -e "s,cp -f -m 444,\$$(BSD_INSTALL_DATA)," \
-e "s,cp -f -m 555,\$$(BSD_INSTALL_PROGRAM)," \
${WRKSRC}/OMakefile ${WRKSRC}/src/main/OMakefile \
${WRKSRC}/doc/OMakefile
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}/
@(cd ${WRKSRC}/doc/html/ && ${COPYTREE_SHARE} \* "${DOCSDIR}/")
@(cd ${WRKSRC}/doc/info/ \
&& ${COPYTREE_SHARE} \* "${PREFIX}/${INFO_PATH}/")
.endif
.include <bsd.port.post.mk>