1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-29 05:38:00 +00:00
freebsd-ports/multimedia/slideshow/Makefile
Ade Lovett 54a0b86543 Mass-conversion to the USE_AUTOTOOLS New World Order. The code present
in bsd.autotools.mk essentially makes this a no-op given that all the
old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in
exactly the same way as USE_AUTOTOOLS itself.

Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME
team -- all GNOME 2.12.x ports use it.

Preliminary documentation can be found at:
	http://people.FreeBSD.org/~ade/autotools.txt

which is in the process of being SGMLized before introduction into the
Porters Handbook.

Light blue touch-paper.  Run.
2005-11-15 06:52:12 +00:00

72 lines
1.9 KiB
Makefile

# New ports collection makefile for: slideshow
# Date created: 26 November 2002
# Whom: Stefan Farfeleder <e0026813@stud3.tuwien.ac.at>
#
# $FreeBSD$
#
PORTNAME= slideshow
PORTVERSION= 0.8.0.p5
PORTREVISION= 2
CATEGORIES= multimedia
MASTER_SITES= ${MASTER_SITE_SAVANNAH}
MASTER_SITE_SUBDIR= ${PORTNAME}/${PORTNAME}.pkg/${PORTVERSION:S/.p/-pre/}
DISTNAME= ${PORTNAME}-${PORTVERSION:S/.p/-pre/}
MAINTAINER= ports@FreeBSD.org
COMMENT= A slideshow presentation tool to write slides in Python or XML
LIB_DEPENDS= xml2.5:${PORTSDIR}/textproc/libxml2 \
smpeg.1:${PORTSDIR}/multimedia/smpeg
WRKSRC= ${WRKDIR}/${DISTNAME:C/-pre.*//}
INSTALLS_SHLIB= yes
USE_GMAKE= yes
USE_AUTOTOOLS= libtool:13:inc
USE_PYTHON= yes
USE_REINPLACE= yes
USE_SDL= image ttf
CONFIGURE_ARGS+= --disable-gtk-gui
CONFIGURE_ENV+= LDFLAGS="-lstdc++"
.include <bsd.port.pre.mk>
.if ${ARCH} == "amd64" || ${ARCH} == "ia64"
CFLAGS+= -fPIC
.endif
# The default resolution is 640x480
.if defined(WITH_RES_1024)
CONFIGURE_ARGS+= --with-res=1024
.elif defined(WITH_RES_800)
CONFIGURE_ARGS+= --with-res=800
.endif
pre-patch:
@${REINPLACE_CMD} -e '/SUBDIRS =/s/doc//' ${WRKSRC}/Makefile.in
.if defined(NOPORTDOCS)
@${REINPLACE_CMD} -e '/SUBDIRS =/s/examples//' ${WRKSRC}/Makefile.in
.endif
post-configure:
@${REINPLACE_CMD} -e "/^pythondir/s|= .*|= ${PYTHONPREFIX_SITELIBDIR}|"\
${WRKSRC}/src/Makefile
do-install:
@(cd ${WRKSRC}/src; ${MAKE} install)
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
@${MKDIR} ${EXAMPLESDIR}
${INSTALL_MAN} ${WRKSRC}/README ${DOCSDIR}
# Don't install Simple.py, it is broken
.for file in AutoSlide.py Backgrounds.py Simple.xml Stages.py Text.py Video.py \
Xml.py slideshow.dtd speedfull.jpg standard.ttf
${INSTALL_MAN} ${WRKSRC}/examples/${file} ${EXAMPLESDIR}
.endfor
.endif
post-install:
@${STRIP_CMD} ${PREFIX}/lib/libslideshow.so.0
# @${STRIP_CMD} ${PYTHONPREFIX_SITELIBDIR}/_slideshow.so
.include <bsd.port.post.mk>