diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2011-03-02 10:04:38 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2011-03-02 10:04:38 +0800 |
commit | b6f8e3b68dff8f0c4542ac11de75e6a333711620 (patch) | |
tree | 5ae2a2bfaa3cc7965793e8b63c5c2c8960aef57c /textproc | |
parent | 32069af613d0e64d6b36a6daff40a8fe492878ce (diff) | |
download | freebsd-ports-gnome-b6f8e3b68dff8f0c4542ac11de75e6a333711620.tar.gz freebsd-ports-gnome-b6f8e3b68dff8f0c4542ac11de75e6a333711620.tar.zst freebsd-ports-gnome-b6f8e3b68dff8f0c4542ac11de75e6a333711620.zip |
- Update to 1.04
- Fix CONFIGURE_ARGS of WITH_ACCESS
- Use bsd.port.options.mk
- Use PLIST_FILES/DIRS instead of PLIST
- Space/tab twiddle
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/tidyp/Makefile | 60 | ||||
-rw-r--r-- | textproc/tidyp/distinfo | 5 | ||||
-rw-r--r-- | textproc/tidyp/pkg-plist | 12 |
3 files changed, 37 insertions, 40 deletions
diff --git a/textproc/tidyp/Makefile b/textproc/tidyp/Makefile index ff82d7bf459d..ec374f00aae5 100644 --- a/textproc/tidyp/Makefile +++ b/textproc/tidyp/Makefile @@ -5,41 +5,51 @@ # $FreeBSD$ # -PORTNAME= tidyp -PORTVERSION= 1.02 -CATEGORIES= textproc www -MASTER_SITES= http://cloud.github.com/downloads/petdance/tidyp/ \ - LOCAL/sunpoet - -MAINTAINER= sunpoet@FreeBSD.org -COMMENT= A library and program to validate and fix HTML - -GNU_CONFIGURE= yes -USE_LDCONFIG= yes - -OPTIONS= ACCESS "Support Accessibility checks" off \ - ASIAN "Support Asian encoding" off \ - DEBUG "Enable debugging" off \ - UTF16 "Support UTF-16 encoding" off - -PLIST_SUB+= TIDYP_VER="${PORTVERSION}" - -.include <bsd.port.pre.mk> +PORTNAME= tidyp +PORTVERSION= 1.04 +CATEGORIES= textproc www +MASTER_SITES= http://cloud.github.com/downloads/petdance/tidyp/ \ + LOCAL/sunpoet + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= A library and program to validate and fix HTML + +GNU_CONFIGURE= yes +USE_LDCONFIG= yes + +OPTIONS= ACCESS "Support Accessibility checks" off \ + ASIAN "Support Asian encoding" off \ + DEBUG "Enable debugging" off \ + UTF16 "Support UTF-16 encoding" off + +PLIST_FILES= bin/${PORTNAME} \ + include/${PORTNAME}/buffio.h \ + include/${PORTNAME}/platform.h \ + include/${PORTNAME}/tidyp.h \ + include/${PORTNAME}/tidypenum.h \ + lib/lib${PORTNAME}-${PORTVERSION}.so \ + lib/lib${PORTNAME}-${PORTVERSION}.so.0 \ + lib/lib${PORTNAME}.a \ + lib/lib${PORTNAME}.la \ + lib/lib${PORTNAME}.so +PLIST_DIRS= include/${PORTNAME} + +.include <bsd.port.options.mk> .if defined(WITH_ACCESS) -CONFIGURE_ARGS+= --enable-debug +CONFIGURE_ARGS+=--enable-access .endif .if defined(WITH_ASIAN) -CONFIGURE_ARGS+= --enable-asian +CONFIGURE_ARGS+=--enable-asian .endif .if defined(WITH_DEBUG) -CONFIGURE_ARGS+= --enable-debug +CONFIGURE_ARGS+=--enable-debug .endif .if defined(WITH_UTF16) -CONFIGURE_ARGS+= --enable-utf16 +CONFIGURE_ARGS+=--enable-utf16 .endif -.include <bsd.port.post.mk> +.include <bsd.port.mk> diff --git a/textproc/tidyp/distinfo b/textproc/tidyp/distinfo index c6e2e02ca3e9..bb535fcb19b1 100644 --- a/textproc/tidyp/distinfo +++ b/textproc/tidyp/distinfo @@ -1,3 +1,2 @@ -MD5 (tidyp-1.02.tar.gz) = 4fc6f0ba8fb1e2ffafbf8f5963f58969 -SHA256 (tidyp-1.02.tar.gz) = 6ff0eb94a1ac548339a1ea3d377e72bb1261491ffa7df29851aaa1c25e168004 -SIZE (tidyp-1.02.tar.gz) = 674947 +SHA256 (tidyp-1.04.tar.gz) = 20b0fad32c63575bd4685ed09b8c5ca222bbc7b15284210d4b576d0223f0b338 +SIZE (tidyp-1.04.tar.gz) = 662801 diff --git a/textproc/tidyp/pkg-plist b/textproc/tidyp/pkg-plist deleted file mode 100644 index 120ede53cb7c..000000000000 --- a/textproc/tidyp/pkg-plist +++ /dev/null @@ -1,12 +0,0 @@ -@comment $FreeBSD$ -bin/tidyp -include/tidyp/buffio.h -include/tidyp/platform.h -include/tidyp/tidyp.h -include/tidyp/tidypenum.h -lib/libtidyp-%%TIDYP_VER%%.so -lib/libtidyp-%%TIDYP_VER%%.so.0 -lib/libtidyp.a -lib/libtidyp.la -lib/libtidyp.so -@dirrm include/tidyp |