freebsd-ports/editors/xvile/Makefile

62 lines
1.6 KiB
Makefile
Raw Normal View History

# New ports collection makefile for: xvile
# Date created: Wed Nov 26, 1996
# Whom: pgf
#
1999-08-25 07:57:29 +02:00
# $FreeBSD$
#
PORTNAME= xvile
2000-11-22 00:19:14 +01:00
PORTVERSION= 9.2
CATEGORIES= editors
MASTER_SITES= ftp://ftp.phred.org/pub/vile/ \
1997-09-06 21:58:13 +02:00
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
1996-11-17 08:01:32 +01:00
MAN1= xvile.1
1995-04-24 05:38:32 +02:00
1997-09-06 21:58:13 +02:00
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
1997-09-06 21:58:13 +02:00
.if defined(WITH_MENUS)
CONFIGURE_ARGS+= --with-screen=Xaw
1997-09-06 21:58:13 +02:00
.else
CONFIGURE_ARGS+= --with-screen=x11
1997-09-06 21:58:13 +02:00
.endif
.if defined(WITH_PERL)
CONFIGURE_ARGS+= --with-perl
2000-10-08 02:48:23 +02:00
PLIST= ${PKGDIR}/pkg-plist.perl
USE_PERL5= yes
.endif
1997-09-06 21:58:13 +02:00
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
1997-09-06 21:58:13 +02:00
.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."
1997-09-06 21:58:13 +02:00
.include <bsd.port.mk>