diff options
author | Alexander Botero-Lowry <alexbl@FreeBSD.org> | 2007-07-30 09:42:28 +0000 |
---|---|---|
committer | Alexander Botero-Lowry <alexbl@FreeBSD.org> | 2007-07-30 09:42:28 +0000 |
commit | 4942ce5a7d8a3d0cbebaf4d202011850d1f7569f (patch) | |
tree | db1f21912f461000d609ddcd5d130946bcfe9e09 /mail/gmail-notify | |
parent | b4be9b354e86bd790925c5a9a2e67df8ba20bc00 (diff) |
- Make Python 2.5.1 the default Python version
- Add significantly better support in bsd.python.mk for working with
Python Eggs and the easy_install system
Tested by: pointyhat runs
Approved by: pav (portmgr)
Most work by: perky
Thanks to: pav
Notes
Notes:
svn path=/head/; revision=196700
Diffstat (limited to 'mail/gmail-notify')
-rw-r--r-- | mail/gmail-notify/Makefile | 3 | ||||
-rw-r--r-- | mail/gmail-notify/files/Makefile.in (renamed from mail/gmail-notify/files/Makefile) | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/mail/gmail-notify/Makefile b/mail/gmail-notify/Makefile index 4fba0aa38388..4dd2574e24a6 100644 --- a/mail/gmail-notify/Makefile +++ b/mail/gmail-notify/Makefile @@ -29,10 +29,11 @@ EXTRAS_WRKSRC!= cd ${PORTSDIR}/x11-toolkits/py-gnome-extras && ${MAKE} -V WRKSRC post-patch: ${SED} -e 's|@DATADIR@|${DATADIR}|' ${FILESDIR}/gmail-notifier > ${WRKSRC}/gmail-notifier + ${SED} -e 's|@PYTHON_INCLUDEDIR@|${PYTHON_INCLUDEDIR}|' ${FILESDIR}/Makefile.in > ${WRKSRC}/Makefile pre-configure: ${CP} ${EXTRAS_WRKSRC}/egg/tray/eggtrayicon.[ch] ${EXTRAS_WRKSRC}/egg/tray/trayicon* ${WRKSRC} - ${CP} ${FILESDIR}/config.h ${FILESDIR}/Makefile ${WRKSRC} + ${CP} ${FILESDIR}/config.h ${WRKSRC} ${RM} ${WRKSRC}/pytrayicon.so do-install: diff --git a/mail/gmail-notify/files/Makefile b/mail/gmail-notify/files/Makefile.in index e41173e1bc5c..f74e771bba28 100644 --- a/mail/gmail-notify/files/Makefile +++ b/mail/gmail-notify/files/Makefile.in @@ -1,7 +1,7 @@ # $FreeBSD$ # Makefile to build trayicon.so -CFLAGS = `pkg-config --cflags gtk+-2.0 pygtk-2.0` -I${LOCALBASE}/include/python2.4/ -I. -Wall -I${LOCALBASE}/share/pygtk/2.0 -I${LOCALBASE}/libdata/pkgconfig -DEGG_COMPILATION -fPIC +CFLAGS = `pkg-config --cflags gtk+-2.0 pygtk-2.0` -I@PYTHON_INCLUDEDIR@ -I. -Wall -I${LOCALBASE}/share/pygtk/2.0 -I${LOCALBASE}/libdata/pkgconfig -DEGG_COMPILATION -fPIC LDFLAGS = `pkg-config --libs gtk+-2.0 pygtk-2.0` DEFS_DIR= ${LOCALBASE}/share/pygtk/2.0/defs/ |