27 lines
596 B
Makefile
27 lines
596 B
Makefile
# Created by: Andrew Pantyukhin <infofarmer@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= msghack
|
|
PORTVERSION= 0.2
|
|
CATEGORIES= devel
|
|
MASTER_SITES= CENKES
|
|
PKGNAMEPREFIX= gettext-
|
|
# Bundled in fedora gettext srpm
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Alter gettext po files in special ways
|
|
|
|
BROKEN= No public distfiles
|
|
|
|
NO_BUILD= yes
|
|
USES= python tar:bzip2
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '1s|/usr/bin/python|${PYTHON_CMD}|'\
|
|
${WRKSRC}/${PORTNAME}.py
|
|
|
|
do-install:
|
|
@${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.py ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|