Bryan Vyhmeister <br...@bsdjournal.net> wrote:
> This is another maintainer update of lowdown from 0.10.0 to 1.0.0.
> There are quite a few changes included in the in-between releases. The
> changes included are:
> 
> [...]
> 
> I did testing on amd64 with no issues. It does appear that the
> liblowdown static library is no more also in case someone is using that.
> I believe it should work fine everywhere. If someone could ok and
> commit, that would be great. Thank you.
> 
> Bryan

works fine here, but I think it'd be better if we keep the library, the
header and the manpages :)

it seems that now an additional FAKE_TARGET is needed.  diff below
addresses that and also adds the proper SHARED_LIBS now that the port
has one.

ok?

Index: Makefile
===================================================================
RCS file: /home/cvs/ports/textproc/lowdown/Makefile,v
retrieving revision 1.29
diff -u -p -r1.29 Makefile
--- Makefile    3 May 2022 15:39:24 -0000       1.29
+++ Makefile    25 Jul 2022 19:40:33 -0000
@@ -1,7 +1,9 @@
 COMMENT =      simple markdown translator
-DISTNAME =     lowdown-0.10.0
+DISTNAME =     lowdown-1.0.0
 CATEGORIES =   textproc
 
+SHARED_LIBS =  lowdown         0.0     # 1
+
 HOMEPAGE =     https://kristaps.bsd.lv/lowdown/
 MAINTAINER =   Bryan Vyhmeister <br...@bsdjournal.net>
 
@@ -16,8 +18,10 @@ WANTLIB +=   c m
 CONFIGURE_STYLE =      simple
 CONFIGURE_ARGS =       PREFIX="${PREFIX}"
 
-ALL_TARGET =   lowdown
+MAKE_FLAGS +=  LIBVER="${LIBlowdown_VERSION}"
 
+ALL_TARGET =   lowdown
+FAKE_TARGET =  install install_libs
 TEST_TARGET =  regress
 
 .include <bsd.port.mk>
Index: distinfo
===================================================================
RCS file: /home/cvs/ports/textproc/lowdown/distinfo,v
retrieving revision 1.25
diff -u -p -r1.25 distinfo
--- distinfo    3 May 2022 15:39:24 -0000       1.25
+++ distinfo    25 Jul 2022 19:30:20 -0000
@@ -1,2 +1,2 @@
-SHA256 (lowdown-0.10.0.tar.gz) = t1ytJbEPpy0sRzACDq31Y0WGCWT0Jmu8sYNj58icYpc=
-SIZE (lowdown-0.10.0.tar.gz) = 229928
+SHA256 (lowdown-1.0.0.tar.gz) = p8nbvUDj6dkpb/bvasVP7IOxq+VNt7YRPNnA9pKiDBM=
+SIZE (lowdown-1.0.0.tar.gz) = 247307
Index: pkg/PLIST
===================================================================
RCS file: /home/cvs/ports/textproc/lowdown/pkg/PLIST,v
retrieving revision 1.14
diff -u -p -r1.14 PLIST
--- pkg/PLIST   3 May 2022 15:39:24 -0000       1.14
+++ pkg/PLIST   25 Jul 2022 19:41:06 -0000
@@ -2,6 +2,7 @@
 @bin bin/lowdown-diff
 include/lowdown.h
 @static-lib lib/liblowdown.a
+@lib lib/liblowdown.so.${LIBlowdown_VERSION}
 lib/pkgconfig/lowdown.pc
 @man man/man1/lowdown-diff.1
 @man man/man1/lowdown.1
@@ -38,3 +39,6 @@ lib/pkgconfig/lowdown.pc
 @man man/man3/lowdown_term_rndr.3
 @man man/man3/lowdown_tree_rndr.3
 @man man/man5/lowdown.5
+share/lowdown/
+share/lowdown/odt/
+share/lowdown/odt/styles.xml

Reply via email to