blob: e376a2146d87a1df47a3485524794699f3d76e9a (
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
# New ports collection makefile for: KDE2 Multimedia
# Date created: Saturday 2 September 2000
# Whom: Will Andrews <will@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= kdemultimedia
PORTVERSION= 2.2.2
CATEGORIES= audio kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \
automake14:${PORTSDIR}/devel/automake14
.if ${MACHINE_ARCH} == "i386" && !defined(NO_KDE_OBJPRELINK)
BUILD_DEPENDS+= objprelink:${PORTSDIR}/devel/objprelink
.endif
RUN_DEPENDS= xanim:${PORTSDIR}/graphics/xanim
USE_KDELIBS_VER=2
USE_BZIP2= yes
INSTALLS_SHLIB= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS+=--with-qt-includes=${X11BASE}/include/qt2 \
--with-qt-libraries=${X11BASE}/lib
.if ${MACHINE_ARCH} == "i386" && !defined(NO_KDE_OBJPRELINK)
CONFIGURE_ARGS+=--enable-objprelink
.endif
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_NDEBUG)
CONFIGURE_ARGS+=--disable-debug
.endif
USE_GMAKE= yes
MAKE_ENV= ${CONFIGURE_ENV}
.include <bsd.port.pre.mk>
.if exists(${LOCALBASE}/include/ogg/ogg.h) \
|| exists(${LOCALBASE}/include/vorbis/vorbisfile.h)
WITH_OGGVORBIS= yes
.endif
.if defined(WITH_OGGVORBIS) && ${WITH_OGGVORBIS} == yes
LIB_DEPENDS+= ogg.2:${PORTSDIR}/audio/libogg \
vorbis.0:${PORTSDIR}/audio/libvorbis
PLIST_SUB+= OGGVORBIS=""
.else
PLIST_SUB+= OGGVORBIS="@comment "
pre-everything::
@${ECHO_MSG}
@${ECHO_MSG} "If you want to compile with ogg/vorbis support,"
@${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_OGGVORBIS=yes\""
@${ECHO_MSG}
.endif
pre-configure:
${PERL} -pi -e "s@all_includes=\"@all_includes=\"-I/usr/include @g" \
${WRKSRC}/acinclude.m4 ${WRKSRC}/aclocal.m4
${PERL} -pi -e \
's,kscd_compile=no,kscd_compile=yes,g; \
s,kde_artsplug_compiles = xno,kde_artsplug_compiles = x,g' \
${WRKSRC}/kscd/configure.in.in
${MKDIR} ${WRKSRC}/auto-bin
.for AC in autoconf autoheader
${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC}
.endfor
.for AM in automake aclocal
${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM}
.endfor
cd ${WRKSRC} && env PATH=${WRKSRC}/auto-bin:$$PATH \
${GMAKE} -f Makefile.cvs
post-install:
@${ECHO_MSG}
@${ECHO_MSG} "In order to run the kscd program properly, please run as root:"
@${ECHO_MSG}
@${ECHO_MSG} " # ${LN} -sf <cdrom_device> /dev/cdrom"
@${ECHO_MSG} " # ${CHMOD} 666 <cdrom_device>"
@${ECHO_MSG}
@${ECHO_MSG} "to link and give permission to access the CD-ROM device."
@${ECHO_MSG} "For example, if you have an IDE/ATAPI CD-ROM device:"
@${ECHO_MSG}
@${ECHO_MSG} " # ${LN} -sf /dev/racd0c /dev/cdrom"
@${ECHO_MSG} " # ${CHMOD} 666 /dev/racd0c"
@${ECHO_MSG}
.include <bsd.port.post.mk>
|