freebsd-ports/emulators/libspectrum/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

47 lines
1,002 B
Makefile

# New ports collection makefile for: libspectrum
# Date created: 2003-10-27
# Whom: Alexey V. Antipovsky <kemm@in-line.ru>
#
# $FreeBSD$
#
PORTNAME= libspectrum
PORTVERSION= 0.2.2
PORTREVISION= 1
CATEGORIES= emulators devel
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= fuse-emulator
MAINTAINER= kemm@in-line.ru
COMMENT= Handling of ZX-Spectrum emulator files formats
USE_PERL5_BUILD= yes
WANT_GNOME= yes
USE_AUTOTOOLS= libtool:15
INSTALLS_SHLIB= yes
MAN3= libspectrum.3
OPTIONS= GLIB "Use GLib" on \
GCRYPT "Use libgcrypt" off
.include <bsd.port.pre.mk>
.if !defined(WITHOUT_GLIB)
USE_GNOME= glib20
.else
CONFIGURE_ARGS+= --without-glib
.endif
.if defined(WITH_GCRYPT) || exists(${LOCALBASE}/include/gcrypt.h)
LIB_DEPENDS+= gcrypt.13:${PORTSDIR}/security/libgcrypt
.endif
.if !defined(NOPORTDOCS)
post-install:
@${MKDIR} ${DOCSDIR}
cd ${WRKSRC} && ${INSTALL_DATA} \
AUTHORS ChangeLog README THANKS doc/libspectrum.txt ${DOCSDIR}
.endif
.include <bsd.port.post.mk>