1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-27 05:10:36 +00:00
freebsd-ports/editors/cream/Makefile
Martin Wilke a7bed76057 - Update to 0.38
PR:		ports/105327
Submitted by:	Janos Mohacsi <janos.mohacsi@bsd.hu> (maintainer)
2006-11-12 19:12:08 +00:00

45 lines
1.2 KiB
Makefile

# New ports collection makefile for: cream
# Date created: 2004-08-25
# Whom: Janos Mohacsi <janos.mohacsi@bsd.hu>
#
# $FreeBSD$
#
PORTNAME= cream
PORTVERSION= 0.38
CATEGORIES= editors
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= janos.mohacsi@bsd.hu
COMMENT= Gvim extension with many features
RUN_DEPENDS= ${LOCALBASE}/bin/gvim:${PORTSDIR}/editors/vim
NO_BUILD= yes
# needs updating for each major vim update.
VIMRUNTIME= ${PREFIX}/share/vim/vim70
PLIST_SUB= VIMRUNTIME="${VIMRUNTIME:S/${PREFIX}\///}"
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/cream ${PREFIX}/bin
${MKDIR} ${VIMRUNTIME}/cream
${INSTALL_DATA} ${WRKSRC}/creamrc ${WRKSRC}/*.vim ${VIMRUNTIME}/cream
.for f in addons bitmaps help lang spelldicts
${MKDIR} ${VIMRUNTIME}/cream/${f}
${INSTALL_DATA} ${WRKSRC}/${f}/* ${VIMRUNTIME}/cream/${f}
.endfor
${MKDIR} ${PREFIX}/share/pixmaps
${INSTALL_DATA} ${WRKSRC}/cream.png ${WRKSRC}/cream.svg \
${PREFIX}/share/pixmaps
${MKDIR} ${PREFIX}/share/applications
${INSTALL_DATA} ${WRKSRC}/cream.desktop ${PREFIX}/share/applications
.if !defined(NOPORTDOCS)
.for f in docs docs-html
${MKDIR} ${DOCSDIR}/${f}
${INSTALL_DATA} ${WRKSRC}/${f}/* ${DOCSDIR}/${f}
.endfor
.endif
.include <bsd.port.mk>