7255199631
Apparently the distfile got rerolled. diff -uprN between the tarball from distcache.FreeBSD.org and the new one: diff -uprN distcache-generate-2.8/setup.py generate-2.8/setup.py --- distcache-generate-2.8/setup.py 2013-10-06 14:33:24.000000000 +0200 +++ generate-2.8/setup.py 2015-12-22 16:40:29.000000000 +0100 @@ -1,5 +1,5 @@ -#!/usr/bin/env python -# $Id: setup.py 1350 2011-09-16 16:46:58Z darcy $ +#! /usr/bin/python +# $Id: setup.py 2099 2015-07-19 00:56:08Z darcy $ from distutils.core import setup, Extension
27 lines
570 B
Makefile
27 lines
570 B
Makefile
# Created by: D'Arcy J.M. Cain <darcy@druid.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= generate
|
|
PORTVERSION= 2.8
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.druid.net/darcy/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Simple text pre-processor
|
|
|
|
USES= gmake tar:tgz
|
|
|
|
MAKE_ARGS= BINDIR=${STAGEDIR}${PREFIX}/bin \
|
|
MANDIR=${STAGEDIR}${PREFIX}/man
|
|
|
|
PLIST_FILES= bin/generate bin/rgenerate man/man1/generate.1.gz
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's,^CFLAGS *=,CFLAGS +=,' \
|
|
${WRKSRC}/Makefile
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/*
|
|
|
|
.include <bsd.port.mk>
|