2ad4fd3611
30-Dec-2005 (Release 2.4.1) ~~~~~~~~~~~ Updated Estonian translation (Teet T\xc3\xa4rno). 29-Dec-2005 ~~~~~~~~~~~ Some .desktop files put ".png" after the icon name, which prevents the icon from being found. Ignore it (Thomass Leonard; reported by Peter). 28-Dec-2005 ~~~~~~~~~~~ Updated Hungarian translation (Andras Mohari). 27-Dec-2005 ~~~~~~~~~~~ If we can't find libc.so.6 for xattr support, try libc.so in case we only have uClib (Lucas Correia Villa Real). 18-Dec-2005 ~~~~~~~~~~~ Allow .desktop files to be used as run actions (Thomas Leonard). 17-Dec-2005 ~~~~~~~~~~~ Bugfix: New detail crashes cleanice theme (reported by Andras Mohari; reported as CleanIce bug #1383457). Try another value... 16-Dec-2005 ~~~~~~~~~~~ Highlight icons using the theme's preferred colour instead of always using blue (Andras Mohari). Bugfix: Don't set style detail to "base" when highlighting items in a Collection, as it confuses GTK's lighthouseblue theme engine (Thomas Leonard). 15-Dec-2005 ~~~~~~~~~~~ Bugfix: Changing the display style crashes the filer with GTK >= 2.8.9 because it sends a selection changed event before the view has finished initialising (Thomas Leonard; reported by Tobias Kieslich). Removed some done entries from the TODO file (Stephen Watson).
66 lines
2.1 KiB
Makefile
66 lines
2.1 KiB
Makefile
# $NetBSD: Makefile,v 1.34 2006/01/30 06:28:01 rxg Exp $
|
|
#
|
|
|
|
DISTNAME= rox-2.4.1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=rox/}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= rxg@NetBSD.org
|
|
HOMEPAGE= http://rox.sourceforge.net/
|
|
COMMENT= RISC OS-like filer for X
|
|
|
|
CONFLICTS= rox-base-[0-9]*
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}
|
|
DIST_SUBDIR= rox
|
|
|
|
USE_TOOLS+= pkg-config
|
|
GNU_CONFIGURE= yes
|
|
|
|
INSTALLATION_DIRS= libexec/rox share/Choices share/rox/ROX-Filer
|
|
|
|
SUBST_CLASSES+= path
|
|
SUBST_MESSAGE.path= Fixing hardcoded paths.
|
|
SUBST_STAGE.path= post-patch
|
|
SUBST_FILES.path= ROX-Filer/AppRun
|
|
SUBST_FILES.path+= ROX-Filer/src/choices.c
|
|
SUBST_FILES.path+= ROX-Filer/src/type.c
|
|
SUBST_FILES.path+= ROX-Filer/src/xdgmime.c
|
|
SUBST_SED.path= -e 's,/usr/local,${PREFIX},g'
|
|
|
|
SUBST_CLASSES+= bin
|
|
SUBST_MESSAGE.bin= Fixing binary path.
|
|
SUBST_STAGE.bin= post-patch
|
|
SUBST_FILES.bin= ROX-Filer/AppRun
|
|
SUBST_SED.bin= -e 's,BIN="$$APP_DIR,BIN="${PREFIX}/libexec/rox,g'
|
|
|
|
BUILD_TARGET= ROX-Filer
|
|
CONFIGURE_DIRS= ROX-Filer/src
|
|
CONFIGURE_SCRIPT= configure.tmp
|
|
|
|
post-patch:
|
|
${MV} ${WRKSRC:Q}/ROX-Filer/src/configure ${WRKSRC:Q}/ROX-Filer/src/${CONFIGURE_SCRIPT:Q}
|
|
|
|
post-build:
|
|
@${ECHO} "#!/bin/sh" >> ${WRKDIR:Q}/rox
|
|
@${ECHO} ${PREFIX:Q}"/share/rox/ROX-Filer/AppRun \"\$$@\"" >> ${WRKDIR:Q}/rox
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC:Q}/ROX-Filer/ROX-Filer ${PREFIX:Q}/libexec/rox
|
|
cd ${WRKSRC:Q}/Choices && ${PAX} -rw . ${PREFIX:Q}/share/Choices
|
|
cd ${WRKSRC:Q}/ROX-Filer && ${PAX} -rw \
|
|
-s ',^\./ROX-Filer$$,,' -s ',^\./ROX-Filer/.*,,' \
|
|
-s ',^\./ROX-Filer.dbg$$,,' -s ',^\./ROX-Filer.dbg/.*,,'\
|
|
-s ',^\./src$$,,' -s ',^\./src/.*,,' \
|
|
. ${PREFIX:Q}/share/rox/ROX-Filer
|
|
${INSTALL_MAN} ${WRKSRC:Q}/rox.1 ${PREFIX:Q}/man/man1
|
|
${INSTALL_DATA} ${WRKSRC:Q}/rox.xml ${PREFIX:Q}/share/mime/packages
|
|
${INSTALL_SCRIPT} ${WRKDIR:Q}/rox ${PREFIX:Q}/bin
|
|
|
|
.include "../../databases/shared-mime-info/buildlink3.mk"
|
|
.include "../../devel/pango/buildlink3.mk"
|
|
.include "../../sysutils/gnome-vfs2/buildlink3.mk"
|
|
.include "../../textproc/libxml2/buildlink3.mk"
|
|
.include "../../x11/gtk2/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|