mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
50f8eaece1
- USE_PYTHON* = 2.X -> USE_PYTHON* = 2 - USE_PYTHON* = 2.X+ -> USE_PYTHON* = yes Reviewed by: python (mva, rm) Approved by: portmgr-lurkers (mat)
32 lines
706 B
Makefile
32 lines
706 B
Makefile
# Created by: Jesse Kempf <jessekempf@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= sievelog
|
|
PORTVERSION= 1.0.1
|
|
CATEGORIES= sysutils python
|
|
MASTER_SITES= GOOGLE_CODE
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= jessekempf@gmail.com
|
|
COMMENT= Syslog message filter
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS=yes
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
PLIST_FILES= bin/${PORTNAME} \
|
|
etc/${PORTNAME}.conf.example
|
|
|
|
MAN1= ${PORTNAME}.1
|
|
MAN5= ${PORTNAME}.conf.5
|
|
|
|
NO_STAGE= yes
|
|
post-install:
|
|
@${CP} -p ${WRKSRC}/test.sv ${PREFIX}/etc/${PORTNAME}.conf.example
|
|
@${INSTALL_MAN} ${WRKSRC}/man/man1/${MAN1} ${MANPREFIX}/man/man1
|
|
@${INSTALL_MAN} ${WRKSRC}/man/man5/${MAN5} ${MANPREFIX}/man/man5
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|