mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
41 lines
834 B
Makefile
41 lines
834 B
Makefile
# New ports collection makefile for: py-notify
|
|
# Date created: 03 December 2006
|
|
# Whom: Mezz <mezz@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= notify
|
|
PORTVERSION= 0.1.1
|
|
DISTVERSIONPREFIX=python-
|
|
PORTREVISION= 4
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= http://www.galago-project.org/files/releases/source/notify-python/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= A python bindings for libnotify
|
|
|
|
LIB_DEPENDS= notify.1:${PORTSDIR}/devel/libnotify
|
|
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
USE_GNOME= gnomehack gnometarget pygtk2
|
|
USE_PYTHON= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
DOCS= AUTHORS COPYING ChangeLog NEWS
|
|
|
|
post-extract:
|
|
@${RM} ${WRKSRC}/src/pynotify.c
|
|
|
|
.ifndef (NOPORTDOCS)
|
|
post-install:
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for i in ${DOCS}
|
|
@${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|