blob: 6d3e680156c624c3baa439876bf8de819302b92d (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# New ports collection makefile for: xsidplay
# Date created: 28 November 1999
# Whom: Anders Nordby <anders@fix.no>
#
# $FreeBSD$
#
PORTNAME= xsidplay
PORTVERSION= 1.6.5.1a
PORTREVISION= 1
PORTEPOCH= 1
CATEGORIES= audio emulators
MASTER_SITES= http://www.geocities.com/SiliconValley/Lakes/5147/sidplay/packages/
EXTRACT_SUFX= .tgz
MAINTAINER= ports@FreeBSD.org
COMMENT= Graphical front end for libsidplay
.if defined(WITH_SIDPLAY2)
LIB_DEPENDS= sidplay2.0:${PORTSDIR}/audio/libsidplay2
.else
LIB_DEPENDS= sidplay.1:${PORTSDIR}/audio/libsidplay
.endif
USE_X_PREFIX= yes
USE_QT_VER= 3
USE_GMAKE= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --with-qt3 --with-qt-binaries=${X11BASE}/bin
.if defined(WITH_SIDPLAY2)
CONFIGURE_ARGS+= --with-sidplay2
.endif
QTCPPFLAGS+= ${PTHREAD_CFLAGS}
QTCFGLIBS+= ${PTHREAD_LIBS}
USE_REINPLACE= yes
MAN1= xsidplay.1
.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 502126
BROKEN= "Does not compile on FreeBSD >= 5.x"
.endif
.if ${MACHINE_ARCH} == "alpha"
CFLAGS+= -O0
.endif
pre-patch:
.for file in configure src/Makefile.in
@${REINPLACE_CMD} -e 's|lib-mt|libqt-mt|g' ${WRKSRC}/${file}
.endfor
@${REINPLACE_CMD} -e 's|-lqt|-lqt-mt|g' ${WRKSRC}/configure
@${REINPLACE_CMD} -e 's|/usr/share|${PREFIX}|g' ${WRKSRC}/xsidplay.1
do-install:
@${MKDIR} ${PREFIX}/share/pixmaps
@${INSTALL_PROGRAM} ${WRKSRC}/src/xsidplay ${PREFIX}/bin
@${INSTALL_DATA} ${WRKSRC}/xsidplay.xpm ${PREFIX}/share/pixmaps
@${INSTALL_MAN} ${WRKSRC}/xsidplay.1 ${MANPREFIX}/man/man1
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
@${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
@${INSTALL_DATA} ${WRKSRC}/*.faq ${DOCSDIR}
.endif
.include <bsd.port.post.mk>
|