diff options
author | miwi <miwi@FreeBSD.org> | 2009-01-08 06:12:42 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2009-01-08 06:12:42 +0800 |
commit | 0811fd8ad9de02740d476238b6632b14e138d347 (patch) | |
tree | 7001551c40c2bf429b853097b81e1b1aa64e52ca /deskutils/gbirthday/Makefile | |
parent | b7097002bfd867a8fbfd0b7949a43b4fc2952c43 (diff) | |
download | freebsd-ports-gnome-0811fd8ad9de02740d476238b6632b14e138d347.tar.gz freebsd-ports-gnome-0811fd8ad9de02740d476238b6632b14e138d347.tar.zst freebsd-ports-gnome-0811fd8ad9de02740d476238b6632b14e138d347.zip |
GBirthday is a birthday reminder application that helps you to remember your
evolution contacts' birthdays. It puts an icon on notification area which will
blink when there is any of your contacts' birthday today. You can also check if
there is any of your contacs' birhday on next days.
WWW: http://gbirthday.sourceforge.net/
PR: ports/130091
Submitted by: Alexander Logvinov <ports at logvinov.com>
Diffstat (limited to 'deskutils/gbirthday/Makefile')
-rw-r--r-- | deskutils/gbirthday/Makefile | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/deskutils/gbirthday/Makefile b/deskutils/gbirthday/Makefile new file mode 100644 index 000000000000..3b88adf594aa --- /dev/null +++ b/deskutils/gbirthday/Makefile @@ -0,0 +1,38 @@ +# New ports collection makefile for: gbirthday +# Date created: 01 January 2009 +# Whom: Alexander Logvinov <ports@logvinov.com> +# +# $FreeBSD$ +# + +PORTNAME= gbirthday +PORTVERSION= 0.4.1 +CATEGORIES= deskutils gnome +MASTER_SITES= SF + +MAINTAINER= ports@logvinov.com +COMMENT= A birthday reminder for Evolution contacts + +RUN_DEPENDS= ${PYTHON_SITELIBDIR}/_bsddb.so:${PORTSDIR}/databases/py-bsddb + +NO_BUILD= yes +NO_WRKSUBDIR= yes +USE_PYTHON_RUN= yes +USE_GNOME= pygtk2 evolutiondataserver + +post-patch: + @${REINPLACE_CMD} -e 's|/usr/share/${PORTNAME}|${DATADIR}|g' \ + ${WRKSRC}/${PORTNAME}.py ${WRKSRC}/${PORTNAME}.desktop + @${RM} ${WRKSRC}/languages/*.orig + +do-install: +.for dir in pics languages + @${MKDIR} ${DATADIR}/${dir} + ${INSTALL_DATA} ${WRKSRC}/${dir}/* ${DATADIR}/${dir}/ +.endfor + ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.py ${DATADIR} + ${LN} -fs ${DATADIR}/${PORTNAME}.py ${PREFIX}/bin/${PORTNAME} + @${MKDIR} ${PREFIX}/share/applications + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.desktop ${PREFIX}/share/applications + +.include <bsd.port.mk> |