Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 17 Nov 2013 02:58:44 +0000 (UTC)
From:      "Vanilla I. Shu" <vanilla@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r334050 - in head/sysutils: xcpustate xdu xfburn xfce4-genmon-plugin xfsm xin xsysstats xsysstats/files
Message-ID:  <201311170258.rAH2wiG3089434@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: vanilla
Date: Sun Nov 17 02:58:44 2013
New Revision: 334050
URL: http://svnweb.freebsd.org/changeset/ports/334050

Log:
  Support STAGEDIR.

Modified:
  head/sysutils/xcpustate/Makefile
  head/sysutils/xdu/Makefile
  head/sysutils/xfburn/Makefile
  head/sysutils/xfburn/pkg-plist
  head/sysutils/xfce4-genmon-plugin/Makefile
  head/sysutils/xfce4-genmon-plugin/pkg-plist
  head/sysutils/xfsm/Makefile
  head/sysutils/xin/Makefile
  head/sysutils/xsysstats/Makefile
  head/sysutils/xsysstats/files/patch-Makefile.in

Modified: head/sysutils/xcpustate/Makefile
==============================================================================
--- head/sysutils/xcpustate/Makefile	Sun Nov 17 02:51:46 2013	(r334049)
+++ head/sysutils/xcpustate/Makefile	Sun Nov 17 02:58:44 2013	(r334050)
@@ -20,8 +20,6 @@ NO_WRKSUBDIR=	yes
 USES=		imake
 USE_XORG=	ice sm x11 xaw xext xmu xt
 
-MAN1=		${PORTNAME}.1
-PLIST_FILES=	bin/${PORTNAME}
+PLIST_FILES=	bin/${PORTNAME} man/man1/${PORTNAME}.1.gz
 
-NO_STAGE=	yes
 .include <bsd.port.mk>

Modified: head/sysutils/xdu/Makefile
==============================================================================
--- head/sysutils/xdu/Makefile	Sun Nov 17 02:51:46 2013	(r334049)
+++ head/sysutils/xdu/Makefile	Sun Nov 17 02:58:44 2013	(r334050)
@@ -14,8 +14,6 @@ COMMENT=	Graphically display output of d
 NO_WRKSUBDIR=	yes
 USES=		imake
 USE_XORG=	ice sm x11 xaw xext xmu xpm xt
-PLIST_FILES=	bin/xdu lib/X11/app-defaults/XDu
-MAN1=		xdu.1
+PLIST_FILES=	bin/xdu lib/X11/app-defaults/XDu man/man1/xdu.1.gz
 
-NO_STAGE=	yes
 .include <bsd.port.mk>

Modified: head/sysutils/xfburn/Makefile
==============================================================================
--- head/sysutils/xfburn/Makefile	Sun Nov 17 02:51:46 2013	(r334049)
+++ head/sysutils/xfburn/Makefile	Sun Nov 17 02:58:44 2013	(r334050)
@@ -12,8 +12,8 @@ DIST_SUBDIR=	xfce4
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	CD/DVD burning tool for Xfce
 
-LIB_DEPENDS=	burn:${PORTSDIR}/devel/libburn \
-		isofs:${PORTSDIR}/devel/libisofs
+LIB_DEPENDS=	libburn.so:${PORTSDIR}/devel/libburn \
+		libisofs.so:${PORTSDIR}/devel/libisofs
 RUN_DEPENDS=	cdrdao:${PORTSDIR}/sysutils/cdrdao \
 		cdrecord:${PORTSDIR}/sysutils/cdrtools
 
@@ -21,38 +21,22 @@ GNU_CONFIGURE=	yes
 CONFIGURE_ENV=	GMSGFMT=${PREFIX}/bin/msgfmt DATADIRNAME=share
 
 USE_BZIP2=	yes
-USE_GMAKE=	yes
 USE_GNOME=	intltool
 USE_XFCE=	configenv libexo libgui
-USES=		pkgconfig
+USES=		pkgconfig gmake
 INSTALLS_ICONS=	yes
 
-MAN1=		xfburn.1
-
 OPTIONS_DEFINE=	DBUS HAL GSTREAMER NLS
 OPTIONS_DEFAULT=	DBUS HAL
+NLS_USE=	USES=gettext
+MLS_CONFIGURE_ENABLE=	nls
+DBUS_LIB_DEPENDS=	libdbus-1.so:${PORTSDIR}/devel/dbus
+DBUS_ENABLE=	dbus
+HAL_LIB_DEPENDS=	libhal.so:${PORTSDIR}/sysutils/hal
+HAL_ENABLE=	hal
 
-NO_STAGE=	yes
 .include <bsd.port.options.mk>
 
-.if ${PORT_OPTIONS:MNLS}
-USES+=		gettext
-.else
-CONFIGURE_ARGS+=	--disable-nls
-.endif
-
-.if ${PORT_OPTIONS:MDBUS}
-LIB_DEPENDS+=	dbus-1:${PORTSDIR}/devel/dbus
-.else
-CONFIGURE_ARGS+=	--disable-dbus
-.endif
-
-.if ${PORT_OPTIONS:MHAL}
-LIB_DEPENDS+=	hal:${PORTSDIR}/sysutils/hal
-.else
-CONFIGURE_ARGS+=	--disable-hal
-.endif
-
 .if ${PORT_OPTIONS:MGSTREAMER}
 USE_GSTREAMER=	core
 CONFIGURE_ARGS+=	"LDFLAGS=-lgstpbutils-0.10"

Modified: head/sysutils/xfburn/pkg-plist
==============================================================================
--- head/sysutils/xfburn/pkg-plist	Sun Nov 17 02:51:46 2013	(r334049)
+++ head/sysutils/xfburn/pkg-plist	Sun Nov 17 02:58:44 2013	(r334050)
@@ -1,6 +1,7 @@
 %%DATADIR%%/xfburn-toolbars.ui
 %%DATADIR%%/xfburn.ui
 bin/xfburn
+man/man1/xfburn.1.gz
 share/Thunar/sendto/thunar-sendto-xfburn.desktop
 share/applications/xfburn.desktop
 share/icons/hicolor/16x16/stock/media/stock_xfburn-audio-cd.png

Modified: head/sysutils/xfce4-genmon-plugin/Makefile
==============================================================================
--- head/sysutils/xfce4-genmon-plugin/Makefile	Sun Nov 17 02:51:46 2013	(r334049)
+++ head/sysutils/xfce4-genmon-plugin/Makefile	Sun Nov 17 02:58:44 2013	(r334050)
@@ -14,12 +14,10 @@ COMMENT=	Generic Monitor Xfce4 panel plu
 
 GNU_CONFIGURE=	yes
 USE_BZIP2=	yes
-USE_GMAKE=	yes
-USES=        pathfix gettext pkgconfig
+USES=		pathfix gettext pkgconfig gmake
 USE_GNOME=	gtk20 intltool intlhack
 USE_XFCE=	configenv libmenu panel
 
 WRKSRC=	${WRKDIR}/${PORTNAME}-${PORTVERSION:R}
 
-NO_STAGE=	yes
 .include <bsd.port.mk>

Modified: head/sysutils/xfce4-genmon-plugin/pkg-plist
==============================================================================
--- head/sysutils/xfce4-genmon-plugin/pkg-plist	Sun Nov 17 02:51:46 2013	(r334049)
+++ head/sysutils/xfce4-genmon-plugin/pkg-plist	Sun Nov 17 02:58:44 2013	(r334050)
@@ -38,6 +38,7 @@ share/locale/zh_TW/LC_MESSAGES/xfce4-gen
 share/xfce4/panel/plugins/genmon.desktop
 @dirrmtry share/xfce4/panel/plugins
 @dirrmtry share/xfce4/panel
+@dirrmtry share/xfce4
 @dirrmtry share/locale/ur_PK/LC_MESSAGES
 @dirrmtry share/locale/ur_PK
 @dirrmtry share/locale/ur/LC_MESSAGES

Modified: head/sysutils/xfsm/Makefile
==============================================================================
--- head/sysutils/xfsm/Makefile	Sun Nov 17 02:51:46 2013	(r334049)
+++ head/sysutils/xfsm/Makefile	Sun Nov 17 02:58:44 2013	(r334050)
@@ -15,8 +15,6 @@ COMMENT=	X File System Monitor
 USES=		imake
 USE_XORG=	xbitmaps x11 xext
 MAKE_ARGS=	CC="${CC}" CCOPTIONS="-DFreeBSD"
-MAN1=		xfsm.1
-PLIST_FILES=	bin/xfsm
+PLIST_FILES=	bin/xfsm man/man1/${PORTNAME}.1.gz
 
-NO_STAGE=	yes
 .include <bsd.port.mk>

Modified: head/sysutils/xin/Makefile
==============================================================================
--- head/sysutils/xin/Makefile	Sun Nov 17 02:51:46 2013	(r334049)
+++ head/sysutils/xin/Makefile	Sun Nov 17 02:58:44 2013	(r334050)
@@ -12,8 +12,6 @@ MAINTAINER=	ports@FreeBSD.org
 COMMENT=	Splits standard input and pipes into a command
 
 GNU_CONFIGURE=	yes
-MAN1=		xin.1
-PLIST_FILES=	bin/xin
+PLIST_FILES=	bin/xin man/man1/xin.1.gz
 
-NO_STAGE=	yes
 .include <bsd.port.mk>

Modified: head/sysutils/xsysstats/Makefile
==============================================================================
--- head/sysutils/xsysstats/Makefile	Sun Nov 17 02:51:46 2013	(r334049)
+++ head/sysutils/xsysstats/Makefile	Sun Nov 17 02:58:44 2013	(r334050)
@@ -12,15 +12,13 @@ MAINTAINER=	ports@FreeBSD.org
 COMMENT=	System information display tool
 
 GNU_CONFIGURE=	yes
-USE_GMAKE=	yes
+USES=		gmake
 USE_XORG=	x11
-MAN1=		xsysstats.1
 
 ALL_TARGET=	xsysstats
 
-PLIST_FILES=	bin/xsysstats
+PLIST_FILES=	bin/xsysstats man/man1/${PORTNAME}.1.gz
 
-NO_STAGE=	yes
 pre-patch:
 	${RM} ${WRKSRC}/headers.h && ${TOUCH} ${WRKSRC}/headers.h
 

Modified: head/sysutils/xsysstats/files/patch-Makefile.in
==============================================================================
--- head/sysutils/xsysstats/files/patch-Makefile.in	Sun Nov 17 02:51:46 2013	(r334049)
+++ head/sysutils/xsysstats/files/patch-Makefile.in	Sun Nov 17 02:58:44 2013	(r334050)
@@ -1,5 +1,5 @@
---- Makefile.in.orig	Tue May 30 08:07:38 2000
-+++ Makefile.in	Sat Nov  9 08:50:56 2002
+--- Makefile.in.orig	2000-05-30 14:07:38.000000000 +0800
++++ Makefile.in	2013-11-16 23:47:26.000000000 +0800
 @@ -1,6 +1,6 @@
 -CC = @CC@
 -CFLAGS = @CFLAGS@
@@ -10,3 +10,16 @@
  LIBS = @LIBS@
  LDFLAGS = @LDFLAGS@
  
+@@ -31,10 +31,8 @@ xysstats.o: xsysstats.c xsysstats.h conf
+ porting.o: xsysstats.c xsysstats.h config.h headers.h
+ 
+ install:
+-	mkdir -p $(BINDIR)
+-	$(INSTALL) xsysstats $(BINDIR)/xsysstats
+-	mkdir -p $(MANDIR)
+-	$(INSTALL) xsysstats.man $(MANDIR)/xsysstats.1
++	$(INSTALL) xsysstats $(DESTDIR)$(BINDIR)/xsysstats
++	$(INSTALL) xsysstats.man $(DESTDIR)$(MANDIR)/xsysstats.1
+ 
+ clean:
+ 	rm -f *.o core xsysstats



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311170258.rAH2wiG3089434>