1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-31 21:57:12 +00:00
freebsd-ports/editors/xvile/Makefile
Gary Jennejohn cc9df479e9 Don't share any directories with the vile port. This allows the
xvile port to be deleted without impacting the vile port.

Make sure that empty directories are deleted.

Submitted by:	partly by bento
2000-06-01 13:29:49 +00:00

62 lines
1.6 KiB
Makefile

# New ports collection makefile for: xvile
# Date created: Wed Nov 26, 1996
# Whom: pgf
#
# $FreeBSD$
#
PORTNAME= xvile
PORTVERSION= 9.1
CATEGORIES= editors
MASTER_SITES= ftp://ftp.phred.org/pub/vile/ \
ftp://id.wing.net/pub/pgf/vile/
DISTNAME= vile-${PORTVERSION}
EXTRACT_SUFX= .tgz
MAINTAINER= gj@freebsd.org
USE_XLIB= yes
MAKEFILE= makefile
HAS_CONFIGURE= yes
CONFIGURE_ARGS= --prefix=${PREFIX} \
--with-libdir-path=${PREFIX}/lib/xvile \
--datadir=${PREFIX}/share/xvile
MAN1= xvile.1
pre-configure:
.if ! defined(WITH_MENUS)
@${ECHO_MSG} "To use xvile with menus, set the environment variable WITH_MENUS"
.endif
.if ! defined(WITH_PERL)
@${ECHO_MSG} "To use xvile with PERL, set the environment variable WITH_PERL"
.endif
.if defined(WITH_MENUS)
CONFIGURE_ARGS+= --with-screen=Xaw
.else
CONFIGURE_ARGS+= --with-screen=x11
.endif
.if defined(WITH_PERL)
CONFIGURE_ARGS+= --with-perl
PLIST= ${PKGDIR}/PLIST.perl
USE_PERL5= yes
.endif
post-install:
.if !defined(NOPORTDOCS)
@if ! [ -d ${PREFIX}/share/doc/xvile ]; then ${MKDIR} ${PREFIX}/share/doc/xvile; fi
${INSTALL_DATA} ${WRKSRC}/doc/*.doc ${PREFIX}/share/doc/xvile
.endif
@if ! [ -d ${PREFIX}/share/xvile/macros ]; then ${MKDIR} ${PREFIX}/share/xvile/macros; fi
${INSTALL_DATA} ${WRKSRC}/macros/*.rc ${PREFIX}/share/xvile/macros
${INSTALL_SCRIPT} ${WRKSRC}/macros/vile-pager ${PREFIX}/share/xvile/macros
.if defined(WITH_PERL)
${INSTALL_DATA} ${WRKSRC}/*.doc ${PREFIX}/share/doc/xvile
.endif
@${ECHO_MSG} "Look in ${PREFIX}/share/doc/xvile for documentation."
@${ECHO_MSG} "Look in ${PREFIX}/share/xvile/macros for macros."
.include <bsd.port.mk>