sometimes doesn't seem to get installed and I can't figure out when or why. The building cluster says it doesn't exist, therefor it gets removed.
51 lines
1.4 KiB
Makefile
51 lines
1.4 KiB
Makefile
# New ports collection makefile for: PenguinTV-devel
|
|
# Date created: 14 March 2006
|
|
# Whom: Edwin Groothuis <edwin@mavetju.org>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= PenguinTV
|
|
PORTVERSION= 1.75
|
|
PORTREVISION= 1
|
|
CATEGORIES= net audio multimedia
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= penguintv
|
|
PKGNAMESUFFIX= -devel
|
|
|
|
MAINTAINER= edwin@mavetju.org
|
|
COMMENT= Graphical RSS feed reader with incorperated playback functions - development version
|
|
|
|
BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/pysqlite2/_sqlite.so:${PORTSDIR}/databases/py-pysqlite21 \
|
|
${PYTHON_SITELIBDIR}/pycurl.so:${PORTSDIR}/ftp/py-curl \
|
|
${PYXML}
|
|
.if defined(PACKAGE_BUILDING)
|
|
BUILD_DEPENDS+= Xvfb:${X_VFBSERVER_PORT} \
|
|
${X11BASE}/lib/X11/fonts/misc/8x13O.pcf.gz:${X_FONTS_MISC_PORT}
|
|
.endif
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
|
|
OPTIONS= MOZILLA "Use Mozilla rendered (experimental)" OFF
|
|
|
|
USE_GNOME= pygnomeextras pygnome2
|
|
USE_PYTHON= yes
|
|
|
|
CONFLICTS= PenguinTV-1.*
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_MOZILLA)
|
|
BUILD_DEPENDS+= ${PYTHON_SITELIBDIR}/Pyrex/__init__.py:${PORTSDIR}/devel/pyrex \
|
|
mozilla-config:${PORTSDIR}/www/mozilla
|
|
PLIST_SUB+= WITH_MOZILLA=""
|
|
.else
|
|
EXTRA_PATCHES+= ${FILESDIR}/patchmozilla-setup.py
|
|
PLIST_SUB+= WITH_MOZILLA="@comment "
|
|
.endif
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${PYTHON_CMD} setup.py build
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && ${PYTHON_CMD} setup.py install
|
|
|
|
.include <bsd.port.post.mk>
|