1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00

Jesus-mode: back from the dead

This commit is contained in:
Alan Eldridge 2003-02-23 19:40:16 +00:00
parent 287966a765
commit f2e7354d3e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=76309
4 changed files with 81 additions and 0 deletions

View File

@ -0,0 +1,71 @@
# New ports collection makefile for: autoconf
# Date created: 23 Feb 2003
# Whom: alane@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= autoconf254
PORTVERSION= 2.54
PORTREVISION= 0
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= autoconf
DISTNAME= autoconf-${PORTVERSION}
MAINTAINER= alane@FreeBSD.org
COMMENT= Automatically configure source code on many Un*x platforms
BUILD_DEPENDS+= gm4:${PORTSDIR}/devel/m4
BUILD_DEPENDS+= help2man:${PORTSDIR}/misc/help2man
RUN_DEPENDS+= gm4:${PORTSDIR}/devel/m4
BROKEN= Work is in progress right now.
USE_BZIP2= yes
USE_GMAKE= yes
USE_PERL5= yes
GNU_CONFIGURE= yes
CONFIGURE_ENV+= CONFIG_SHELL=${SH}
CONFIGURE_ENV+= M4=${LOCALBASE}/bin/gm4
CONFIGURE_ARGS= --program-suffix=254
.if ${PORTNAME} == "autoconf"
.if exists(${LOCALBASE}/bin/emacs)
PLIST_SUB+= EMACS="" EMACSDIR=share/emacs
.elif exists(${LOCALBASE}/bin/xemacs)
PLIST_SUB+= EMACS="" EMACSDIR=lib/xemacs
.else
PLIST_SUB+= EMACS="@comment " EMACSDIR=""
.endif # no emacs found
.endif # ${PORTNAME} == "autoconf"
GENERIC_TOOLS= config.guess \
config.sub \
elisp-comp \
install-sh \
mdate-sh \
missing \
mkinstalldirs
.if defined(USE_AUTOCONF) || defined(USE_AUTOCONF_VER)
pre-everything:
@${ECHO} ===========================================================
@${ECHO} "You have 'USE_AUTOCONF' or 'USE_AUTOCONF_VER' variables"
@${ECHO} "defined either in environment or in make(1) arguments."
@${ECHO} "Please undefine them and try again."
@${ECHO} ===========================================================
@${FALSE}
.endif # defined(USE_AUTOCONF) || defined(USE_AUTOCONF_VER)
post-install:
${MKDIR} ${PREFIX}/share/autoconf254
.for FILE in ${GENERIC_TOOLS}
${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf254
.endfor
.include <bsd.port.pre.mk>
#.include "${FILESDIR}/manpages.mk"
.include <bsd.port.post.mk>

View File

@ -0,0 +1 @@
MD5 (autoconf-2.54.tar.bz2) = 572ef5257f6927ad21dbad395f3da799

View File

@ -0,0 +1,9 @@
Autoconf is an extensible package of m4 macros that produce shell
scripts to automatically configure software source code packages.
These scripts can adapt the packages to many kinds of UNIX-like
systems without manual user intervention. Autoconf creates a
configuration script for a package from a template file that lists the
operating system features that the package can use, in the form of m4
macro calls.
WWW: http://www.gnu.org/software/autoconf/

View File