2000-05-17 11:15:21 +00:00
|
|
|
# New ports collection makefile for: kdetoys2
|
|
|
|
# Date created: 14 May 2000 02:45:53
|
|
|
|
# Whom: Will Andrews <will@FreeBSD.org>
|
1999-06-22 23:48:12 +00:00
|
|
|
#
|
1999-08-31 03:04:38 +00:00
|
|
|
# $FreeBSD$
|
1999-06-22 23:48:12 +00:00
|
|
|
#
|
|
|
|
|
2000-04-14 16:02:43 +00:00
|
|
|
PORTNAME= kdetoys
|
2001-12-04 03:47:18 +00:00
|
|
|
PORTVERSION= 2.2.2
|
1999-09-17 12:47:53 +00:00
|
|
|
CATEGORIES= x11-clocks kde
|
2000-09-15 21:40:47 +00:00
|
|
|
MASTER_SITES= ${MASTER_SITE_KDE}
|
2001-08-15 16:25:13 +00:00
|
|
|
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
|
2001-09-10 20:22:28 +00:00
|
|
|
DIST_SUBDIR= KDE
|
1999-06-22 23:48:12 +00:00
|
|
|
|
2001-08-25 02:17:59 +00:00
|
|
|
MAINTAINER= kde@FreeBSD.org
|
1999-06-22 23:48:12 +00:00
|
|
|
|
2001-12-04 03:47:18 +00:00
|
|
|
BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \
|
2002-01-05 02:29:15 +00:00
|
|
|
automake14:${PORTSDIR}/devel/automake14
|
2001-12-04 03:47:18 +00:00
|
|
|
|
2001-04-03 08:14:43 +00:00
|
|
|
USE_KDELIBS_VER=2
|
2000-05-17 11:15:21 +00:00
|
|
|
MOC?= ${X11BASE}/bin/moc2
|
|
|
|
USE_BZIP2= yes
|
2001-12-04 03:47:18 +00:00
|
|
|
GNU_CONFIGURE= yes
|
2002-01-05 02:29:15 +00:00
|
|
|
CONFIGURE_ARGS+=--with-qt-dir=${X11BASE}
|
2000-05-17 11:15:21 +00:00
|
|
|
USE_GMAKE= yes
|
1999-06-22 23:48:12 +00:00
|
|
|
|
Bring in a few changes to the KDE ports infrastructure, and some fixes.
- Move all stuff specific to kde core ports to x11/kde2/Makefile.kde.
+ Default to compile optimized for speed, not debugging, in ports
builds, not just packages. We don't really get that many backtraces
or debugging information, and there's a better way to provide these
things to people willing to spend some time working on KDE. It's
at (as announced before): http://freebsd.kde.org/.
- Remove teTeX dependency for kdegraphics2 upon request, and being unable
to find any reason not to. Apparently, kdegraphics still compiles
libkdvi and kdvi -- I guess dvips is merely a runtime dependency.
Therefore to enable its use one just needs to add the teTeX package.
Bump PORTREVISION to reflect dependency change.
- Fix koffice port by removing PYTHON_VERSION, which is unnecessary.
PR: 33650 (part of)
Submitted by: John Merryweather Cooper <jmcoopr@johncoop.MSHOME.bmi.net>
Reviewed by: kde-freebsd@lists.csociety.org (teTeX dep removal, and
optimizing for speed, not debugging capability)
2002-01-11 06:17:04 +00:00
|
|
|
.include "${.CURDIR}/../../x11/kde2/Makefile.kde"
|
|
|
|
|
2001-12-04 03:47:18 +00:00
|
|
|
pre-configure:
|
|
|
|
${MKDIR} ${WRKSRC}/auto-bin
|
|
|
|
.for AC in autoconf autoheader
|
|
|
|
${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC}
|
|
|
|
.endfor
|
|
|
|
.for AM in automake aclocal
|
|
|
|
${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM}
|
|
|
|
.endfor
|
2001-12-07 15:43:46 +00:00
|
|
|
cd ${WRKSRC} && env PATH=${WRKSRC}/auto-bin:$$PATH \
|
2001-12-04 03:47:18 +00:00
|
|
|
${GMAKE} -f Makefile.cvs
|
|
|
|
|
2000-05-17 11:15:21 +00:00
|
|
|
.include <bsd.port.mk>
|