diff options
author | will <will@FreeBSD.org> | 2002-07-05 03:39:36 +0800 |
---|---|---|
committer | will <will@FreeBSD.org> | 2002-07-05 03:39:36 +0800 |
commit | 860086c2c582befa5c79b3013248f451d375f0c5 (patch) | |
tree | 99e3f324f4905e74a60a75b642516144e04ac3b2 /x11/kde3 | |
parent | 210f31c64051769f63d1f851833be4213437de62 (diff) | |
download | freebsd-ports-gnome-860086c2c582befa5c79b3013248f451d375f0c5.tar.gz freebsd-ports-gnome-860086c2c582befa5c79b3013248f451d375f0c5.tar.zst freebsd-ports-gnome-860086c2c582befa5c79b3013248f451d375f0c5.zip |
Update to 3.0.2 -- full log available in ports/x11/kde3/Makefile,v 1.51.
Diffstat (limited to 'x11/kde3')
-rw-r--r-- | x11/kde3/Makefile.kde | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/x11/kde3/Makefile.kde b/x11/kde3/Makefile.kde index 5caac1294006..da73119350fd 100644 --- a/x11/kde3/Makefile.kde +++ b/x11/kde3/Makefile.kde @@ -11,6 +11,38 @@ CONFIGURE_ARGS?= # Stop the docs from regenerating. COPY= -c -p +# For ports that have I18N components only. +.if defined(KDE_I18N) +_NO_KDE_FINAL= yes +_NO_KDE_NDEBUG= yes +.endif + +# Unfortunately, this feature doesn't work right now due to binary files. +_NO_KDE_PATCHUP=yes + +# Start options here. +.if !defined(_NO_KDE_PATCHUP) +.if !defined(KDE_PATCHFROM_VER) +PATCHFROM_VER= ${KDE_ORIGVER} +.else +PATCHFROM_VER= ${KDE_PATCHFROM_VER} +.endif +.if !defined(KDE_PATCHTO_VER) +PATCHTO_VER= ${KDE_VERSION} +.else +PATCHTO_VER= ${KDE_PATCHTO_VER} +.endif +.if !defined(KDE_DISTNAME) +DISTNAME= ${PORTNAME}-${PATCHFROM_VER} +.else +DISTNAME= ${KDE_DISTNAME} +.endif +PATCH_SITES= ${MASTER_SITE_LOCAL} +PATCH_SITE_SUBDIR= will/kde-diffs/${KDE_VERSION} +PATCHFILES= ${PORTNAME}-${PATCHFROM_VER}-${PATCHTO_VER}.diff.bz2 +PATCH_DIST_STRIP=-p1 +.endif + .if !defined(_NO_KDE_CONFTARGET_HACK) CONFIGURE_TARGET= CONFIGURE_ARGS+=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} |