diff options
author | Chris Piazza <cpiazza@FreeBSD.org> | 1999-10-21 19:36:34 +0000 |
---|---|---|
committer | Chris Piazza <cpiazza@FreeBSD.org> | 1999-10-21 19:36:34 +0000 |
commit | a76c691e61c9d413c3d9a2b4b80c5863ae484245 (patch) | |
tree | 7687755acf69105329aa9c359efb6969f24c6625 /www/udmsearch/Makefile | |
parent | 9c8e903815d7a92a5c10abca8af646994a2ce3e0 (diff) | |
download | ports-a76c691e61c9d413c3d9a2b4b80c5863ae484245.tar.gz ports-a76c691e61c9d413c3d9a2b4b80c5863ae484245.zip |
Notes
Diffstat (limited to 'www/udmsearch/Makefile')
-rw-r--r-- | www/udmsearch/Makefile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/www/udmsearch/Makefile b/www/udmsearch/Makefile new file mode 100644 index 000000000000..3389228fc1f4 --- /dev/null +++ b/www/udmsearch/Makefile @@ -0,0 +1,40 @@ +# New ports collection makefile for: udmsearch +# Version required: 2.1.5 +# Date created: 10/19/1999 +# Whom: Kelly Yancey <kbyanc@posi.net> +# +# $FreeBSD$ +# + +DISTNAME= udmsearch-2.1.5 +CATEGORIES= www databases +MASTER_SITES= http://search.udm.net/about/Download/ \ + http://mysearch.udm.net/Download/ \ + ftp://ftp.izhcom.ru/pub/unix/UdmSearch/ \ + http://mirror.kuenzler.ch/udmsearch/Download/ + +MAINTAINER= kbyanc@posi.net + +LIB_DEPENDS= mysqlclient.6:${PORTSDIR}/databases/mysql322-client + +MAN1= indexer.1 +MAN5= indexer.conf.5 + +USE_GMAKE= yes +HAS_CONFIGURE= yes +CONFIGURE_ARGS= --prefix=${PREFIX} \ + --bindir=${PREFIX}/bin/udmsearch \ + --sysconfdir=${PREFIX}/etc/udmsearch \ + +pre-install: + ${MKDIR} ${PREFIX}/bin/udmsearch + ${MKDIR} ${PREFIX}/etc/udmsearch + +post-install: + @cp -R ${WRKDIR}/${DISTNAME}/create ${PREFIX}/etc/udmsearch + @strip ${PREFIX}/sbin/indexer + @strip ${PREFIX}/bin/udmsearch/search.cgi + @${ECHO} + @${CAT} ${PKGMESSAGE} + +.include <bsd.port.mk> |