Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/text
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv4032
Added Files:
discount.info discount.patch
Log Message:
New from -submissions
https://sourceforge.net/tracker/index.php?func=detail&aid=2654852&group_id=17203&atid=414256
--- NEW FILE: discount.info ---
Package: discount
Version: 1.3.4
Revision: 2
Description: Markdown compiler in C
License: BSD
Maintainer: Steve Huff <[email protected]>
Source: http://www.pell.portland.or.us/~orc/Code/markdown/%n-%v.tar.gz
Source-MD5: 6f4e6d7fc12c35459067563278755156
TarFilesRename: configure.sh:configure
PatchFile: %n.patch
PatchFile-MD5: 427c8a8433e6a47aba35a0d474c32646
ConfigureParams: --mandir=%p/share/man --relaxed-emphasis --enable-superscript
--enable-dl-tag --enable-div --enable-alpha-list
InfoTest: <<
TestScript: make test || exit 2
<<
InstallScript: make install.everything DESTDIR=%d
DocFiles: COPYRIGHT INSTALL README VERSION
BuildDepends: fink (>= 0.24.12)
DescDetail: <<
%n is an implementation in C of John Gruber's Markdown
(http://daringfireball.net/projects/markdown) language. Using Markdown, one
can write content for the web in a straightforward, human-readable format,
then quickly compile it to standards-compliant HTML.
<<
DescUsage: <<
%n installs a command-line utility called markdown.
The markdown program is a trivial compiler that reads in a markdown file
and writes out a html document or (if you use the -d flag) an outline
showing the parse tree.
<<
Homepage: http://www.pell.portland.or.us/~orc/Code/markdown/
DescPackaging: <<
Renamed the distribution 'configure.sh' to 'configure' in order to better
comply with Fink's default scripts.
<<
--- NEW FILE: discount.patch ---
diff -Naur discount-1.3.2-orig/Makefile.in discount-1.3.2/Makefile.in
--- discount-1.3.2-orig/Makefile.in 2009-02-25 23:09:57.000000000 -0500
+++ discount-1.3.2/Makefile.in 2009-02-26 13:15:59.000000000 -0500
@@ -17,30 +17,33 @@
all: $(PGMS) $(SAMPLE_PGMS)
install: $(PGMS)
- @INSTALL_PROGRAM@ $(PGMS) $(BINDIR)
- @INSTALL_DATA@ $(MKDLIB) $(LIBDIR)
- @INSTALL_DATA@ mkdio.h $(INCDIR)
+ @INSTALL_DIR@ $(DESTDIR)$(BINDIR)
+ @INSTALL_PROGRAM@ $(PGMS) $(DESTDIR)$(BINDIR)/
+ @INSTALL_DIR@ $(DESTDIR)$(LIBDIR)
+ @INSTALL_DATA@ $(MKDLIB) $(DESTDIR)$(LIBDIR)/
+ @INSTALL_DIR@ $(DESTDIR)$(INCDIR)
+ @INSTALL_DATA@ mkdio.h $(DESTDIR)$(INCDIR)/
install.everything: install install.samples install.man
install.samples: $(SAMPLE_PGMS) install
- @INSTALL_PROGRAM@ $(SAMPLE_PGMS) $(BINDIR)
- @INSTALL_DIR@ $(MANDIR)/man1
- @INSTALL_DATA@ theme.1 $(MANDIR)/man1
+ @INSTALL_PROGRAM@ $(SAMPLE_PGMS) $(DESTDIR)$(BINDIR)/
+ @INSTALL_DIR@ $(DESTDIR)$(MANDIR)/man1
+ @INSTALL_DATA@ theme.1 $(DESTDIR)$(MANDIR)/man1/
install.man:
- @INSTALL_DIR@ $(MANDIR)/man3
- @INSTALL_DATA@ mkd-functions.3 markdown.3 $(MANDIR)/man3
+ @INSTALL_DIR@ $(DESTDIR)$(MANDIR)/man3
+ @INSTALL_DATA@ mkd-functions.3 markdown.3 $(DESTDIR)$(MANDIR)/man3/
for x in mkd_text mkd_in mkd_string; do \
- ( echo '.\"' ; echo ".so man3/markdown.3" ) > $(MANDIR)/man3/$$x.3;\
+ ( echo '.\"' ; echo ".so man3/markdown.3" ) >
$(DESTDIR)$(MANDIR)/man3/$$x.3;\
done
for x in mkd_compile mkd_style mkd_generatehtml mkd_cleanup
mkd_doc_title mkd_doc_author mkd_doc_date; do \
- ( echo '.\"' ; echo ".so man3/mkd-functions.3" ) >
$(MANDIR)/man3/$$x.3; \
+ ( echo '.\"' ; echo ".so man3/mkd-functions.3" ) >
$(DESTDIR)$(MANDIR)/man3/$$x.3; \
done
- @INSTALL_DIR@ $(MANDIR)/man7
- @INSTALL_DATA@ markdown.7 mkd-extensions.7 $(MANDIR)/man7
- @INSTALL_DIR@ $(MANDIR)/man1
- @INSTALL_DATA@ markdown.1 $(MANDIR)/man1
+ @INSTALL_DIR@ $(DESTDIR)$(MANDIR)/man7
+ @INSTALL_DATA@ markdown.7 mkd-extensions.7 $(DESTDIR)$(MANDIR)/man7/
+ @INSTALL_DIR@ $(DESTDIR)$(MANDIR)/man1
+ @INSTALL_DATA@ markdown.1 $(DESTDIR)$(MANDIR)/man1/
install.everything: install install.man
------------------------------------------------------------------------------
_______________________________________________
Fink-commits mailing list
[email protected]
http://news.gmane.org/gmane.os.apple.fink.cvs