mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-05 06:27:37 +00:00
d4f0d0048a
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}.
55 lines
1.5 KiB
Makefile
55 lines
1.5 KiB
Makefile
# New ports collection makefile for: gdesklets
|
|
# Date created: 11 August 2003
|
|
# Whom: Mezz <mezz7@cox.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gdesklets
|
|
PORTVERSION= 0.35.4
|
|
PORTREVISION= 1
|
|
CATEGORIES= deskutils gnome
|
|
MASTER_SITES= http://www.gdesklets.org/downloads/ \
|
|
http://www.pycage.de/download/${PORTNAME}/ \
|
|
${MASTER_SITE_GENTOO:S/%SUBDIR%/distfiles/}
|
|
DISTNAME= gDesklets-${PORTVERSION}
|
|
|
|
MAINTAINER= klammer@webonaut.com
|
|
COMMENT= A framework for Gnome 2.x for desktop applets
|
|
|
|
LIB_DEPENDS= gtop-2.0.7:${PORTSDIR}/devel/libgtop
|
|
|
|
INSTALLS_ICONS= yes
|
|
USE_BZIP2= yes
|
|
USE_GETTEXT= yes
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_PYTHON= yes
|
|
USE_X_PREFIX= yes
|
|
USE_GNOME= gnomehack gnomeprefix gnometarget intlhack librsvg2 pygnomeextras
|
|
|
|
OPTIONS= GDBM "install py-gdbm instead py-bsddb for config storage" off
|
|
|
|
MAN1= gdesklets.1
|
|
MANCOMPRESSED= no
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_GDBM)
|
|
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/gdbm.so:${PORTSDIR}/databases/py-gdbm
|
|
.else
|
|
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/_bsddb.so:${PORTSDIR}/databases/py-bsddb
|
|
.endif
|
|
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include ${PTHREAD_CFLAGS}" \
|
|
LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib ${PTHREAD_LIBS}"
|
|
CONFIGURE_ARGS= --mandir=${PREFIX}/man/
|
|
|
|
post-install:
|
|
@${MKDIR} ${PREFIX}/share/gnome/gdesklets/Displays
|
|
@${MKDIR} ${PREFIX}/share/gnome/gdesklets/Sensors
|
|
@${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${PREFIX}/lib/gdesklets
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.post.mk>
|