36 lines
712 B
Makefile
36 lines
712 B
Makefile
# $OpenBSD: Makefile,v 1.2 2005/07/01 06:55:49 xsa Exp $
|
|
|
|
COMMENT= "LiveJournal client for Python"
|
|
|
|
DISTNAME= charm-1.6.0
|
|
CATEGORIES= net news
|
|
|
|
HOMEPAGE= http://ljcharm.sourceforge.net/
|
|
|
|
MAINTAINER= Mike Pechkin <mpech@openbsd.org>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=ljcharm/}
|
|
|
|
MODULES= lang/python
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/charm
|
|
|
|
post-configure:
|
|
@perl -pi -e 's|%%PREFIX%%|${PREFIX}|g' \
|
|
${WRKSRC}/charm.1 \
|
|
${WRKSRC}/charmrc.5
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README.charm ${DOCSDIR}/README
|
|
|
|
.include <bsd.port.mk>
|