mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
bebf3178ae
EXPIRATION_DATE at the end of April 2017. In the past six months, about a third of the ports marked BROKEN because they were hosted on Google Code have been fixed. The remaining must not be of use to anyone. With hat: portmgr Sponsored by: Absolight
41 lines
947 B
Makefile
41 lines
947 B
Makefile
# Created by: Uffe Jakobsen <uffe@uffe.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= obkey
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= x11-wm python
|
|
MASTER_SITES= GOOGLE_CODE
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Openbox hotkey editor, written in Python and PyGTK
|
|
|
|
LICENSE= MIT
|
|
|
|
BROKEN= Unfetchable (google code has gone away)
|
|
DEPRECATED= Unfetchable for more than six months (google code has gone away)
|
|
EXPIRATION_DATE= 2017-04-30
|
|
|
|
RUN_DEPENDS= py27-gtk2>=2.14:x11-toolkits/py-gtk2
|
|
|
|
USES= gettext python
|
|
USE_PYTHON= distutils
|
|
|
|
PORTDOCS= NEWS
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's,python,env &,' \
|
|
${WRKSRC}/obkey ${WRKSRC}/obkey_classes.py
|
|
@${REINPLACE_CMD} -e '/config_prefix/s,/usr,${LOCALBASE},' \
|
|
${WRKSRC}/obkey_classes.py
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/misc/obkey.desktop ${STAGEDIR}${DESKTOPDIR}
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/NEWS ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|