1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-27 21:29:02 +00:00
freebsd-ports/editors/xvile/Makefile
Gary Jennejohn 1d7511e925 In the PATCH_SITES line add a `/'' to the end of `patches'' so that
fetch actually enters the directory.

Reported by:	Fenner's port survey
2001-03-29 11:02:52 +00:00

94 lines
2.5 KiB
Makefile

# New ports collection makefile for: xvile
# Date created: Wed Nov 26, 1996
# Whom: pgf
#
# $FreeBSD$
#
PORTNAME= xvile
PORTVERSION= 9.2j
CATEGORIES= editors
MASTER_SITES= ftp://ftp.phred.org/pub/vile/ \
ftp://dickey.his.com/vile/
DISTNAME= vile-9.2
EXTRACT_SUFX= .tgz
PATCH_SITES= ${MASTER_SITES:S,vile/,vile/patches/,g}
PATCHFILES= vile-9.2a.patch.gz \
vile-9.2b.patch.gz \
vile-9.2c.patch.gz \
vile-9.2d.patch.gz \
vile-9.2e.patch.gz \
vile-9.2f.patch.gz \
vile-9.2g.patch.gz \
vile-9.2h.patch.gz \
vile-9.2i.patch.gz \
vile-9.2j.patch.gz
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,"
@${ECHO_MSG} "which will also turn on Xaw. If you have Xaw3d, you can use it"
@${ECHO_MSG} "by also settting the environment variable WITH_XAW3D."
.endif
.if ! defined(WITH_PERL)
@${ECHO_MSG} "To use xvile with PERL, set the environment variable WITH_PERL."
.endif
.if ! defined(WITH_FILTERS)
@${ECHO_MSG} "Define WITH_FILTERS if you want to make an xvile which includes"
@${ECHO_MSG} "all filters in the binary"
.endif
.if defined(WITH_MENUS)
CONFIGURE_ARGS+= --with-screen=Xaw
.if defined(WITH_XAW3D)
CONFIGURE_ARGS+= --with-Xaw3d
.endif
.else
CONFIGURE_ARGS+= --with-screen=x11
.endif
.if defined(WITH_PERL)
CONFIGURE_ARGS+= --with-perl
PLIST= ${PKGDIR}/pkg-plist.perl
USE_PERL5= yes
.endif
.if defined(WITH_FILTERS)
CONFIGURE_ARGS+= --with-builtin-filters=all
PLIST= ${PKGDIR}/pkg-plist.filt
.endif
.if defined(WITH_PERL) && defined(WITH_FILTERS)
PLIST= ${PKGDIR}/pkg-plist.perl+filt
.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>