diff options
Diffstat (limited to 'databases/mysql323-server/Makefile')
-rw-r--r-- | databases/mysql323-server/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/databases/mysql323-server/Makefile b/databases/mysql323-server/Makefile index ec03a4d9656a..7d7053cb00b8 100644 --- a/databases/mysql323-server/Makefile +++ b/databases/mysql323-server/Makefile @@ -6,8 +6,8 @@ # PORTNAME?= ${MASTERPORTNAME} -PORTVERSION= 3.23.41 -PORTREVISION?= 1 +PORTVERSION= 3.23.42 +PORTREVISION?= 0 CATEGORIES= databases MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ http://www.kernelnotes.de/MySQL/Downloads/MySQL-3.23/ \ @@ -152,4 +152,9 @@ post-install: .endif +# This is for the maintainer only... +make-plist: + /usr/bin/find foo -type f -or -type l | /usr/bin/cut -d / -f 2- | /usr/bin/sort > ${.CURDIR}/pkg-plist.new + /usr/bin/perl -i -ne 'if (m#share/doc/#) { print "%%PORTDOCS%%", $$_; } else { print $$_; }' ${.CURDIR}/pkg-plist.new + .include <bsd.port.post.mk> |