090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
# Ports collection makefile for: nitrogen
|
|
# Date created: 4 July 3007
|
|
# Whom: Jonathan Liu <Net147@hotmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= nitrogen
|
|
PORTVERSION= 1.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://l3ib.org/nitrogen/files/ \
|
|
http://www.sourcefiles.org/Toys/Candy/
|
|
|
|
MAINTAINER= Net147@hotmail.com
|
|
COMMENT= Background browser and setter for X windows
|
|
|
|
BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash
|
|
LIB_DEPENDS= gtkmm-2.4:${PORTSDIR}/x11-toolkits/gtkmm24
|
|
RUN_DEPENDS= ${LOCALBASE}/share/icons/gnome/index.theme:${PORTSDIR}/misc/gnome-icon-theme \
|
|
${LOCALBASE}/share/icons/hicolor/index.theme:${PORTSDIR}/misc/hicolor-icon-theme
|
|
|
|
USE_GNOME= gtk20
|
|
INSTALLS_ICONS= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-inotify
|
|
CXXFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib
|
|
|
|
OPTIONS= XINERAMA "Xinerama support" on
|
|
|
|
MAN1= nitrogen.1
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITHOUT_XINERAMA)
|
|
CONFIGURE_ARGS+=--disable-xinerama
|
|
.else
|
|
CONFIGURE_ARGS+=--enable-xinerama
|
|
USE_XORG+= xinerama
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's,#!/bin/bash,#!${LOCALBASE}/bin/bash,' \
|
|
${WRKSRC}/data/icon-theme-installer
|
|
|
|
.include <bsd.port.post.mk>
|