diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2011-03-17 12:51:29 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2011-03-17 12:51:29 +0000 |
commit | 24f062b2f71d4a0eaea8a9cf2149263399e53460 (patch) | |
tree | 53edb5764aeb7b2666d9fa189de4c14740551ad5 /textproc/sphinxsearch | |
parent | 0c1fcc1da7884f2638d0ad7ebf81e7cb3998d4f7 (diff) |
- Add missing file
PR: 155452
Submitted by: Matthew Seaman <m.seaman@infracaninophile.co.uk> (maintainer)
Notes
Notes:
svn path=/head/; revision=271092
Diffstat (limited to 'textproc/sphinxsearch')
-rw-r--r-- | textproc/sphinxsearch/Makefile | 4 | ||||
-rw-r--r-- | textproc/sphinxsearch/pkg-plist | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/textproc/sphinxsearch/Makefile b/textproc/sphinxsearch/Makefile index 79028992b8e0..67e6d085cd0a 100644 --- a/textproc/sphinxsearch/Makefile +++ b/textproc/sphinxsearch/Makefile @@ -10,6 +10,7 @@ PORTNAME= sphinxsearch PORTVERSION= 0.9.9 +PORTREVISION= 1 CATEGORIES= textproc databases MASTER_SITES= http://sphinxsearch.com/files/ DISTNAME= sphinx-${PORTVERSION} @@ -17,6 +18,8 @@ DISTNAME= sphinx-${PORTVERSION} MAINTAINER= m.seaman@infracaninophile.co.uk COMMENT= Sphinx Full-Text Search Engine +LICENSE= GPLv2 + # If expat is present on the system and configure finds it, it will # unconditionally link the output binary against it. There's no way # of turning this off. So for consistency, make sure it's always on. @@ -144,6 +147,7 @@ do-install: install-bin install-docs install-examples install-bin: ${INSTALL_PROGRAM} ${WRKSRC}/src/indexer ${PREFIX}/bin/indexer ${INSTALL_PROGRAM} ${WRKSRC}/src/search ${PREFIX}/bin/search + ${INSTALL_PROGRAM} ${WRKSRC}/src/spelldump ${PREFIX}/bin/spelldump ${INSTALL_PROGRAM} ${WRKSRC}/src/searchd ${PREFIX}/sbin/searchd ${INSTALL_DATA} ${WRKSRC}/sphinx.conf.dist ${CFGFILE}.sample diff --git a/textproc/sphinxsearch/pkg-plist b/textproc/sphinxsearch/pkg-plist index 6b70ba9ab41b..168290911cd9 100644 --- a/textproc/sphinxsearch/pkg-plist +++ b/textproc/sphinxsearch/pkg-plist @@ -1,5 +1,6 @@ bin/indexer bin/search +bin/spelldump sbin/searchd @unexec if cmp -s %D/etc/sphinx.conf.sample %D/etc/sphinx.conf; then rm -f %D/etc/sphinx.conf; fi etc/sphinx.conf.sample |