f3320d0aac
Due to APM dependancies, its preventing the port from building on alpha. Since I can't see what use its features would be on a platform which doesn't support power mgmnt, it seems simplest to just yank it. Approved by: will
38 lines
837 B
Makefile
38 lines
837 B
Makefile
# New ports collection makefile for: kdeutils2
|
|
# Date created: 3 November 2001
|
|
# Whom: will@cvs.kde.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= kdeutils
|
|
PORTVERSION= 3.0
|
|
CATEGORIES?= misc kde
|
|
MASTER_SITES= http://www.csociety.org/~will/kde/${PORTVERSION}/
|
|
DIST_SUBDIR= KDE
|
|
|
|
MAINTAINER?= kde@FreeBSD.org
|
|
|
|
#WRKSRC= ${WRKDIR}/kdeutils
|
|
USE_KDELIBS_VER=3
|
|
USE_BZIP2= yes
|
|
INSTALLS_SHLIB= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_TARGET=
|
|
CONFIGURE_ARGS+=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
USE_GMAKE= yes
|
|
MAN1= efax.1 efix.1 fax.1
|
|
|
|
#klaptop doesn't like alpha because alpha doesn't support apm
|
|
.if ${MACHINE_ARCH} == "alpha"
|
|
post-extract:
|
|
mv ${WRKSRC}/subdirs ${WRKSRC}/subdirs.orig
|
|
grep -v klaptopdaemon ${WRKSRC}/subdirs.orig > ${WRKSRC}/subdirs
|
|
|
|
PLIST_SUB+= ALPHA_NA="@comment "
|
|
.else
|
|
PLIST_SUB+= ALPHA_NA=""
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|