mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
98a8486494
Approved by: maintainer
57 lines
1.6 KiB
Makefile
57 lines
1.6 KiB
Makefile
# New ports collection makefile for: py-gnome
|
|
# Date created: 3/14/1999
|
|
# Whom: nectar@FreeBSD.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= py-gnome
|
|
PORTVERSION= 1.0.53
|
|
CATEGORIES= x11-toolkits python gnome
|
|
MASTER_SITES= ${MASTER_SITE_GNOME}
|
|
MASTER_SITE_SUBDIR= stable/sources/gnome-python
|
|
DISTNAME= gnome-python-${PORTVERSION}
|
|
|
|
MAINTAINER= nectar@FreeBSD.org
|
|
|
|
BUILD_DEPENDS= ${PYGTK_DEP}
|
|
LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 \
|
|
capplet.4:${PORTSDIR}/sysutils/gnomecontrolcenter \
|
|
panel_applet.4:${PORTSDIR}/x11/gnomecore
|
|
RUN_DEPENDS= ${PYGTK_DEP}
|
|
|
|
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
|
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
|
|
|
USE_GMAKE= yes
|
|
USE_PYTHON= yes
|
|
USE_LIBTOOL= yes
|
|
LIBTOOLFILES= configure pygnome/configure pygtk/configure
|
|
CONFIGURE_ENV= GLIB_CONFIG="${GLIB_CONFIG}" \
|
|
GTK_CONFIG="${GTK_CONFIG}"
|
|
CONFIGURE_ARGS= --with-python=${PYTHON_CMD} \
|
|
--with-gnome-config=${X11BASE}/bin/gnome-config
|
|
|
|
EG_SRC_DIR= ${WRKSRC}/pygnome/examples
|
|
EG_DST_DIR= ${PREFIX}/share/examples/py-gnome
|
|
PYGTK_DEP= ${PYTHON_LIBDIR}/site-packages/_gtkmodule.so:${PORTSDIR}/x11-toolkits/py-gtk
|
|
PLIST_COMPLETE= ${PKGDIR}/PLIST
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
PLIST= ${PLIST_COMPLETE}
|
|
post-install:
|
|
${MKDIR} ${EG_DST_DIR}
|
|
${TAR} -C ${EG_SRC_DIR} -cf - . | ${TAR} -C ${EG_DST_DIR} -xvf -
|
|
${CHOWN} -R ${BINOWN}:${BINGRP} ${EG_DST_DIR}
|
|
find ${EG_DST_DIR} -type d -print | xargs ${CHMOD} 0555
|
|
find ${EG_DST_DIR} -type f -print | xargs ${CHMOD} 0444
|
|
.else
|
|
PLIST= ${WRKDIR}/PLIST.nodocs
|
|
pre-install:
|
|
${RM} -f ${PLIST}
|
|
${GREP} -E -v '^(@dirrm )?(share/examples/)|(share/doc/)' \
|
|
${PLIST_COMPLETE} > ${PLIST}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|