2001-11-06 14:30:20 +00:00
|
|
|
# New ports collection makefile for: bbconf
|
|
|
|
# Date created: 29 October 2001
|
|
|
|
# Whom: Stijn Hoop <stijn@win.tue.nl>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= bbconf
|
2004-08-10 18:48:23 +00:00
|
|
|
PORTVERSION= 1.10
|
2008-06-06 14:17:21 +00:00
|
|
|
PORTREVISION= 4
|
2001-11-06 14:30:20 +00:00
|
|
|
CATEGORIES= x11-wm
|
- Remove unneeded dependency from gtk12/gtk20 [1]
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Remove X11BASE support in favor of LOCALBASE or PREFIX
- Use USE_LDCONFIG instead of INSTALLS_SHLIB
- Remove unneeded USE_GCC 3.4+
Thanks to all Helpers:
Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr,
ehaupt, nox, itetcu, flz, pav
PR: 116263
Tested on: pointyhat
Approved by: portmgr (pav)
2008-04-19 17:56:05 +00:00
|
|
|
MASTER_SITES= SF
|
2001-11-06 14:30:20 +00:00
|
|
|
|
2004-08-10 11:04:41 +00:00
|
|
|
MAINTAINER= ports@FreeBSD.org
|
2003-02-21 14:19:11 +00:00
|
|
|
COMMENT= Configurator for the Blackbox window manager
|
2001-11-06 14:30:20 +00:00
|
|
|
|
- Remove unneeded dependency from gtk12/gtk20 [1]
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Remove X11BASE support in favor of LOCALBASE or PREFIX
- Use USE_LDCONFIG instead of INSTALLS_SHLIB
- Remove unneeded USE_GCC 3.4+
Thanks to all Helpers:
Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr,
ehaupt, nox, itetcu, flz, pav
PR: 116263
Tested on: pointyhat
Approved by: portmgr (pav)
2008-04-19 17:56:05 +00:00
|
|
|
USE_XORG= x11
|
2002-08-28 06:06:22 +00:00
|
|
|
USE_QT_VER= 3
|
2004-08-10 18:48:23 +00:00
|
|
|
USE_PERL5_BUILD= yes
|
2006-02-23 10:40:44 +00:00
|
|
|
GNU_CONFIGURE= yes
|
2001-11-06 14:30:20 +00:00
|
|
|
|
|
|
|
MAN1= bbconf.1
|
2004-08-10 18:48:23 +00:00
|
|
|
PORTDOCS= AUTHORS ChangeLog README README.html TODO
|
|
|
|
PLIST_FILES= bin/bbconf \
|
2006-02-23 10:40:44 +00:00
|
|
|
lib/bbconf/plugins/libbbconf.la \
|
2004-08-10 18:48:23 +00:00
|
|
|
lib/bbconf/plugins/libbbconf.so \
|
2006-02-23 10:40:44 +00:00
|
|
|
lib/bbconf/plugins/libkeybindings.la \
|
2004-08-10 18:48:23 +00:00
|
|
|
lib/bbconf/plugins/libkeybindings.so \
|
2006-02-23 10:40:44 +00:00
|
|
|
lib/bbconf/plugins/libmenu.la \
|
2004-08-10 18:48:23 +00:00
|
|
|
lib/bbconf/plugins/libmenu.so \
|
2006-02-23 10:40:44 +00:00
|
|
|
lib/bbconf/plugins/libthemes.la \
|
2004-08-10 18:48:23 +00:00
|
|
|
lib/bbconf/plugins/libthemes.so
|
|
|
|
PLIST_DIRS= lib/bbconf/plugins lib/bbconf
|
2001-11-06 14:30:20 +00:00
|
|
|
|
2006-03-06 20:39:53 +00:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
2002-08-28 06:06:22 +00:00
|
|
|
post-patch:
|
2006-03-24 11:20:57 +00:00
|
|
|
@${REINPLACE_CMD} -e 's|: install-docDATA|:|g' ${WRKSRC}/Makefile.in
|
|
|
|
@${REINPLACE_CMD} -e 's|-O2 ||g ; \
|
2007-03-17 18:15:25 +00:00
|
|
|
s|-lpthread|${PTHREAD_LIBS}|g; s|echo aout|echo elf|' \
|
|
|
|
${WRKSRC}/configure
|
2006-03-24 11:20:57 +00:00
|
|
|
.if ${ARCH} == "amd64" || ${ARCH} == "ia64"
|
|
|
|
@${REINPLACE_CMD} -e '/^CXXFLAGS =/s/$$/ -fPIC/' \
|
|
|
|
${WRKSRC}/bbconf/plugins/*/Makefile.in
|
|
|
|
.endif
|
2004-08-10 18:48:23 +00:00
|
|
|
|
|
|
|
post-install:
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
|
|
@${MKDIR} ${DOCSDIR}
|
|
|
|
.for file in ${PORTDOCS}
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
|
|
|
|
.endfor
|
|
|
|
.endif
|
2002-08-28 06:06:22 +00:00
|
|
|
|
2006-03-06 20:39:53 +00:00
|
|
|
.include <bsd.port.post.mk>
|