e242ddd466
(http://daringfireball.net/projects/markdown/) format and convert it into several formats and can be easily extended. It also provides two usage examples: - lace: markdown to xhtml conversion. - kilt: markdown to manpage conversion. WWW: http://git.instinctive.eu/cgit/libupskirt/ PR: ports/Feature safe: yes **** **** tag if you are sure this commit does not violate **** feature freeze guidelines. If in doubt, contact portmgr. **** cvs [commit aborted]: Message verification failed /usr/ports/Tools/scripts/addport: cvs commit failed, aborting. ===> Done [13:57][miwi@miwi] $ Feature safe: yes (~/dev/ports/textproc/libupskirt) zsh: command not found: Feature [13:58][miwi@miwi] $ pc (~/dev/ports/textproc/libupskirt) ===> Your username on freefall: miwi ===> Pre-commit portlint check lightweight C library that can parse John Gruber's [markdown] (http://daringfireball.net/projects/markdown/) format and convert it into several formats and can be easily extended. It also provides two usage examples: - lace: markdown to xhtml conversion. - kilt: markdown to manpage conversion. WWW: http://git.instinctive.eu/cgit/libupskirt/ PR:>····>·······ports/144209 Submitted by:>··Bapt <baptiste.daroussin at gmail.com> Feature safe: yes
34 lines
837 B
Makefile
34 lines
837 B
Makefile
# New ports collection makefile for: libupskirt
|
|
# Date created: 2010-02-10
|
|
# Whom: Bapt <baptiste.daroussin@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libupskirt
|
|
DISTVERSION= 1.0-rc2
|
|
CATEGORIES= textproc devel
|
|
MASTER_SITES= http://instinctive.eu/code/
|
|
|
|
MAINTAINER= baptiste.daroussin@gmail.com
|
|
COMMENT= Flexible C library for markdown
|
|
|
|
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.1 ${PREFIX}/lib
|
|
${INSTALL_PROGRAM} ${WRKSRC}/lace ${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/kilt ${PREFIX}/bin
|
|
cd ${PREFIX}/lib && ${LN} -s libupskirt.so.1 libupskirt.so
|
|
${MKDIR} ${PREFIX}/include/upskirt
|
|
${INSTALL_DATA} ${WRKSRC}/*.h ${PREFIX}/include/upskirt
|
|
|
|
.include <bsd.port.post.mk>
|