mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-24 09:25:01 +00:00
3f651573ad
Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
35 lines
806 B
Makefile
35 lines
806 B
Makefile
# New ports collection makefile for: knoda
|
|
# Date created: 26.7.2002
|
|
# Whom: arved
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= knoda
|
|
PORTVERSION= 0.6.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= databases
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= knoda
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Database frontend for KDE
|
|
|
|
LIB_DEPENDS= hk_classes.5:${PORTSDIR}/databases/hk_classes
|
|
|
|
USE_KDELIBS_VER= 3
|
|
USE_PYTHON= yes
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
INSTALLS_SHLIB= yes
|
|
USE_LIBTOOL_VER= 13
|
|
USE_REINPLACE= yes
|
|
CONFIGURE_TARGET=
|
|
CONFIGURE_ARGS+= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} \
|
|
--with-hk_classes-dir=${LOCALBASE}/lib/hk_classes \
|
|
--with-hk_classes-incdir=${LOCALBASE}/include/hk_classes
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's,-pedantic ,,' ${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|