mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
ef1b3d1071
for FreeBSD. The official KDE 4.2.0 (Codename: "The Answer") release notes can be found at: http://kde.org/announcements/4.2/index.php. New supported languages include Arabic, Icelandic, Basque, Hebrew, Romanian, Tajik and several Indian languages (Bengali India, Gujarati, Kannada, Maithili, Marathi) indicating a rise in popularity in this part of Asia. New ports for KDE 4.2.0: arabic/kde4-l10n Arabic hebrew/kde4-l10n Hebrew misc/kde4-l10n-bn_IN Bengali (India) misc/kde4-l10n-eu Basque misc/kde4-l10n-gu Gujarati misc/kde4-l10n-is Icelandic misc/kde4-l10n-kn Kannada misc/kde4-l10n-mai Maithili misc/kde4-l10n-mr Marathi misc/kde4-l10n-ro Romanian misc/kde4-l10n-tg Tajik math/eigen2 Lightweight library for vector and matrix math graphics/kipi-plugins-kde4 KDE4 kipi graphics plugins sysutils/policykit-kde PolicyKit manager for KDE Unfortunately FreeBSD 6.4 support is dropped. We'd like to say thanks for feedback and help to: Matt Tosto, Kris Moore, stickibit, David Johnson, Markus Brueffer, David Naylor, Thomas Schlesinger, Warren Liddell, Thomas Abthorpe, Diego Depaoli, Mats Andreassen, portmgr for exp-run and repocopies.
55 lines
1.3 KiB
Makefile
55 lines
1.3 KiB
Makefile
# New ports collection makefile for: kdehier4
|
|
# Date created: 2008-07-03
|
|
# Whom: Max Brazhnikov <makc@issp.ac.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= kdehier4
|
|
PORTVERSION= 1.0.3
|
|
CATEGORIES= misc kde
|
|
MASTER_SITES= # none
|
|
DISTFILES= # none
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Utility port that creates hierarchy of shared KDE4 directories
|
|
|
|
NO_BUILD= yes
|
|
NO_WRKSUBDIR= yes
|
|
USE_KDE4= kdeprefix
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${KDE4_PREFIX} != ${LOCALBASE}
|
|
PLIST_SUB+= MTREE="" \
|
|
LDCONFIG_DIR="${LDCONFIG_DIR}" \
|
|
LDCONFIG32_DIR="${LDCONFIG32_DIR}" \
|
|
KDE4_PREFIX="${KDE4_PREFIX}"
|
|
.else
|
|
PLIST_SUB+= MTREE="@comment "
|
|
.endif
|
|
|
|
do-fetch:
|
|
@${DO_NADA}
|
|
|
|
do-install:
|
|
@for dir in `${GREP} -v "^@comment" ${FILESDIR}/dirlist`; \
|
|
do \
|
|
${MKDIR} ${PREFIX}/$${dir}; \
|
|
${TOUCH} ${PREFIX}/$${dir}/.keep_me; \
|
|
done
|
|
.if ${KDE4_PREFIX} != ${LOCALBASE}
|
|
@for dir in `${GREP} -v "^@comment" ${FILESDIR}/mtree-dirlist`; \
|
|
do \
|
|
${MKDIR} ${PREFIX}/$${dir}; \
|
|
${TOUCH} ${PREFIX}/$${dir}/.keep_me; \
|
|
done
|
|
${LN} -sf ${LOCALBASE}/${LDCONFIG_DIR} ${KDE4_PREFIX}/libdata/
|
|
${LN} -sf ${LOCALBASE}/${LDCONFIG32_DIR} ${KDE4_PREFIX}/libdata/
|
|
${LN} -sf ${LOCALBASE}/libdata/pkgconfig ${KDE4_PREFIX}/libdata/
|
|
${ECHO_CMD} ${KDE4_PREFIX}/lib > \
|
|
${LOCALBASE}/${LDCONFIG_DIR}/kdehier4
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|