mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
789d75c728
-Update libtool and libltdl to 2.2.6a. -Remove devel/libtool15 and devel/libltdl15. -Fix ports build with libtool22/libltdl22. -Bump ports that depend on libltdl22 due to shared library version change. -Explain what to do update in the UPDATING. It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop and applications in the runtime. With help: marcus and kwm Pointyhat-exp: a few times by pav Tested by: pgollucci, "Romain Tartière" <romain@blogreen.org>, and a few MarcusCom CVS users. Also, I might have missed a few. Repocopy by: marcus Approved by: portmgr
39 lines
1.1 KiB
Makefile
39 lines
1.1 KiB
Makefile
# New ports collection makefile for: Ludia
|
|
# Date created: January 5, 2008
|
|
# Whom: Jun Kuriyama <kuriyama@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ludia
|
|
PORTVERSION= 1.5.1
|
|
CATEGORIES= databases
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_JP}
|
|
MASTER_SITE_SUBDIR= ludia/32461
|
|
|
|
MAINTAINER= kuriyama@FreeBSD.org
|
|
COMMENT= PostgreSQL extension for full-text search indexing
|
|
|
|
PGSQL_PORT= ${PORTSDIR}/databases/postgresql${PGSQL_VER}-server
|
|
RUN_DEPENDS= ${LOCALBASE}/bin/postmaster:${PGSQL_PORT} \
|
|
senna-cfg:${PORTSDIR}/textproc/senna
|
|
BUILD_DEPENDS= ${LOCALBASE}/bin/postmaster:${PGSQL_PORT} \
|
|
senna-cfg:${PORTSDIR}/textproc/senna
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_AUTOTOOLS= libtool:22
|
|
USE_PGSQL= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
# let configure find postgres stuff in non-standard places
|
|
CONFIGURE_ARGS+=--with-pgconfigdir=${LOCALBASE}/bin \
|
|
--with-pgbindir=${LOCALBASE}/bin \
|
|
--with-pgincludedir=${LOCALBASE}/include \
|
|
--with-pgincludeserverdir=${LOCALBASE}/include/postgresql/server \
|
|
--with-pglibdir=${LOCALBASE}/lib \
|
|
--with-pgpkglibdir=${LOCALBASE}/lib/postgresql \
|
|
--with-pgsharedir=${LOCALBASE}/share/postgresql
|
|
|
|
.include <bsd.port.post.mk>
|