freebsd-ports/devel/adacurses/Makefile
Ade Lovett 54a0b86543 Mass-conversion to the USE_AUTOTOOLS New World Order. The code present
in bsd.autotools.mk essentially makes this a no-op given that all the
old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in
exactly the same way as USE_AUTOTOOLS itself.

Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME
team -- all GNOME 2.12.x ports use it.

Preliminary documentation can be found at:
	http://people.FreeBSD.org/~ade/autotools.txt

which is in the process of being SGMLized before introduction into the
Porters Handbook.

Light blue touch-paper.  Run.
2005-11-15 06:52:12 +00:00

38 lines
1.1 KiB
Makefile

# New ports collection makefile for: adacurses
# Date created: 19 June 2002
# Whom: olgeni@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= adacurses
PORTVERSION= 5.3
PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= ncurses
DISTNAME= ncurses-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Curses library for Ada
BUILD_DEPENDS= gnat:${PORTSDIR}/lang/gnat
USE_AUTOTOOLS= libtool:15
USE_GMAKE= yes
CONFIGURE_ARGS= --datadir=${PREFIX}/share/misc --disable-overwrite \
--disable-termcap --includedir=${PREFIX}/include/ncurses \
--with-profile --with-shared --without-debug \
--without-curses-h --with-termlib --with-libtool
CONFIGURE_ENV= ac_cv_path_LDCONFIG="${LDCONFIG} -m ${PREFIX}/lib" \
ADA_SUBDIRS="gen src"
do-install:
@${MKDIR} ${PREFIX}/lib/adacurses
@${INSTALL_DATA} ${WRKSRC}/Ada95/src/*.ads ${PREFIX}/lib/adacurses
@${INSTALL_DATA} ${WRKSRC}/Ada95/src/*.ali ${PREFIX}/lib/adacurses
@${INSTALL_DATA} ${WRKSRC}/Ada95/src/*.adb ${PREFIX}/lib/adacurses
@${INSTALL_DATA} ${WRKSRC}/Ada95/src/*.a ${PREFIX}/lib/adacurses
@${INSTALL_SCRIPT} ${FILESDIR}/adacurses-config ${PREFIX}/bin
.include <bsd.port.mk>