blob: 1c8c252f1fadcfa5049dc181f78cb81219454ef0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# New ports collection makefile for: libspectrum
# Date created: 2003-10-27
# Whom: Alexey V. Antipovsky <kemm@in-line.ru>
#
# $FreeBSD$
#
PORTNAME= libspectrum
PORTVERSION= 0.4.0
PORTREVISION= 1
CATEGORIES= emulators devel
MASTER_SITES= SF
MASTER_SITE_SUBDIR= fuse-emulator
MAINTAINER= yuri.pankov@gmail.com
COMMENT= Handling of ZX-Spectrum emulator files formats
LIB_DEPENDS= gcrypt.15:${PORTSDIR}/security/libgcrypt
USE_GMAKE= yes
USE_GNOME= glib20
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
MAN3= libspectrum.3
OPTIONS= AUDIOFILE "Support loading from .wav files" on
.include <bsd.port.pre.mk>
.if !defined(WITHOUT_AUDIOFILE)
LIB_DEPENDS+= audiofile.0:${PORTSDIR}/audio/libaudiofile
.else
CONFIGURE_ARGS+=--without-libaudiofile
.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>
|