1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-04 01:48:54 +00:00
freebsd-ports/deskutils/pypanel/Makefile
Martin Wilke 7174f83caf - Add two patches from pypanel home page to introduce a
STARTUP_DELAY configuration variable to allow pypanel
  to wait to start until after window manager. Some window
  managers start up too quickly and having just pypanel &
  in .xinitrc it sometimes fails to start. One patch is to
  pypanel and the other is to pypanelrc default configuration file.

PR:		129493
Submitted by:	Chess Griffin <chess@chessgriffin.com>
Approved by:	maintainer timeout
2009-01-10 15:18:40 +00:00

53 lines
1.5 KiB
Makefile

# New ports collection makefile for: pypanel
# Date created: 24 October 2005
# Whom: Florian Unglaub
#
# $FreeBSD$
#
PORTNAME= pypanel
PORTVERSION= 2.4
PORTREVISION= 5
CATEGORIES= deskutils
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED}
MASTER_SITE_SUBDIR= pypanel
DISTNAME= PyPanel-${PORTVERSION}
MAINTAINER= u0@rootofallevil.net
COMMENT= Desktop panel written in Python
LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 \
Xft.2:${PORTSDIR}/x11-fonts/libXft
BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/Xlib/X.py:${PORTSDIR}/x11-toolkits/py-xlib
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/Xlib/X.py:${PORTSDIR}/x11-toolkits/py-xlib
USE_PYTHON= yes
USE_PYDISTUTILS= yes
USE_EFL= imlib2
PYDISTUTILS_PKGNAME= PyPanel
PORTDOCS= *
post-patch:
@${REINPLACE_CMD} -e \
's|/usr/bin/freetype-config|${LOCALBASE}/bin/freetype-config|; \
s|/usr/bin/imlib2-config|${LOCALBASE}/bin/imlib2-config|; \
s|/usr/X11R6/include|${LOCALBASE}/include|; \
s|"COPYING", "README", ||' ${WRKSRC}/setup.py
@${REINPLACE_CMD} -e 's|sysconfig\.get_python_lib()|"${PREFIX}/share"|' \
${WRKSRC}/setup.py ${WRKSRC}/pypanel
@${REINPLACE_CMD} -e \
's|/usr/lib/libImlib2.so.1|${LOCALBASE}/lib/libImlib2.so|' \
${WRKSRC}/setup.py ${WRKSRC}/ppmodule.c
@${REINPLACE_CMD} -e 's|/etc|${PREFIX}/etc|' ${WRKSRC}/pypanel
@${REINPLACE_CMD} -e 's|/usr/share/imlib2|${LOCALBASE}/share/imlib2|' \
${WRKSRC}/pypanelrc
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif
.include <bsd.port.mk>