forked from Lainports/freebsd-ports
Since glib-mkenums was rewritten in python in glib 2.53.5, glib20 seems to no longer need perl5 at runtime. This makes perl5 a build dep only. Removing the run dep causes some other ports to fail, so add the build dep to those where needed. PR: 233138 Approved by: gnome (kwm, maintainer, older version of patch) Exp-run by: antoine
32 lines
744 B
Makefile
32 lines
744 B
Makefile
# Created by: Alexey V. Antipovsky <kemm@in-line.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libspectrum
|
|
PORTVERSION= 1.4.4
|
|
CATEGORIES= emulators devel
|
|
MASTER_SITES= SF/fuse-emulator/${PORTNAME}/${PORTVERSION}
|
|
|
|
MAINTAINER= rene@FreeBSD.org
|
|
COMMENT= Handling of ZX-Spectrum emulator files formats
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libaudiofile.so:audio/libaudiofile \
|
|
libgcrypt.so:security/libgcrypt
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= gettext gmake libtool pkgconfig perl5
|
|
USE_GNOME= glib20
|
|
USE_PERL5= build
|
|
USE_LDCONFIG= yes
|
|
|
|
INSTALL_TARGET= install-strip
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install-DOCS-on:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} AUTHORS ChangeLog README THANKS \
|
|
doc/libspectrum.txt ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|