aboutsummaryrefslogtreecommitdiff
path: root/multimedia/okle/Makefile
blob: bc336aa8e6e647971bcffd96caaae16402597a0c (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
# New ports collection makefile for:	Ogle KDE GUI
# Date created:         Tue Jul 9 20:24:02 UTC 2002
# Whom:			Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=	okle
PORTVERSION=	0.4
PORTREVISION=	9
CATEGORIES=	multimedia kde
MASTER_SITES=	http://okle.sourceforge.net/

MAINTAINER=	multimedia@FreeBSD.org
COMMENT=	A KDE frontend to the Ogle DVD player

BUILD_DEPENDS=	${LOCALBASE}/lib/ogle/libdvdcontrol.so.11:${PORTSDIR}/multimedia/ogle
RUN_DEPENDS=	ogle:${PORTSDIR}/multimedia/ogle

USE_AUTOTOOLS=	autoconf:262 libtool:22
USE_KDELIBS_VER=3
CONFIGURE_ARGS=	--with-ogle-dir=${LOCALBASE}/bin \
		--with-ogle-includes=${LOCALBASE}/include \
		--program-transform-name="s|,|,|" \
		--with-ogle-libs=${LOCALBASE}/lib/ogle
MAKE_JOBS_UNSAFE=	yes

# location of okle ogle_gui
DVDP_UI=${PREFIX}/lib/okle/ogle_gui
OGLE=${LOCALBASE}/bin/ogle

pre-everything::
.ifndef(WITH_DVD_DEVICE)
	@${ECHO_MSG} '===> The default DVD device is /dev/acd0c'
	@${ECHO_MSG} "===> You can choose any DVD device at Ogle's command line"
	@${ECHO_MSG} '===> Define WITH_DVD_DEVICE if you want to change the default'
	@${ECHO_MSG} "===> For example, 'make WITH_DVD_DEVICE=\"/dev/somedevice\"'"
.endif

pre-configure:
	@cd ${WRKSRC} && ${AUTOCONF} && ${AUTOHEADER}

.include <bsd.port.pre.mk>

.ifdef(WITH_DVD_DEVICE)
DEFAULT_DVD_DEVICE=${WITH_DVD_DEVICE}
.else
DEFAULT_DVD_DEVICE=/dev/acd0c
.endif

post-patch:
# point to specific device
	@${REINPLACE_CMD} -e "s|\"/dev/dvd\"|\"${DEFAULT_DVD_DEVICE}\"|" \
		${WRKSRC}/src/okle_win.cpp
# do not use version names
	@${REINPLACE_CMD} -E -e 's|^(PACKAGE[[:space:]]+=).+$$|\1${PORTNAME}|' \
		${WRKSRC}/po/Makefile.in

.include <bsd.port.post.mk>