forked from Lainports/freebsd-ports
Begin autotools sanitization sequence by requiring ports to explicitly
specify which version of {libtool,autoconf,automake} they need, erasing
the concept of a "system default".
For ports-in-waiting:
USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13
USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213
USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14
Ports attempting to use the old style system after June 1st 2004 will be
sorely disappointed.
27 lines
613 B
Makefile
27 lines
613 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: libvm68k
|
|
# Date created: Jun 4, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libvm68k
|
|
PORTVERSION= 1.0.6
|
|
PORTREVISION= 1
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= ftp://ftp.hypercore.co.jp/vx68k/${PORTNAME}-${PORTVERSION:R}/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= M68000 virtual machine library
|
|
|
|
USE_LIBTOOL_VER=13
|
|
USE_REINPLACE= yes
|
|
LIBTOOLFLAGS= --disable-ltlibs --release-ignore
|
|
INSTALLS_SHLIB= yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/^#define _POSIX_C_SOURCE 199506L/d' \
|
|
${WRKSRC}/memory.cc ${WRKSRC}/memory_map.cc ${WRKSRC}/version.cc
|
|
|
|
.include <bsd.port.mk>
|