87 lines
2.6 KiB
Makefile
87 lines
2.6 KiB
Makefile
# New ports collection makefile for: ogle
|
|
# Date created: Tue Oct 16 18:35:39 BRST 2001
|
|
# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ogle
|
|
PORTVERSION= 0.9.2
|
|
CATEGORIES= multimedia
|
|
MASTER_SITES= http://www.dtek.chalmers.se/groups/dvd/dist/
|
|
|
|
MAINTAINER= lioux@FreeBSD.org
|
|
COMMENT= Open DVD player that supports DVD menus
|
|
|
|
LIB_DEPENDS= a52.0:${PORTSDIR}/audio/liba52 \
|
|
dvdread.3:${PORTSDIR}/multimedia/libdvdread \
|
|
jpeg.9:${PORTSDIR}/graphics/jpeg \
|
|
mad.1:${PORTSDIR}/audio/mad \
|
|
xml2.5:${PORTSDIR}/textproc/libxml2
|
|
|
|
USE_REINPLACE= yes
|
|
USE_SUBMAKE= yes
|
|
USE_XLIB= yes
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include"
|
|
CONFIGURE_ARGS= --with-libjpeg=${LOCALBASE} \
|
|
--with-dvdread=${LOCALBASE} \
|
|
--with-libmad=${LOCALBASE} \
|
|
--with-liba52=${LOCALBASE}
|
|
INSTALLS_SHLIB= yes
|
|
|
|
MAN1= ogle.1
|
|
MAN5= oglerc.5
|
|
|
|
post-patch:
|
|
.ifdef(WITH_DVD_DEVICE)
|
|
@${REINPLACE_CMD} -E -e "s|(DEFAULT_DVD_DEVICE=\")/dev/acd0c(\")|\1${WITH_DVD_DEVICE}\2|" \
|
|
${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}
|
|
.endif
|
|
@${REINPLACE_CMD} -e "s|%%X11BASE%%|${X11BASE}|" ${WRKSRC}/scripts/ogle.in
|
|
# hack to make ogle work with liba52 + djbfft
|
|
# CFLAGS safeness
|
|
@${REINPLACE_CMD} -E -e 's|(-la52)|\1 ${LIBA52_DEP_LIBS}|; \
|
|
s,(X?CFLAGS[[:space:]]*=[[:space:]]*"\$$CFLAGS).*(-(fomit-frame-pointer|funroll-loops|march|mcpu)).*",\1",' \
|
|
${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}
|
|
|
|
pre-configure:
|
|
@${TOUCH} `${FIND} -E ${WRKSRC} -regex ".*Makefile\.(am|in)"`
|
|
@${TOUCH} ${WRKSRC}/configure.in ${WRKSRC}/configure
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
# hack to make ogle work with liba52 + djbfft
|
|
.if exists(${LOCALBASE}/lib/liba52.la)
|
|
LIBA52_DEP_LIBS!= ${GREP} dependency_libs ${LOCALBASE}/lib/liba52.la | ${CUT} -d \' -f 2
|
|
.else
|
|
LIBA52_DEP_LIBS=
|
|
.endif
|
|
|
|
.if ${ARCH} == "i386"
|
|
. if (defined(MACHINE_CPU) && ${MACHINE_CPU:Mi486} == "i486")
|
|
WITH_OPTIMIZED_BYTESWAP=yes
|
|
. endif
|
|
|
|
. if defined(WITH_OPTIMIZED_BYTESWAP)
|
|
EXTRA_PATCHES= ${FILESDIR}/extra-patch-include:ogle_endian.h
|
|
. endif
|
|
.endif
|
|
|
|
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
|
|
.ifndef(WITH_OPTIMIZED_BYTESWAP)
|
|
@${ECHO_MSG} '===>'
|
|
@${ECHO_MSG} '===> Define WITH_OPTIMIZED_BYTESWAP to use optimized byteswap'
|
|
@${ECHO_MSG} '===> routines. This works only in the i386 architecture, and'
|
|
@${ECHO_MSG} '===> only with 486 processors and above.'
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|