diff options
author | adamw <adamw@FreeBSD.org> | 2014-08-22 00:16:56 +0000 |
---|---|---|
committer | adamw <adamw@FreeBSD.org> | 2014-08-22 00:16:56 +0000 |
commit | 8e738d54bf32d93b6233186f8d3fa8e0c55f382e (patch) | |
tree | f976eee18b6e50f481ade4e33ea2f4221719db54 | |
parent | 1eec98868ac9be5aa2a00c0fb3ad30603186085e (diff) | |
download | FreeBSD-ports-8e738d54bf32d93b6233186f8d3fa8e0c55f382e.zip FreeBSD-ports-8e738d54bf32d93b6233186f8d3fa8e0c55f382e.tar.gz |
The MDOCS check was backwards, which broke packaging. The whole check was
unnecessary, so I've just ripped it out entirely.
-rw-r--r-- | textproc/tokyodystopia/Makefile | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/textproc/tokyodystopia/Makefile b/textproc/tokyodystopia/Makefile index 202ebf4..1732a77 100644 --- a/textproc/tokyodystopia/Makefile +++ b/textproc/tokyodystopia/Makefile @@ -25,8 +25,6 @@ PLIST_SUB= SHLIB_VER=${SHLIB_VER} SHLIB_VER_MAJ=${SHLIB_VER_MAJ} OPTIONS_DEFINE= DOCS -.include <bsd.port.options.mk> - post-extract: @${RM} ${WRKSRC}/doc/index.html~ @@ -34,10 +32,5 @@ post-patch: @${REINPLACE_CMD} -e 's|@libdir@/pkgconfig|@prefix@/libdata/pkgconfig|' \ -e 's|DATADIR =.*|DATADIR = ${DOCSDIR}|' \ ${WRKSRC}/Makefile.in -.if ${PORT_OPTIONS:MDOCS} - @${REINPLACE_CMD} -e 's|mkdir -p $$(DESTDIR)$$(DATADIR)||' \ - -e 's|cp -Rf $$(DOCUMENTFILES) $$(DESTDIR)$$(DATADIR)||' \ - ${WRKSRC}/Makefile.in -.endif .include <bsd.port.mk> |