Changes: 4.3 New Features * [1208377] raise and iconify windows with mouse wheel * [1210550] makefile option to compile plugins statically * makefile help was added. run 'make help' to get it * deskno gui changes Fixed Bugs * deskno can't be staticaly compiled * typo fixes * Makefile errors for shared and static plugin build 4.2 Fixed Bugs * [1161921] menu image is too small * [1106944] ERROR used before int declaration breaks build * [1106946] -isystem needs space? * [1206383] makefile fails if CFLAGS set on command line * [1206385] DnD in launchbar fails if url has a space * fixed typos in error messages New Features * New code for panel's buttons. Affected plugins are wincmd, launchbar and menu * Depreceted option menu widget was replaced by combo box * sys tray is packed into shadowed in frame * pad is inserted betwean tasks in a taskbar * clock was made flat
31 lines
665 B
Makefile
31 lines
665 B
Makefile
# $NetBSD: Makefile,v 1.6 2005/06/30 22:38:09 leonardschmidt Exp $
|
|
#
|
|
|
|
DISTNAME= fbpanel-4.3
|
|
CATEGORIES= x11
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=fbpanel/}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= reed@reedmedia.net
|
|
HOMEPAGE= http://fbpanel.sourceforge.net/
|
|
COMMENT= Desktop panel with menu, pager, and other plugins
|
|
|
|
USE_TOOLS+= gmake
|
|
HAS_CONFIGURE= yes
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if ${OPSYS} == "Linux"
|
|
CONFIGURE_ARGS+= --cpu=on
|
|
.else
|
|
CONFIGURE_ARGS+= --cpu=off
|
|
.endif
|
|
|
|
CONFIGURE_ARGS+= --prefix=${PREFIX}
|
|
|
|
PKGMANDIR?= man
|
|
MAKE_ENV+= PKGMANDIR=${PKGMANDIR}
|
|
MANCOMPRESSED= yes
|
|
|
|
.include "../../x11/gtk2/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|