mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
b39446b81d
- update website - changes: * New features: + new callbacks for document prolog and epilog, + support of PHP-Markdown-like tables, through 3 new callbacks. * Several bug fixes, most notably: + span-level entities are now correctly recognized in headers, + empty ATX-styles header (i.e. lines containing only '#' charcters) no longer crash the library + empty documents are now correctly handled + blackslash escapes work in inline URIs, thereby allowing to include ')' characters in such URIs. PR: ports/157250 Submitted by: Natacha Porté <natacha@instinctive.eu> (upstream)
38 lines
867 B
Makefile
38 lines
867 B
Makefile
# New ports collection makefile for: libupskirt
|
|
# Date created: 2010-02-10
|
|
# Whom: Bapt <baptiste.daroussin@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libupskirt
|
|
DISTVERSION= 1.1
|
|
CATEGORIES= textproc devel
|
|
MASTER_SITES= http://instinctive.eu/code/
|
|
|
|
MAINTAINER= bapt@FreeBSD.org
|
|
COMMENT= Flexible C library for markdown
|
|
|
|
LICENSE= BSD
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
MAKEFILE= BSDmakefile
|
|
USE_LDCONFIG= yes
|
|
USE_BZIP2= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 700000
|
|
BROKEN= does not compile on 6.X
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/libupskirt.so.2 ${PREFIX}/lib
|
|
${INSTALL_PROGRAM} ${WRKSRC}/lace ${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/kilt ${PREFIX}/bin
|
|
cd ${PREFIX}/lib && ${LN} -s libupskirt.so.2 libupskirt.so
|
|
${MKDIR} ${PREFIX}/include/upskirt
|
|
${INSTALL_DATA} ${WRKSRC}/*.h ${PREFIX}/include/upskirt
|
|
|
|
.include <bsd.port.post.mk>
|