mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
Implement USE_GNOME, part 1.
This commit is contained in:
parent
bebd89314e
commit
b7bdcd418e
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=33428
104 changed files with 1209 additions and 1566 deletions
|
@ -13,24 +13,23 @@ MASTER_SITE_SUBDIR= ${PORTNAME:S/_/-/}
|
|||
|
||||
MAINTAINER= th@cis.ibaraki.ac.jp
|
||||
|
||||
LIB_DEPENDS= panel_applet.4:${PORTSDIR}/x11/gnomecore \
|
||||
gnome.4:${PORTSDIR}/x11/gnomelibs \
|
||||
gtop.1:${PORTSDIR}/devel/libgtop
|
||||
RUN_DEPENDS= setiathome:${PORTSDIR}/astro/setiathome \
|
||||
gnomecc:${PORTSDIR}/sysutils/gnomecontrolcenter
|
||||
LIB_DEPENDS= gtop.1:${PORTSDIR}/devel/libgtop
|
||||
RUN_DEPENDS= setiathome:${PORTSDIR}/astro/setiathome
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
|
||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
CONFIGURE_ENV= GLIB_CONFIG="${GLIB_CONFIG}" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
pre-patch:
|
||||
@${PERL} -pi -e 's|-lpthread|-pthread|g ; \
|
||||
s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure
|
||||
@find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \
|
||||
's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \
|
||||
s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g'
|
||||
|
||||
post-install:
|
||||
${SED} "s|%%LOCALBASE%%|${LOCALBASE}|g" ${PKGMESSAGE}
|
||||
@${SED} "s|%%LOCALBASE%%|${LOCALBASE}|g" ${PKGMESSAGE}
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -12,19 +12,15 @@ MASTER_SITES= http://www.faradic.net/~jasta/files/
|
|||
|
||||
MAINTAINER= cpiazza@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \
|
||||
ungif.5:${PORTSDIR}/graphics/libungif
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
LIB_DEPENDS= ungif.5:${PORTSDIR}/graphics/libungif
|
||||
|
||||
USE_GMAKE= yes
|
||||
USE_X_PREFIX= yes
|
||||
USE_GNOME= yes
|
||||
USE_XPM= yes
|
||||
USE_LIBTOOL= yes
|
||||
CONFIGURE_ARGS= --datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib" \
|
||||
GTK_CONFIG="${GTK_CONFIG}"
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
pre-patch:
|
||||
@${PERL} -pi -e 's|-lpthread|-pthread|g ; \
|
||||
|
|
|
@ -14,15 +14,11 @@ DISTNAME= gnome-audio-${PORTVERSION}
|
|||
|
||||
MAINTAINER= vanilla@FreeBSD.org
|
||||
|
||||
BUILD_DEPENDS= gnome-config:${PORTSDIR}/x11/gnomelibs
|
||||
RUN_DEPENDS= gnome-config:${PORTSDIR}/x11/gnomelibs
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOMELIBS= yes
|
||||
NO_BUILD= yes
|
||||
|
||||
INSTALL_TARGET= INSTALL_DATA="${INSTALL_DATA}" install
|
||||
|
||||
post-extract:
|
||||
@${RM} -fr ${WRKSRC}/sounds/sounds
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
- install -d $(prefix)/share/sounds/`dirname $$I`; \
|
||||
- install -m444 $$I $(prefix)/share/sounds/$$I; \
|
||||
+ mkdir -p $(PREFIX)/share/gnome/sounds/`dirname $$I`; \
|
||||
+ ${INSTALL_DATA} $$I $(PREFIX)/share/gnome/sounds/$$I; \
|
||||
+ ${BSD_INSTALL_DATA} $$I $(PREFIX)/share/gnome/sounds/$$I; \
|
||||
done
|
||||
|
||||
install-default-links:
|
||||
|
|
|
@ -14,16 +14,13 @@ DISTNAME= gnome-media-${PORTVERSION}
|
|||
|
||||
MAINTAINER= reg@FreeBSD.org
|
||||
|
||||
BUILD_DEPENDS= panel:${PORTSDIR}/x11/gnomecore
|
||||
RUN_DEPENDS= panel:${PORTSDIR}/x11/gnomecore \
|
||||
sox:${PORTSDIR}/audio/sox
|
||||
RUN_DEPENDS= sox:${PORTSDIR}/audio/sox
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
CONFIGURE_ARGS= --without-ncurses \
|
||||
--localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ARGS= --without-ncurses
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
|
|
|
@ -14,15 +14,11 @@ DISTNAME= gnome-audio-${PORTVERSION}
|
|||
|
||||
MAINTAINER= vanilla@FreeBSD.org
|
||||
|
||||
BUILD_DEPENDS= gnome-config:${PORTSDIR}/x11/gnomelibs
|
||||
RUN_DEPENDS= gnome-config:${PORTSDIR}/x11/gnomelibs
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOMELIBS= yes
|
||||
NO_BUILD= yes
|
||||
|
||||
INSTALL_TARGET= INSTALL_DATA="${INSTALL_DATA}" install
|
||||
|
||||
post-extract:
|
||||
@${RM} -fr ${WRKSRC}/sounds/sounds
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
- install -d $(prefix)/share/sounds/`dirname $$I`; \
|
||||
- install -m444 $$I $(prefix)/share/sounds/$$I; \
|
||||
+ mkdir -p $(PREFIX)/share/gnome/sounds/`dirname $$I`; \
|
||||
+ ${INSTALL_DATA} $$I $(PREFIX)/share/gnome/sounds/$$I; \
|
||||
+ ${BSD_INSTALL_DATA} $$I $(PREFIX)/share/gnome/sounds/$$I; \
|
||||
done
|
||||
|
||||
install-default-links:
|
||||
|
|
|
@ -14,15 +14,11 @@ DISTNAME= gnome-audio-${PORTVERSION}
|
|||
|
||||
MAINTAINER= vanilla@FreeBSD.org
|
||||
|
||||
BUILD_DEPENDS= gnome-config:${PORTSDIR}/x11/gnomelibs
|
||||
RUN_DEPENDS= gnome-config:${PORTSDIR}/x11/gnomelibs
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOMELIBS= yes
|
||||
NO_BUILD= yes
|
||||
|
||||
INSTALL_TARGET= INSTALL_DATA="${INSTALL_DATA}" install
|
||||
|
||||
post-extract:
|
||||
@${RM} -fr ${WRKSRC}/sounds/sounds
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
- install -d $(prefix)/share/sounds/`dirname $$I`; \
|
||||
- install -m444 $$I $(prefix)/share/sounds/$$I; \
|
||||
+ mkdir -p $(PREFIX)/share/gnome/sounds/`dirname $$I`; \
|
||||
+ ${INSTALL_DATA} $$I $(PREFIX)/share/gnome/sounds/$$I; \
|
||||
+ ${BSD_INSTALL_DATA} $$I $(PREFIX)/share/gnome/sounds/$$I; \
|
||||
done
|
||||
|
||||
install-default-links:
|
||||
|
|
|
@ -14,16 +14,13 @@ DISTNAME= gnome-media-${PORTVERSION}
|
|||
|
||||
MAINTAINER= reg@FreeBSD.org
|
||||
|
||||
BUILD_DEPENDS= panel:${PORTSDIR}/x11/gnomecore
|
||||
RUN_DEPENDS= panel:${PORTSDIR}/x11/gnomecore \
|
||||
sox:${PORTSDIR}/audio/sox
|
||||
RUN_DEPENDS= sox:${PORTSDIR}/audio/sox
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
CONFIGURE_ARGS= --without-ncurses \
|
||||
--localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ARGS= --without-ncurses
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
|
|
|
@ -14,16 +14,13 @@ DISTNAME= gnome-media-${PORTVERSION}
|
|||
|
||||
MAINTAINER= reg@FreeBSD.org
|
||||
|
||||
BUILD_DEPENDS= panel:${PORTSDIR}/x11/gnomecore
|
||||
RUN_DEPENDS= panel:${PORTSDIR}/x11/gnomecore \
|
||||
sox:${PORTSDIR}/audio/sox
|
||||
RUN_DEPENDS= sox:${PORTSDIR}/audio/sox
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
CONFIGURE_ARGS= --without-ncurses \
|
||||
--localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ARGS= --without-ncurses
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
|
|
|
@ -14,15 +14,20 @@ MASTER_SITE_SUBDIR= ${PORTNAME}
|
|||
|
||||
MAINTAINER= dima@Chg.RU
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs
|
||||
RUN_DEPENDS= gnomecc:${PORTSDIR}/sysutils/gnomecontrolcenter
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --with-gnome=${X11BASE}
|
||||
CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}"
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
pre-patch:
|
||||
@${PERL} -pi -e 's|-lpthread|-pthread|g ; \
|
||||
s|DATADIRNAME=lib|DATADIRNAME=share|g ; \
|
||||
s|USE_INCLUDED_LIBINTL=yes|#USE_INCLUDED_LIBINTL=yes|g ; \
|
||||
s|\$$\(top_builddir\)/intl/libintl.a|-lintl|g' ${WRKSRC}/configure
|
||||
@find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \
|
||||
's|\$$\(datadir\)/gnome/|\$$\(datadir\)/|g ; \
|
||||
s|\$$\(datadir\)/locale|\$$\(prefix\)/share/locale|g'
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
--- pixmaps/Makefile.in.orig Tue Feb 15 20:09:05 2000
|
||||
+++ pixmaps/Makefile.in Thu Feb 17 11:57:57 2000
|
||||
@@ -113,7 +113,7 @@
|
||||
EXTRA_DIST = yamt-logo.png
|
||||
--- configure.orig Sat Jun 3 20:35:31 2000
|
||||
+++ configure Sat Jun 3 20:36:07 2000
|
||||
@@ -4366,7 +4366,7 @@
|
||||
|
||||
fi
|
||||
|
||||
-PACKAGE_PIXMAPS_DIR="`gnome-config --datadir`/pixmaps/${PACKAGE}"
|
||||
+PACKAGE_PIXMAPS_DIR="`gnome-config --datadir`/pixmaps"
|
||||
|
||||
|
||||
-pixmapdir = $(datadir)/pixmaps/yamt
|
||||
+pixmapdir = $(datadir)/gnome/pixmaps
|
||||
|
||||
pixmap_DATA = $(EXTRA_DIST)
|
||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
|
|
11
audio/yamt/files/patch-ab
Normal file
11
audio/yamt/files/patch-ab
Normal file
|
@ -0,0 +1,11 @@
|
|||
--- pixmaps/Makefile.in.orig Sat Jun 3 20:47:40 2000
|
||||
+++ pixmaps/Makefile.in Sat Jun 3 20:47:54 2000
|
||||
@@ -113,7 +113,7 @@
|
||||
EXTRA_DIST = yamt-logo.png yamt-icon.png
|
||||
|
||||
|
||||
-pixmapdir = $(datadir)/pixmaps/yamt
|
||||
+pixmapdir = $(datadir)/pixmaps
|
||||
|
||||
pixmap_DATA = $(EXTRA_DIST)
|
||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
|
@ -13,10 +13,10 @@ DISTNAME= mysql_navigator_ver_${PORTVERSION}
|
|||
|
||||
MAINTAINER= sobomax@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \
|
||||
mysqlclient.6:${PORTSDIR}/databases/mysql322-client
|
||||
LIB_DEPENDS= mysqlclient.6:${PORTSDIR}/databases/mysql322-client
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GNOME= yes
|
||||
|
||||
ALL_TARGET=
|
||||
|
||||
|
|
|
@ -4,9 +4,9 @@
|
|||
-CFLAGS = -I/usr/local/mysql/include/mysql/ `gtk-config --cflags` `gnome-config --cflags gnome gnomeui`
|
||||
-LIBS = -L/usr/local/mysql/lib/mysql/ -lmysqlclient `gtk-config --libs` `gnome-config --libs gnome gnomeui`
|
||||
-CC = gcc
|
||||
+CFLAGS = -I$(LOCALBASE)/include/mysql `$(X11BASE)/bin/gtk12-config --cflags` \
|
||||
+CFLAGS = -I$(LOCALBASE)/include/mysql `$(GTK_CONFIG) --cflags` \
|
||||
+ `$(X11BASE)/bin/gnome-config --cflags gnome gnomeui`
|
||||
+LIBS = -L$(LOCALBASE)/lib/mysql -lmysqlclient `$(X11BASE)/bin/gtk12-config --libs` \
|
||||
+LIBS = -L$(LOCALBASE)/lib/mysql -lmysqlclient `$(GTK_CONFIG) --libs` \
|
||||
+ `$(X11BASE)/bin/gnome-config --libs gnome gnomeui`
|
||||
+#CC = gcc
|
||||
OUTFILE = mn
|
||||
|
|
|
@ -15,22 +15,15 @@ EXTRACT_SUFX= .tgz
|
|||
MAINTAINER= sobomax@FreeBSD.org
|
||||
|
||||
BUILD_DEPENDS= automake:${PORTSDIR}/devel/automake
|
||||
LIB_DEPENDS= panel_applet.4:${PORTSDIR}/x11/gnomecore \
|
||||
gnome.4:${PORTSDIR}/x11/gnomelibs
|
||||
|
||||
WRKSRC= ${WRKDIR}/BitNotes
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_AUTOCONF= yes
|
||||
USE_GMAKE= yes
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
USE_GNOME= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib" \
|
||||
GTK_CONFIG="${GTK_CONFIG}"
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
AUTOCONF= autoconf && \
|
||||
${PERL} -pi -e 's|-lpthread|-pthread|g ; \
|
||||
|
|
|
@ -12,13 +12,16 @@ MASTER_SITES= http://www.idiap.ch/~gobry/bulb/
|
|||
|
||||
MAINTAINER= smoberly@xavier.dyndns.org
|
||||
|
||||
LIB_DEPENDS= panel_applet.4:${PORTSDIR}/x11/gnomecore
|
||||
USE_X_PREFIX= yes
|
||||
USE_GNOME= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
USE_X_PREFIX= YES
|
||||
GNU_CONFIGURE= YES
|
||||
CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" LDFLAGS="-L${LOCALBASE}/lib -lintl"
|
||||
CONFIGURE_ARGS= --datadir=${PREFIX}/share/gnome
|
||||
pre-patch:
|
||||
@${PERL} -pi -e 's|-lpthread|-pthread|g ; \
|
||||
s|DATADIRNAME=lib|DATADIRNAME=share|g ; \
|
||||
s|USE_INCLUDED_LIBINTL=yes|#USE_INCLUDED_LIBINTL=yes|g ; \
|
||||
s|\$$\(top_builddir\)/intl/libintl.a|-lintl|g' ${WRKSRC}/configure
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -12,20 +12,11 @@ MASTER_SITES= http://ftp.5z.com/pub/genius/
|
|||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
|
||||
BUILD_DEPENDS= panel:${PORTSDIR}/x11/gnomecore
|
||||
RUN_DEPENDS= panel:${PORTSDIR}/x11/gnomecore
|
||||
|
||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GLIB_CONFIG="${GLIB_CONFIG}" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
pre-patch:
|
||||
|
|
|
@ -13,17 +13,24 @@ MASTER_SITE_SUBDIR= ${PORTNAME}
|
|||
|
||||
MAINTAINER= jedgar@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \
|
||||
xml.5:${PORTSDIR}/textproc/libxml
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_LIBTOOL= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
MAN1= gnofin.1
|
||||
|
||||
CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}"
|
||||
pre-patch:
|
||||
@${PERL} -pi -e 's|-lpthread|-pthread|g ; \
|
||||
s|DATADIRNAME=lib|DATADIRNAME=share|g ; \
|
||||
s|USE_INCLUDED_LIBINTL=yes|#USE_INCLUDED_LIBINTL=yes|g ; \
|
||||
s|\$$\(top_builddir\)/intl/libintl.a|-lintl|g' ${WRKSRC}/configure
|
||||
@find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \
|
||||
's|\$$\(datadir\)/gnome/|\$$\(datadir\)/|g ; \
|
||||
s|\$$\(datadir\)/locale|\$$\(prefix\)/share/locale|g'
|
||||
@find ${WRKSRC}/plugins -name "Makefile.in" | xargs ${PERL} -pi -e \
|
||||
's|_la_LDFLAGS =|_la_LDFLAGS = -avoid-version|g'
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,28 +1,13 @@
|
|||
bin/gnofin
|
||||
lib/gnofin/plugins/libqif.so.0
|
||||
lib/gnofin/plugins/libqif.so
|
||||
lib/gnofin/plugins/libqif.a
|
||||
lib/gnofin/plugins/libhtml.so.0
|
||||
lib/gnofin/plugins/libhtml.so
|
||||
lib/gnofin/plugins/libhtml.a
|
||||
lib/gnofin/plugins/liblatex.so.0
|
||||
lib/gnofin/plugins/liblatex.so
|
||||
lib/gnofin/plugins/liblatex.a
|
||||
lib/gnofin/plugins/libtext.so.0
|
||||
lib/gnofin/plugins/libtext.so
|
||||
lib/gnofin/plugins/libtext.a
|
||||
lib/gnofin/plugins/libcbb.so.0
|
||||
lib/gnofin/plugins/libcbb.so
|
||||
lib/gnofin/plugins/libcbb.a
|
||||
lib/gnofin/plugins/libfind.so.0
|
||||
lib/gnofin/plugins/libfind.so
|
||||
lib/gnofin/plugins/libfind.a
|
||||
lib/gnofin/plugins/libreconcile.so.0
|
||||
lib/gnofin/plugins/libhtml.so
|
||||
lib/gnofin/plugins/liblatex.so
|
||||
lib/gnofin/plugins/libqif.so
|
||||
lib/gnofin/plugins/libreconcile.so
|
||||
lib/gnofin/plugins/libreconcile.a
|
||||
lib/gnofin/plugins/libsched.so.0
|
||||
lib/gnofin/plugins/libsched.so
|
||||
lib/gnofin/plugins/libsched.a
|
||||
lib/gnofin/plugins/libtext.so
|
||||
share/gnome/apps/Applications/gnofin.desktop
|
||||
share/locale/fr/LC_MESSAGES/gnofin.mo
|
||||
@dirrm lib/gnofin/plugins
|
||||
@dirrm lib/gnofin
|
||||
|
|
|
@ -14,28 +14,22 @@ DISTNAME= gnome-pim-${PORTVERSION}
|
|||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= panel_applet.4:${PORTSDIR}/x11/gnomecore
|
||||
|
||||
.if defined(WITH_GNOMEPILOT)
|
||||
LIB_DEPENDS+= gpilotd.0:${PORTSDIR}/palm/gnomepilot
|
||||
PILOTINC= "-I${LOCALBASE}/pilot/include"
|
||||
PILOTLIB= "-L${LOCALBASE}/pilot/lib"
|
||||
PLIST_SUB+= GNOMEPILOT:=""
|
||||
.else
|
||||
PILOTARGS= --without-pisock --disable-pilotlinktest
|
||||
CONFIGURE_ARGS= --without-pisock --disable-pilotlinktest
|
||||
EXTRA_PATCHES= ${FILESDIR}/patch.nopilot
|
||||
PLIST_SUB+= GNOMEPILOT:="@comment "
|
||||
.endif
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome ${PILOTARGS}
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PILOTINC}" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib ${PILOTLIB}"
|
||||
|
||||
.if !defined(WITH_GNOMEPILOT)
|
||||
|
|
|
@ -14,28 +14,22 @@ DISTNAME= gnome-pim-${PORTVERSION}
|
|||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= panel_applet.4:${PORTSDIR}/x11/gnomecore
|
||||
|
||||
.if defined(WITH_GNOMEPILOT)
|
||||
LIB_DEPENDS+= gpilotd.0:${PORTSDIR}/palm/gnomepilot
|
||||
PILOTINC= "-I${LOCALBASE}/pilot/include"
|
||||
PILOTLIB= "-L${LOCALBASE}/pilot/lib"
|
||||
PLIST_SUB+= GNOMEPILOT:=""
|
||||
.else
|
||||
PILOTARGS= --without-pisock --disable-pilotlinktest
|
||||
CONFIGURE_ARGS= --without-pisock --disable-pilotlinktest
|
||||
EXTRA_PATCHES= ${FILESDIR}/patch.nopilot
|
||||
PLIST_SUB+= GNOMEPILOT:="@comment "
|
||||
.endif
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome ${PILOTARGS}
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PILOTINC}" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib ${PILOTLIB}"
|
||||
|
||||
.if !defined(WITH_GNOMEPILOT)
|
||||
|
|
|
@ -19,30 +19,34 @@ MAINTAINER= ade@FreeBSD.org
|
|||
BUILD_DEPENDS= swig:${PORTSDIR}/devel/SWIG \
|
||||
g-wrap:${PORTSDIR}/devel/g-wrap \
|
||||
eperl:${PORTSDIR}/lang/eperl
|
||||
LIB_DEPENDS= panel_applet.4:${PORTSDIR}/x11/gnomecore \
|
||||
guile.9:${PORTSDIR}/lang/guile
|
||||
LIB_DEPENDS= guile.9:${PORTSDIR}/lang/guile
|
||||
RUN_DEPENDS= slib48:${PORTSDIR}/lang/slib \
|
||||
gnuplot:${PORTSDIR}/math/gnuplot \
|
||||
${site_perl}/HTML/Base.pm:${PORTSDIR}/www/p5-HTML \
|
||||
${site_perl}/LWP.pm:${PORTSDIR}/www/p5-libwww
|
||||
|
||||
site_perl= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_XPM= yes
|
||||
USE_X_PREFIX= yes
|
||||
USE_PERL5= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||
CONFIGURE_ENV= MAKE=gmake \
|
||||
CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
GLIB_CONFIG="${GLIB_CONFIG}"
|
||||
CONFIGURE_ARGS= --with-glib-config=${GLIB_CONFIG}
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
|
||||
|
||||
MAN1= gnc-prices.1 gnucash.1
|
||||
|
||||
pre-patch:
|
||||
@${PERL} -pi -e 's^-l(pthread|c_r)^-pthread^g ; \
|
||||
s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure
|
||||
@find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \
|
||||
's^\$\{datadir\}/gnome/^\$\(datadir\)/^g ; \
|
||||
s^\$\{datadir\}/aclocal^\$\(prefix\)/share/aclocal^g ; \
|
||||
s^\$\{datadir\}/locale^\$\(prefix\)/share/locale^g'
|
||||
|
||||
post-install:
|
||||
@strip ${PREFIX}/bin/gnucash
|
||||
|
|
|
@ -11,223 +11,223 @@ lib/gnucash/perl/libgncswig.so.1
|
|||
@exec /sbin/ldconfig -m %D/lib/gnucash
|
||||
@unexec /sbin/ldconfig -R
|
||||
share/gnome/apps/Applications/gnucash.desktop
|
||||
share/gnucash/doc/AUTHORS
|
||||
share/gnucash/doc/COPYING
|
||||
share/gnucash/doc/ChangeLog
|
||||
share/gnucash/doc/INSTALL
|
||||
share/gnucash/doc/NEWS
|
||||
share/gnucash/doc/README
|
||||
share/gnucash/doc/README.francais
|
||||
share/gnucash/doc/README.german
|
||||
share/gnucash/doc/examples/Money95bank_fr.qif
|
||||
share/gnucash/doc/examples/Money95invst_fr.qif
|
||||
share/gnucash/doc/examples/Money95mfunds_fr.qif
|
||||
share/gnucash/doc/examples/Money95stocks_fr.qif
|
||||
share/gnucash/doc/examples/README
|
||||
share/gnucash/doc/examples/abc-all.qif
|
||||
share/gnucash/doc/examples/abc.qif
|
||||
share/gnucash/doc/examples/bogus.qif
|
||||
share/gnucash/doc/examples/cbb-export.qif
|
||||
share/gnucash/doc/examples/currency.xac
|
||||
share/gnucash/doc/examples/every.qif
|
||||
share/gnucash/doc/examples/ms-money.qif
|
||||
share/gnucash/doc/examples/quicktest.qif
|
||||
share/gnucash/doc/examples/splitdemo.xac
|
||||
share/gnucash/doc/examples/swipe.qif
|
||||
share/gnucash/doc/examples/test.xac
|
||||
share/gnucash/doc/examples/test2.xac
|
||||
share/gnucash/doc/examples/test3.xac
|
||||
share/gnucash/doc/examples/test4.xac
|
||||
share/gnucash/doc/examples/trading.xac
|
||||
share/gnucash/doc/examples/trading2.xac
|
||||
share/gnucash/doc/examples/web.qif
|
||||
share/gnucash/doc/examples/xfer.xac
|
||||
share/gnucash/doc/gnc.html
|
||||
share/gnucash/doc/guile-hackers.txt
|
||||
share/gnucash/html/C/RAW-NOTES
|
||||
share/gnucash/html/C/bofa-mym.html
|
||||
share/gnucash/html/C/image/appr-asset1.gif
|
||||
share/gnucash/html/C/image/appr-asset2.gif
|
||||
share/gnucash/html/C/image/appr-income.gif
|
||||
share/gnucash/html/C/image/appr-main1.gif
|
||||
share/gnucash/html/C/image/appr-main2.gif
|
||||
share/gnucash/html/C/image/bal-graph.gif
|
||||
share/gnucash/html/C/image/contract.gif
|
||||
share/gnucash/html/C/image/depr-asset.gif
|
||||
share/gnucash/html/C/image/depr-main.gif
|
||||
share/gnucash/html/C/image/expand.gif
|
||||
share/gnucash/html/C/image/foliowin-single.gif
|
||||
share/gnucash/html/C/image/foliowin.gif
|
||||
share/gnucash/html/C/image/logo-NetBSD-banner.gif
|
||||
share/gnucash/html/C/image/logo-bullogogross.gif
|
||||
share/gnucash/html/C/image/logo-debian.jpg
|
||||
share/gnucash/html/C/image/logo-ibm.gif
|
||||
share/gnucash/html/C/image/logo-linux.gif
|
||||
share/gnucash/html/C/image/logo-sgi.gif
|
||||
share/gnucash/html/C/image/logo-skunkware.gif
|
||||
share/gnucash/html/C/image/newaccwin-code.gif
|
||||
share/gnucash/html/C/image/newaccwin-trade.gif
|
||||
share/gnucash/html/C/image/recnwin.gif
|
||||
share/gnucash/html/C/image/regwin-double.gif
|
||||
share/gnucash/html/C/image/regwin-multi.gif
|
||||
share/gnucash/html/C/image/regwin-single.gif
|
||||
share/gnucash/html/C/image/regwin-single2.gif
|
||||
share/gnucash/html/C/image/report-av-baln.gif
|
||||
share/gnucash/html/C/image/report-baln.gif
|
||||
share/gnucash/html/C/image/report-folio.gif
|
||||
share/gnucash/html/C/image/report-option.gif
|
||||
share/gnucash/html/C/image/report-pnl.gif
|
||||
share/gnucash/html/C/image/reportwin.gif
|
||||
share/gnucash/html/C/image/ticker-a.gif
|
||||
share/gnucash/html/C/image/ticker-b.gif
|
||||
share/gnucash/html/C/projects.html
|
||||
share/gnucash/html/C/xacc-about.html
|
||||
share/gnucash/html/C/xacc-accountedit.html
|
||||
share/gnucash/html/C/xacc-acctypes.html
|
||||
share/gnucash/html/C/xacc-accwin.html
|
||||
share/gnucash/html/C/xacc-adjbwin.html
|
||||
share/gnucash/html/C/xacc-apar.html
|
||||
share/gnucash/html/C/xacc-apprdepr.html
|
||||
share/gnucash/html/C/xacc-bal_tracker.html
|
||||
share/gnucash/html/C/xacc-balsheet.html
|
||||
share/gnucash/html/C/xacc-currency.html
|
||||
share/gnucash/html/C/xacc-date.html
|
||||
share/gnucash/html/C/xacc-double.html
|
||||
share/gnucash/html/C/xacc-euro.html
|
||||
share/gnucash/html/C/xacc-expense.html
|
||||
share/gnucash/html/C/xacc-find-transactions.html
|
||||
share/gnucash/html/C/xacc-globalprefs.html
|
||||
share/gnucash/html/C/xacc-globalprops.html
|
||||
share/gnucash/html/C/xacc-gpl.html
|
||||
share/gnucash/html/C/xacc-groups.html
|
||||
share/gnucash/html/C/xacc-main.html
|
||||
share/gnucash/html/C/xacc-mainwin.html
|
||||
share/gnucash/html/C/xacc-pnl.html
|
||||
share/gnucash/html/C/xacc-portfolio_report.html
|
||||
share/gnucash/html/C/xacc-print.html
|
||||
share/gnucash/html/C/xacc-qif-import.html
|
||||
share/gnucash/html/C/xacc-quicken.html
|
||||
share/gnucash/html/C/xacc-recnwin.html
|
||||
share/gnucash/html/C/xacc-regwin.html
|
||||
share/gnucash/html/C/xacc-regwin_kbd.html
|
||||
share/gnucash/html/C/xacc-reports.html
|
||||
share/gnucash/html/C/xacc-ticker.html
|
||||
share/gnucash/html/C/xacc-trans_report.html
|
||||
share/gnucash/html/C/xacc-y2k.html
|
||||
share/gnucash/html/fr/bofa-mym.html
|
||||
share/gnucash/html/fr/image/appr-asset1.gif
|
||||
share/gnucash/html/fr/image/appr-asset2.gif
|
||||
share/gnucash/html/fr/image/appr-income.gif
|
||||
share/gnucash/html/fr/image/appr-main1.gif
|
||||
share/gnucash/html/fr/image/appr-main2.gif
|
||||
share/gnucash/html/fr/image/contract.gif
|
||||
share/gnucash/html/fr/image/depr-asset.gif
|
||||
share/gnucash/html/fr/image/depr-main.gif
|
||||
share/gnucash/html/fr/image/expand.gif
|
||||
share/gnucash/html/fr/image/foliowin-single.gif
|
||||
share/gnucash/html/fr/image/foliowin.gif
|
||||
share/gnucash/html/fr/image/newaccwin-code.gif
|
||||
share/gnucash/html/fr/image/newaccwin-trade.gif
|
||||
share/gnucash/html/fr/image/newaccwin.gif
|
||||
share/gnucash/html/fr/image/recnwin.gif
|
||||
share/gnucash/html/fr/image/regwin-double.gif
|
||||
share/gnucash/html/fr/image/regwin-multi.gif
|
||||
share/gnucash/html/fr/image/regwin-single.gif
|
||||
share/gnucash/html/fr/image/regwin-single2.gif
|
||||
share/gnucash/html/fr/image/regwin.gif
|
||||
share/gnucash/html/fr/image/report-baln.gif
|
||||
share/gnucash/html/fr/image/report-folio.gif
|
||||
share/gnucash/html/fr/image/report-option.gif
|
||||
share/gnucash/html/fr/image/reportwin.gif
|
||||
share/gnucash/html/fr/image/ticker-a.gif
|
||||
share/gnucash/html/fr/image/ticker-b.gif
|
||||
share/gnucash/html/fr/projects.html
|
||||
share/gnucash/html/fr/xacc-about.html
|
||||
share/gnucash/html/fr/xacc-accountedit.html
|
||||
share/gnucash/html/fr/xacc-acctypes.html
|
||||
share/gnucash/html/fr/xacc-accwin.html
|
||||
share/gnucash/html/fr/xacc-adjbwin.html
|
||||
share/gnucash/html/fr/xacc-apar.html
|
||||
share/gnucash/html/fr/xacc-apprdepr.html
|
||||
share/gnucash/html/fr/xacc-bal_tracker.html
|
||||
share/gnucash/html/fr/xacc-balsheet.html
|
||||
share/gnucash/html/fr/xacc-currency.html
|
||||
share/gnucash/html/fr/xacc-date.html
|
||||
share/gnucash/html/fr/xacc-double.html
|
||||
share/gnucash/html/fr/xacc-expense.html
|
||||
share/gnucash/html/fr/xacc-globalprefs.html
|
||||
share/gnucash/html/fr/xacc-gpl-fr.html
|
||||
share/gnucash/html/fr/xacc-gpl.html
|
||||
share/gnucash/html/fr/xacc-groups.html
|
||||
share/gnucash/html/fr/xacc-main.html
|
||||
share/gnucash/html/fr/xacc-mainwin.html
|
||||
share/gnucash/html/fr/xacc-pnl.html
|
||||
share/gnucash/html/fr/xacc-print.html
|
||||
share/gnucash/html/fr/xacc-quicken.html
|
||||
share/gnucash/html/fr/xacc-recnwin.html
|
||||
share/gnucash/html/fr/xacc-regwin.html
|
||||
share/gnucash/html/fr/xacc-reports.html
|
||||
share/gnucash/html/fr/xacc-ticker.html
|
||||
share/gnucash/html/fr/xacc-trans_report.html
|
||||
share/gnucash/html/fr/xacc-y2k.html
|
||||
share/gnucash/html/gnucash.css
|
||||
share/gnucash/html/index.html
|
||||
share/gnucash/perl/Quote.pm
|
||||
share/gnucash/perl/gnucash.pm
|
||||
share/gnucash/scm/bootstrap.scm
|
||||
share/gnucash/scm/bs-interp.scm
|
||||
share/gnucash/scm/c-interface.scm
|
||||
share/gnucash/scm/command-line.scm
|
||||
share/gnucash/scm/config-var.scm
|
||||
share/gnucash/scm/currencies.scm
|
||||
share/gnucash/scm/date-utilities.scm
|
||||
share/gnucash/scm/depend.scm
|
||||
share/gnucash/scm/doc.scm
|
||||
share/gnucash/scm/engine-interface.scm
|
||||
share/gnucash/scm/engine-utilities.scm
|
||||
share/gnucash/scm/extensions.scm
|
||||
share/gnucash/scm/gnumeric/gnumeric-utilities.scm
|
||||
share/gnucash/scm/gnumeric/table-utils.scm
|
||||
share/gnucash/scm/graph.scm
|
||||
share/gnucash/scm/hooks.scm
|
||||
share/gnucash/scm/html-generator.scm
|
||||
share/gnucash/scm/main.scm
|
||||
share/gnucash/scm/options.scm
|
||||
share/gnucash/scm/path.scm
|
||||
share/gnucash/scm/prefs.scm
|
||||
share/gnucash/scm/printing/number-to-words.scm
|
||||
share/gnucash/scm/printing/print-check.scm
|
||||
share/gnucash/scm/qif-import/qif-dialog-utils.scm
|
||||
share/gnucash/scm/qif-import/qif-file.scm
|
||||
share/gnucash/scm/qif-import/qif-guess-map.scm
|
||||
share/gnucash/scm/qif-import/qif-import.scm
|
||||
share/gnucash/scm/qif-import/qif-objects.scm
|
||||
share/gnucash/scm/qif-import/qif-parse.scm
|
||||
share/gnucash/scm/qif-import/qif-to-gnc.scm
|
||||
share/gnucash/scm/qif-import/qif-utils.scm
|
||||
share/gnucash/scm/qif-import/simple-obj.scm
|
||||
share/gnucash/scm/report-utilities.scm
|
||||
share/gnucash/scm/report.scm
|
||||
share/gnucash/scm/report/average-balance.scm
|
||||
share/gnucash/scm/report/balance-and-pnl.scm
|
||||
share/gnucash/scm/report/budget-report.scm
|
||||
share/gnucash/scm/report/folio.scm
|
||||
share/gnucash/scm/report/hello-world.scm
|
||||
share/gnucash/scm/report/report-list.scm
|
||||
share/gnucash/scm/report/transaction-report.scm
|
||||
share/gnucash/scm/slib-backup.scm
|
||||
share/gnucash/scm/srfi/srfi-1.r5rs.scm
|
||||
share/gnucash/scm/srfi/srfi-1.unclear.scm
|
||||
share/gnucash/scm/srfi/srfi-19.scm
|
||||
share/gnucash/scm/srfi/srfi-8.guile.scm
|
||||
share/gnucash/scm/srfi/srfi-8.scm
|
||||
share/gnucash/scm/startup.scm
|
||||
share/gnucash/scm/structure.scm
|
||||
share/gnucash/scm/substring-search.scm
|
||||
share/gnucash/scm/testbed.scm
|
||||
share/gnucash/scm/text-export.scm
|
||||
share/gnucash/scm/utilities.scm
|
||||
share/gnucash/scm/xml-generator.scm
|
||||
share/gnome/gnucash/doc/AUTHORS
|
||||
share/gnome/gnucash/doc/COPYING
|
||||
share/gnome/gnucash/doc/ChangeLog
|
||||
share/gnome/gnucash/doc/INSTALL
|
||||
share/gnome/gnucash/doc/NEWS
|
||||
share/gnome/gnucash/doc/README
|
||||
share/gnome/gnucash/doc/README.francais
|
||||
share/gnome/gnucash/doc/README.german
|
||||
share/gnome/gnucash/doc/examples/Money95bank_fr.qif
|
||||
share/gnome/gnucash/doc/examples/Money95invst_fr.qif
|
||||
share/gnome/gnucash/doc/examples/Money95mfunds_fr.qif
|
||||
share/gnome/gnucash/doc/examples/Money95stocks_fr.qif
|
||||
share/gnome/gnucash/doc/examples/README
|
||||
share/gnome/gnucash/doc/examples/abc-all.qif
|
||||
share/gnome/gnucash/doc/examples/abc.qif
|
||||
share/gnome/gnucash/doc/examples/bogus.qif
|
||||
share/gnome/gnucash/doc/examples/cbb-export.qif
|
||||
share/gnome/gnucash/doc/examples/currency.xac
|
||||
share/gnome/gnucash/doc/examples/every.qif
|
||||
share/gnome/gnucash/doc/examples/ms-money.qif
|
||||
share/gnome/gnucash/doc/examples/quicktest.qif
|
||||
share/gnome/gnucash/doc/examples/splitdemo.xac
|
||||
share/gnome/gnucash/doc/examples/swipe.qif
|
||||
share/gnome/gnucash/doc/examples/test.xac
|
||||
share/gnome/gnucash/doc/examples/test2.xac
|
||||
share/gnome/gnucash/doc/examples/test3.xac
|
||||
share/gnome/gnucash/doc/examples/test4.xac
|
||||
share/gnome/gnucash/doc/examples/trading.xac
|
||||
share/gnome/gnucash/doc/examples/trading2.xac
|
||||
share/gnome/gnucash/doc/examples/web.qif
|
||||
share/gnome/gnucash/doc/examples/xfer.xac
|
||||
share/gnome/gnucash/doc/gnc.html
|
||||
share/gnome/gnucash/doc/guile-hackers.txt
|
||||
share/gnome/gnucash/html/C/RAW-NOTES
|
||||
share/gnome/gnucash/html/C/bofa-mym.html
|
||||
share/gnome/gnucash/html/C/image/appr-asset1.gif
|
||||
share/gnome/gnucash/html/C/image/appr-asset2.gif
|
||||
share/gnome/gnucash/html/C/image/appr-income.gif
|
||||
share/gnome/gnucash/html/C/image/appr-main1.gif
|
||||
share/gnome/gnucash/html/C/image/appr-main2.gif
|
||||
share/gnome/gnucash/html/C/image/bal-graph.gif
|
||||
share/gnome/gnucash/html/C/image/contract.gif
|
||||
share/gnome/gnucash/html/C/image/depr-asset.gif
|
||||
share/gnome/gnucash/html/C/image/depr-main.gif
|
||||
share/gnome/gnucash/html/C/image/expand.gif
|
||||
share/gnome/gnucash/html/C/image/foliowin-single.gif
|
||||
share/gnome/gnucash/html/C/image/foliowin.gif
|
||||
share/gnome/gnucash/html/C/image/logo-NetBSD-banner.gif
|
||||
share/gnome/gnucash/html/C/image/logo-bullogogross.gif
|
||||
share/gnome/gnucash/html/C/image/logo-debian.jpg
|
||||
share/gnome/gnucash/html/C/image/logo-ibm.gif
|
||||
share/gnome/gnucash/html/C/image/logo-linux.gif
|
||||
share/gnome/gnucash/html/C/image/logo-sgi.gif
|
||||
share/gnome/gnucash/html/C/image/logo-skunkware.gif
|
||||
share/gnome/gnucash/html/C/image/newaccwin-code.gif
|
||||
share/gnome/gnucash/html/C/image/newaccwin-trade.gif
|
||||
share/gnome/gnucash/html/C/image/recnwin.gif
|
||||
share/gnome/gnucash/html/C/image/regwin-double.gif
|
||||
share/gnome/gnucash/html/C/image/regwin-multi.gif
|
||||
share/gnome/gnucash/html/C/image/regwin-single.gif
|
||||
share/gnome/gnucash/html/C/image/regwin-single2.gif
|
||||
share/gnome/gnucash/html/C/image/report-av-baln.gif
|
||||
share/gnome/gnucash/html/C/image/report-baln.gif
|
||||
share/gnome/gnucash/html/C/image/report-folio.gif
|
||||
share/gnome/gnucash/html/C/image/report-option.gif
|
||||
share/gnome/gnucash/html/C/image/report-pnl.gif
|
||||
share/gnome/gnucash/html/C/image/reportwin.gif
|
||||
share/gnome/gnucash/html/C/image/ticker-a.gif
|
||||
share/gnome/gnucash/html/C/image/ticker-b.gif
|
||||
share/gnome/gnucash/html/C/projects.html
|
||||
share/gnome/gnucash/html/C/xacc-about.html
|
||||
share/gnome/gnucash/html/C/xacc-accountedit.html
|
||||
share/gnome/gnucash/html/C/xacc-acctypes.html
|
||||
share/gnome/gnucash/html/C/xacc-accwin.html
|
||||
share/gnome/gnucash/html/C/xacc-adjbwin.html
|
||||
share/gnome/gnucash/html/C/xacc-apar.html
|
||||
share/gnome/gnucash/html/C/xacc-apprdepr.html
|
||||
share/gnome/gnucash/html/C/xacc-bal_tracker.html
|
||||
share/gnome/gnucash/html/C/xacc-balsheet.html
|
||||
share/gnome/gnucash/html/C/xacc-currency.html
|
||||
share/gnome/gnucash/html/C/xacc-date.html
|
||||
share/gnome/gnucash/html/C/xacc-double.html
|
||||
share/gnome/gnucash/html/C/xacc-euro.html
|
||||
share/gnome/gnucash/html/C/xacc-expense.html
|
||||
share/gnome/gnucash/html/C/xacc-find-transactions.html
|
||||
share/gnome/gnucash/html/C/xacc-globalprefs.html
|
||||
share/gnome/gnucash/html/C/xacc-globalprops.html
|
||||
share/gnome/gnucash/html/C/xacc-gpl.html
|
||||
share/gnome/gnucash/html/C/xacc-groups.html
|
||||
share/gnome/gnucash/html/C/xacc-main.html
|
||||
share/gnome/gnucash/html/C/xacc-mainwin.html
|
||||
share/gnome/gnucash/html/C/xacc-pnl.html
|
||||
share/gnome/gnucash/html/C/xacc-portfolio_report.html
|
||||
share/gnome/gnucash/html/C/xacc-print.html
|
||||
share/gnome/gnucash/html/C/xacc-qif-import.html
|
||||
share/gnome/gnucash/html/C/xacc-quicken.html
|
||||
share/gnome/gnucash/html/C/xacc-recnwin.html
|
||||
share/gnome/gnucash/html/C/xacc-regwin.html
|
||||
share/gnome/gnucash/html/C/xacc-regwin_kbd.html
|
||||
share/gnome/gnucash/html/C/xacc-reports.html
|
||||
share/gnome/gnucash/html/C/xacc-ticker.html
|
||||
share/gnome/gnucash/html/C/xacc-trans_report.html
|
||||
share/gnome/gnucash/html/C/xacc-y2k.html
|
||||
share/gnome/gnucash/html/fr/bofa-mym.html
|
||||
share/gnome/gnucash/html/fr/image/appr-asset1.gif
|
||||
share/gnome/gnucash/html/fr/image/appr-asset2.gif
|
||||
share/gnome/gnucash/html/fr/image/appr-income.gif
|
||||
share/gnome/gnucash/html/fr/image/appr-main1.gif
|
||||
share/gnome/gnucash/html/fr/image/appr-main2.gif
|
||||
share/gnome/gnucash/html/fr/image/contract.gif
|
||||
share/gnome/gnucash/html/fr/image/depr-asset.gif
|
||||
share/gnome/gnucash/html/fr/image/depr-main.gif
|
||||
share/gnome/gnucash/html/fr/image/expand.gif
|
||||
share/gnome/gnucash/html/fr/image/foliowin-single.gif
|
||||
share/gnome/gnucash/html/fr/image/foliowin.gif
|
||||
share/gnome/gnucash/html/fr/image/newaccwin-code.gif
|
||||
share/gnome/gnucash/html/fr/image/newaccwin-trade.gif
|
||||
share/gnome/gnucash/html/fr/image/newaccwin.gif
|
||||
share/gnome/gnucash/html/fr/image/recnwin.gif
|
||||
share/gnome/gnucash/html/fr/image/regwin-double.gif
|
||||
share/gnome/gnucash/html/fr/image/regwin-multi.gif
|
||||
share/gnome/gnucash/html/fr/image/regwin-single.gif
|
||||
share/gnome/gnucash/html/fr/image/regwin-single2.gif
|
||||
share/gnome/gnucash/html/fr/image/regwin.gif
|
||||
share/gnome/gnucash/html/fr/image/report-baln.gif
|
||||
share/gnome/gnucash/html/fr/image/report-folio.gif
|
||||
share/gnome/gnucash/html/fr/image/report-option.gif
|
||||
share/gnome/gnucash/html/fr/image/reportwin.gif
|
||||
share/gnome/gnucash/html/fr/image/ticker-a.gif
|
||||
share/gnome/gnucash/html/fr/image/ticker-b.gif
|
||||
share/gnome/gnucash/html/fr/projects.html
|
||||
share/gnome/gnucash/html/fr/xacc-about.html
|
||||
share/gnome/gnucash/html/fr/xacc-accountedit.html
|
||||
share/gnome/gnucash/html/fr/xacc-acctypes.html
|
||||
share/gnome/gnucash/html/fr/xacc-accwin.html
|
||||
share/gnome/gnucash/html/fr/xacc-adjbwin.html
|
||||
share/gnome/gnucash/html/fr/xacc-apar.html
|
||||
share/gnome/gnucash/html/fr/xacc-apprdepr.html
|
||||
share/gnome/gnucash/html/fr/xacc-bal_tracker.html
|
||||
share/gnome/gnucash/html/fr/xacc-balsheet.html
|
||||
share/gnome/gnucash/html/fr/xacc-currency.html
|
||||
share/gnome/gnucash/html/fr/xacc-date.html
|
||||
share/gnome/gnucash/html/fr/xacc-double.html
|
||||
share/gnome/gnucash/html/fr/xacc-expense.html
|
||||
share/gnome/gnucash/html/fr/xacc-globalprefs.html
|
||||
share/gnome/gnucash/html/fr/xacc-gpl-fr.html
|
||||
share/gnome/gnucash/html/fr/xacc-gpl.html
|
||||
share/gnome/gnucash/html/fr/xacc-groups.html
|
||||
share/gnome/gnucash/html/fr/xacc-main.html
|
||||
share/gnome/gnucash/html/fr/xacc-mainwin.html
|
||||
share/gnome/gnucash/html/fr/xacc-pnl.html
|
||||
share/gnome/gnucash/html/fr/xacc-print.html
|
||||
share/gnome/gnucash/html/fr/xacc-quicken.html
|
||||
share/gnome/gnucash/html/fr/xacc-recnwin.html
|
||||
share/gnome/gnucash/html/fr/xacc-regwin.html
|
||||
share/gnome/gnucash/html/fr/xacc-reports.html
|
||||
share/gnome/gnucash/html/fr/xacc-ticker.html
|
||||
share/gnome/gnucash/html/fr/xacc-trans_report.html
|
||||
share/gnome/gnucash/html/fr/xacc-y2k.html
|
||||
share/gnome/gnucash/html/gnucash.css
|
||||
share/gnome/gnucash/html/index.html
|
||||
share/gnome/gnucash/perl/Quote.pm
|
||||
share/gnome/gnucash/perl/gnucash.pm
|
||||
share/gnome/gnucash/scm/bootstrap.scm
|
||||
share/gnome/gnucash/scm/bs-interp.scm
|
||||
share/gnome/gnucash/scm/c-interface.scm
|
||||
share/gnome/gnucash/scm/command-line.scm
|
||||
share/gnome/gnucash/scm/config-var.scm
|
||||
share/gnome/gnucash/scm/currencies.scm
|
||||
share/gnome/gnucash/scm/date-utilities.scm
|
||||
share/gnome/gnucash/scm/depend.scm
|
||||
share/gnome/gnucash/scm/doc.scm
|
||||
share/gnome/gnucash/scm/engine-interface.scm
|
||||
share/gnome/gnucash/scm/engine-utilities.scm
|
||||
share/gnome/gnucash/scm/extensions.scm
|
||||
share/gnome/gnucash/scm/gnumeric/gnumeric-utilities.scm
|
||||
share/gnome/gnucash/scm/gnumeric/table-utils.scm
|
||||
share/gnome/gnucash/scm/graph.scm
|
||||
share/gnome/gnucash/scm/hooks.scm
|
||||
share/gnome/gnucash/scm/html-generator.scm
|
||||
share/gnome/gnucash/scm/main.scm
|
||||
share/gnome/gnucash/scm/options.scm
|
||||
share/gnome/gnucash/scm/path.scm
|
||||
share/gnome/gnucash/scm/prefs.scm
|
||||
share/gnome/gnucash/scm/printing/number-to-words.scm
|
||||
share/gnome/gnucash/scm/printing/print-check.scm
|
||||
share/gnome/gnucash/scm/qif-import/qif-dialog-utils.scm
|
||||
share/gnome/gnucash/scm/qif-import/qif-file.scm
|
||||
share/gnome/gnucash/scm/qif-import/qif-guess-map.scm
|
||||
share/gnome/gnucash/scm/qif-import/qif-import.scm
|
||||
share/gnome/gnucash/scm/qif-import/qif-objects.scm
|
||||
share/gnome/gnucash/scm/qif-import/qif-parse.scm
|
||||
share/gnome/gnucash/scm/qif-import/qif-to-gnc.scm
|
||||
share/gnome/gnucash/scm/qif-import/qif-utils.scm
|
||||
share/gnome/gnucash/scm/qif-import/simple-obj.scm
|
||||
share/gnome/gnucash/scm/report-utilities.scm
|
||||
share/gnome/gnucash/scm/report.scm
|
||||
share/gnome/gnucash/scm/report/average-balance.scm
|
||||
share/gnome/gnucash/scm/report/balance-and-pnl.scm
|
||||
share/gnome/gnucash/scm/report/budget-report.scm
|
||||
share/gnome/gnucash/scm/report/folio.scm
|
||||
share/gnome/gnucash/scm/report/hello-world.scm
|
||||
share/gnome/gnucash/scm/report/report-list.scm
|
||||
share/gnome/gnucash/scm/report/transaction-report.scm
|
||||
share/gnome/gnucash/scm/slib-backup.scm
|
||||
share/gnome/gnucash/scm/srfi/srfi-1.r5rs.scm
|
||||
share/gnome/gnucash/scm/srfi/srfi-1.unclear.scm
|
||||
share/gnome/gnucash/scm/srfi/srfi-19.scm
|
||||
share/gnome/gnucash/scm/srfi/srfi-8.guile.scm
|
||||
share/gnome/gnucash/scm/srfi/srfi-8.scm
|
||||
share/gnome/gnucash/scm/startup.scm
|
||||
share/gnome/gnucash/scm/structure.scm
|
||||
share/gnome/gnucash/scm/substring-search.scm
|
||||
share/gnome/gnucash/scm/testbed.scm
|
||||
share/gnome/gnucash/scm/text-export.scm
|
||||
share/gnome/gnucash/scm/utilities.scm
|
||||
share/gnome/gnucash/scm/xml-generator.scm
|
||||
share/locale/de/LC_MESSAGES/gnucash.mo
|
||||
share/locale/en_GB/LC_MESSAGES/gnucash.mo
|
||||
share/locale/fr/LC_MESSAGES/gnucash.mo
|
||||
|
@ -239,18 +239,18 @@ share/locale/sv/LC_MESSAGES/gnucash.mo
|
|||
@dirrm etc/gnucash
|
||||
@dirrm lib/gnucash/perl
|
||||
@dirrm lib/gnucash
|
||||
@dirrm share/gnucash/doc/examples
|
||||
@dirrm share/gnucash/doc
|
||||
@dirrm share/gnucash/html/C/image
|
||||
@dirrm share/gnucash/html/C
|
||||
@dirrm share/gnucash/html/fr/image
|
||||
@dirrm share/gnucash/html/fr
|
||||
@dirrm share/gnucash/html
|
||||
@dirrm share/gnucash/perl
|
||||
@dirrm share/gnucash/scm/gnumeric
|
||||
@dirrm share/gnucash/scm/printing
|
||||
@dirrm share/gnucash/scm/qif-import
|
||||
@dirrm share/gnucash/scm/srfi
|
||||
@dirrm share/gnucash/scm/report
|
||||
@dirrm share/gnucash/scm
|
||||
@dirrm share/gnucash
|
||||
@dirrm share/gnome/gnucash/doc/examples
|
||||
@dirrm share/gnome/gnucash/doc
|
||||
@dirrm share/gnome/gnucash/html/C/image
|
||||
@dirrm share/gnome/gnucash/html/C
|
||||
@dirrm share/gnome/gnucash/html/fr/image
|
||||
@dirrm share/gnome/gnucash/html/fr
|
||||
@dirrm share/gnome/gnucash/html
|
||||
@dirrm share/gnome/gnucash/perl
|
||||
@dirrm share/gnome/gnucash/scm/gnumeric
|
||||
@dirrm share/gnome/gnucash/scm/printing
|
||||
@dirrm share/gnome/gnucash/scm/qif-import
|
||||
@dirrm share/gnome/gnucash/scm/srfi
|
||||
@dirrm share/gnome/gnucash/scm/report
|
||||
@dirrm share/gnome/gnucash/scm
|
||||
@dirrm share/gnome/gnucash
|
||||
|
|
|
@ -12,18 +12,23 @@ MASTER_SITES= http://home.ins.de/~m.hussmann/software/yank/
|
|||
|
||||
MAINTAINER= jedgar@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= panel_applet.4:${PORTSDIR}/x11/gnomecore
|
||||
|
||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
PLIST_SUB= PORTVERSION=${PORTVERSION}
|
||||
|
||||
USE_BZIP2= yes
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GLIB_CONFIG="${GLIB_CONFIG}" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
pre-patch:
|
||||
@${PERL} -pi -e 's^-l(pthread|c_r)^-pthread^g ; \
|
||||
s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure
|
||||
@find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \
|
||||
's^\$\(datadir\)/gnome/^\$\(datadir\)/^g ; \
|
||||
s^\$\(datadir\)/locale^\$\(prefix\)/share/locale^g'
|
||||
@find ${WRKSRC}/src/Plugins -name "Makefile.in" | xargs ${PERL} -pi -e \
|
||||
's|_la_LDFLAGS =|_la_LDFLAGS = -avoid-version|g'
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,12 +1,10 @@
|
|||
bin/yank
|
||||
lib/yank/plugins/%%PORTVERSION%%/libPgp5.so
|
||||
share/gnome/apps/Applications/yank.desktop
|
||||
share/gnome/pixmaps/yank.png
|
||||
share/locale/de/LC_MESSAGES/yank.mo
|
||||
share/locale/ja/LC_MESSAGES/yank.mo
|
||||
share/locale/sv/LC_MESSAGES/yank.mo
|
||||
lib/yank/plugins/0.1.4/libPgp5.so.0
|
||||
lib/yank/plugins/0.1.4/libPgp5.so
|
||||
lib/yank/plugins/0.1.4/libPgp5.a
|
||||
@dirrm lib/yank/plugins/0.1.4
|
||||
@dirrm lib/yank/plugins/%%PORTVERSION%%
|
||||
@dirrm lib/yank/plugins
|
||||
@dirrm lib/yank
|
||||
|
|
|
@ -14,26 +14,17 @@ MASTER_SITE_SUBDIR= unstable/sources/bonobo
|
|||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \
|
||||
gnomeprint.12:${PORTSDIR}/print/gnomeprint \
|
||||
gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf \
|
||||
LIB_DEPENDS= gnomeprint.12:${PORTSDIR}/print/gnomeprint \
|
||||
oaf.0:${PORTSDIR}/devel/oaf
|
||||
RUN_DEPENDS= gnomecc:${PORTSDIR}/sysutils/gnomecontrolcenter
|
||||
|
||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_PERL5= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
LIBTOOLFILES= configure libefs/configure
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GLIB_CONFIG="${GLIB_CONFIG}" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
pre-patch:
|
||||
|
|
|
@ -14,14 +14,12 @@ DISTNAME= bug-buddy-${PORTVERSION}
|
|||
|
||||
MAINTAINER= nakai@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= panel_applet.4:${PORTSDIR}/x11/gnomecore \
|
||||
glade.4:${PORTSDIR}/devel/libglade
|
||||
LIB_DEPENDS= glade.4:${PORTSDIR}/devel/libglade
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
|
|
|
@ -14,14 +14,12 @@ DISTNAME= bug-buddy-${PORTVERSION}
|
|||
|
||||
MAINTAINER= nakai@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= panel_applet.4:${PORTSDIR}/x11/gnomecore \
|
||||
glade.4:${PORTSDIR}/devel/libglade
|
||||
LIB_DEPENDS= glade.4:${PORTSDIR}/devel/libglade
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
|
|
|
@ -14,14 +14,12 @@ DISTNAME= bug-buddy-${PORTVERSION}
|
|||
|
||||
MAINTAINER= nakai@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= panel_applet.4:${PORTSDIR}/x11/gnomecore \
|
||||
glade.4:${PORTSDIR}/devel/libglade
|
||||
LIB_DEPENDS= glade.4:${PORTSDIR}/devel/libglade
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
|
|
|
@ -14,26 +14,17 @@ DISTNAME= GConf-${PORTVERSION}
|
|||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \
|
||||
xml.5:${PORTSDIR}/textproc/libxml \
|
||||
popt.0:${PORTSDIR}/devel/popt \
|
||||
LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt \
|
||||
guile.9:${PORTSDIR}/lang/guile \
|
||||
oaf.0:${PORTSDIR}/devel/oaf \
|
||||
iconv.1:${PORTSDIR}/converters/iconv
|
||||
RUN_DEPENDS= gnomecc:${PORTSDIR}/sysutils/gnomecontrolcenter
|
||||
|
||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
USE_GMAKE= yes
|
||||
USE_X_PREFIX= yes
|
||||
USE_LIBTOOL= yes
|
||||
USE_GNOME= yes
|
||||
INSTALL_SHLIBS= yes
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GLIB_CONFIG="${GLIB_CONFIG}" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib -liconv"
|
||||
|
||||
pre-patch:
|
||||
|
|
|
@ -14,26 +14,17 @@ DISTNAME= GConf-${PORTVERSION}
|
|||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \
|
||||
xml.5:${PORTSDIR}/textproc/libxml \
|
||||
popt.0:${PORTSDIR}/devel/popt \
|
||||
LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt \
|
||||
guile.9:${PORTSDIR}/lang/guile \
|
||||
oaf.0:${PORTSDIR}/devel/oaf \
|
||||
iconv.1:${PORTSDIR}/converters/iconv
|
||||
RUN_DEPENDS= gnomecc:${PORTSDIR}/sysutils/gnomecontrolcenter
|
||||
|
||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
USE_GMAKE= yes
|
||||
USE_X_PREFIX= yes
|
||||
USE_LIBTOOL= yes
|
||||
USE_GNOME= yes
|
||||
INSTALL_SHLIBS= yes
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GLIB_CONFIG="${GLIB_CONFIG}" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib -liconv"
|
||||
|
||||
pre-patch:
|
||||
|
|
|
@ -13,19 +13,14 @@ MASTER_SITE_SUBDIR= unstable/sources/gIDE
|
|||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= panel_applet.4:${PORTSDIR}/x11/gnomecore \
|
||||
glade.4:${PORTSDIR}/devel/libglade \
|
||||
LIB_DEPENDS= glade.4:${PORTSDIR}/devel/libglade \
|
||||
guile.9:${PORTSDIR}/lang/guile
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
MAN1= gide.1 gdbio.1
|
||||
|
@ -34,12 +29,12 @@ PLIST_SUB= VERSION=${PORTVERSION}
|
|||
|
||||
pre-patch:
|
||||
@${PERL} -pi -e 's|-lpthread|-pthread|g ; \
|
||||
s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure
|
||||
s|DATADIRNAME=lib|DATADIRNAME=share|g ; \
|
||||
s|USE_INCLUDED_LIBINTL=yes|#USE_INCLUDED_LIBINTL=yes|g ; \
|
||||
s|\$$\(top_builddir\)/intl/libintl.a|-lintl|g' ${WRKSRC}/configure
|
||||
@find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \
|
||||
's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \
|
||||
s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g'
|
||||
|
||||
post-patch:
|
||||
@${PERL} -pi -e "s|%%LOCALBASE%%|${LOCALBASE}|g" ${WRKSRC}/src/*.c
|
||||
@${PERL} -pi -e "s|%%X11BASE%%|${X11BASE}|g" ${WRKSRC}/src/*.c
|
||||
|
||||
|
|
|
@ -12,25 +12,3 @@
|
|||
if eval "test \"`echo '$''{'am_cv_gnu_regex'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@@ -5163,15 +5164,15 @@
|
||||
fi
|
||||
|
||||
|
||||
- USE_INCLUDED_LIBINTL=yes
|
||||
+ USE_INCLUDED_LIBINTL=no
|
||||
CATOBJEXT=.gmo
|
||||
INSTOBJEXT=.mo
|
||||
DATADIRNAME=share
|
||||
- INTLDEPS='$(top_builddir)/intl/libintl.a'
|
||||
- INTLLIBS=$INTLDEPS
|
||||
- LIBS=`echo $LIBS | sed -e 's/-lintl//'`
|
||||
- nls_cv_header_intl=intl/libintl.h
|
||||
- nls_cv_header_libgt=intl/libgettext.h
|
||||
+ INTLDEPS=
|
||||
+ INTLLIBS=
|
||||
+ LIBS='-lintl'
|
||||
+ nls_cv_header_intl=
|
||||
+ nls_cv_header_libgt=
|
||||
fi
|
||||
|
||||
if test "$XGETTEXT" != ":"; then
|
||||
|
|
|
@ -13,17 +13,22 @@ MASTER_SITE_SUBDIR= stable/sources/glade
|
|||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs
|
||||
RUN_DEPENDS= gnomecc:${PORTSDIR}/sysutils/gnomecontrolcenter
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
FETCH_BEFORE_ARGS= -b
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/libs"
|
||||
|
||||
pre-patch:
|
||||
@${PERL} -pi -e 's|-lpthread|-pthread|g ; \
|
||||
s|DATADIRNAME=lib|DATADIRNAME=share|g ; \
|
||||
s|USE_INCLUDED_LIBINTL=yes|#USE_INCLUDED_LIBINTL=yes|g ; \
|
||||
s|\$$\(top_builddir\)/intl/libintl.a|-lintl|g' ${WRKSRC}/configure
|
||||
@find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \
|
||||
's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \
|
||||
s|\$\(datadir\)/\@PACKAGE\@|\$\(prefix\)/share/\@PACKAGE\@|g ; \
|
||||
s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g'
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -139,7 +139,6 @@ share/locale/uk/LC_MESSAGES/glade.mo
|
|||
@dirrm share/gnome/help/glade/C/faq
|
||||
@dirrm share/gnome/help/glade/C
|
||||
@dirrm share/gnome/help/glade
|
||||
@unexec rmdir %D/share/gnome/apps/Development 2>/dev/null || true
|
||||
@dirrm share/glade/gtk
|
||||
@dirrm share/glade/gnome
|
||||
@dirrm share/glade
|
||||
|
|
|
@ -13,17 +13,22 @@ MASTER_SITE_SUBDIR= stable/sources/glade
|
|||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs
|
||||
RUN_DEPENDS= gnomecc:${PORTSDIR}/sysutils/gnomecontrolcenter
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
FETCH_BEFORE_ARGS= -b
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/libs"
|
||||
|
||||
pre-patch:
|
||||
@${PERL} -pi -e 's|-lpthread|-pthread|g ; \
|
||||
s|DATADIRNAME=lib|DATADIRNAME=share|g ; \
|
||||
s|USE_INCLUDED_LIBINTL=yes|#USE_INCLUDED_LIBINTL=yes|g ; \
|
||||
s|\$$\(top_builddir\)/intl/libintl.a|-lintl|g' ${WRKSRC}/configure
|
||||
@find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \
|
||||
's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \
|
||||
s|\$\(datadir\)/\@PACKAGE\@|\$\(prefix\)/share/\@PACKAGE\@|g ; \
|
||||
s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g'
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -139,7 +139,6 @@ share/locale/uk/LC_MESSAGES/glade.mo
|
|||
@dirrm share/gnome/help/glade/C/faq
|
||||
@dirrm share/gnome/help/glade/C
|
||||
@dirrm share/gnome/help/glade
|
||||
@unexec rmdir %D/share/gnome/apps/Development 2>/dev/null || true
|
||||
@dirrm share/glade/gtk
|
||||
@dirrm share/glade/gnome
|
||||
@dirrm share/glade
|
||||
|
|
|
@ -14,25 +14,17 @@ DISTNAME= gnome-vfs-${PORTVERSION}
|
|||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \
|
||||
capplet.4:${PORTSDIR}/sysutils/gnomecontrolcenter \
|
||||
bonobo.2:${PORTSDIR}/devel/bonobo \
|
||||
LIB_DEPENDS= bonobo.2:${PORTSDIR}/devel/bonobo \
|
||||
gconf-1.1:${PORTSDIR}/devel/gconf \
|
||||
bz2.1:${PORTSDIR}/archivers/bzip2
|
||||
|
||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
USE_GMAKE= yes
|
||||
USE_X_PREFIX= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
INSTALL_SHLIBS= yes
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome \
|
||||
--disable-gconf
|
||||
CONFIGURE_ARGS= --disable-gconf
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GLIB_CONFIG="${GLIB_CONFIG}" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
MAN5= gnome-vfs-mime.5
|
||||
|
|
|
@ -14,25 +14,17 @@ DISTNAME= gnome-vfs-${PORTVERSION}
|
|||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \
|
||||
capplet.4:${PORTSDIR}/sysutils/gnomecontrolcenter \
|
||||
bonobo.2:${PORTSDIR}/devel/bonobo \
|
||||
LIB_DEPENDS= bonobo.2:${PORTSDIR}/devel/bonobo \
|
||||
gconf-1.1:${PORTSDIR}/devel/gconf \
|
||||
bz2.1:${PORTSDIR}/archivers/bzip2
|
||||
|
||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
USE_GMAKE= yes
|
||||
USE_X_PREFIX= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
INSTALL_SHLIBS= yes
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome \
|
||||
--disable-gconf
|
||||
CONFIGURE_ARGS= --disable-gconf
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GLIB_CONFIG="${GLIB_CONFIG}" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
MAN5= gnome-vfs-mime.5
|
||||
|
|
|
@ -14,25 +14,17 @@ DISTNAME= gnome-vfs-${PORTVERSION}
|
|||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \
|
||||
capplet.4:${PORTSDIR}/sysutils/gnomecontrolcenter \
|
||||
bonobo.2:${PORTSDIR}/devel/bonobo \
|
||||
LIB_DEPENDS= bonobo.2:${PORTSDIR}/devel/bonobo \
|
||||
gconf-1.1:${PORTSDIR}/devel/gconf \
|
||||
bz2.1:${PORTSDIR}/archivers/bzip2
|
||||
|
||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
USE_GMAKE= yes
|
||||
USE_X_PREFIX= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
INSTALL_SHLIBS= yes
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome \
|
||||
--disable-gconf
|
||||
CONFIGURE_ARGS= --disable-gconf
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GLIB_CONFIG="${GLIB_CONFIG}" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
MAN5= gnome-vfs-mime.5
|
||||
|
|
|
@ -14,25 +14,17 @@ DISTNAME= gnome-vfs-${PORTVERSION}
|
|||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \
|
||||
capplet.4:${PORTSDIR}/sysutils/gnomecontrolcenter \
|
||||
bonobo.2:${PORTSDIR}/devel/bonobo \
|
||||
LIB_DEPENDS= bonobo.2:${PORTSDIR}/devel/bonobo \
|
||||
gconf-1.1:${PORTSDIR}/devel/gconf \
|
||||
bz2.1:${PORTSDIR}/archivers/bzip2
|
||||
|
||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
USE_GMAKE= yes
|
||||
USE_X_PREFIX= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
INSTALL_SHLIBS= yes
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome \
|
||||
--disable-gconf
|
||||
CONFIGURE_ARGS= --disable-gconf
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GLIB_CONFIG="${GLIB_CONFIG}" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
MAN5= gnome-vfs-mime.5
|
||||
|
|
|
@ -14,24 +14,16 @@ MASTER_SITE_SUBDIR= ${PORTNAME}
|
|||
|
||||
MAINTAINER= sobomax@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \
|
||||
oaf.0:${PORTSDIR}/devel/oaf
|
||||
RUN_DEPENDS= panel:${PORTSDIR}/x11/gnomecore \
|
||||
gmc:${PORTSDIR}/x11-fm/gnomemc
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||
LIB_DEPENDS= oaf.0:${PORTSDIR}/devel/oaf
|
||||
RUN_DEPENDS= gmc:${PORTSDIR}/x11-fm/gnomemc
|
||||
|
||||
USE_BZIP2= yes
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
CONFIGURE_ENV= GLIB_CONFIG="${GLIB_CONFIG}" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
MAN1= gtranslator.1
|
||||
|
||||
|
|
|
@ -13,17 +13,14 @@ MASTER_SITE_SUBDIR= stable/sources/libglade
|
|||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \
|
||||
xml.5:${PORTSDIR}/textproc/libxml
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
LIB_DEPENDS= xml.5:${PORTSDIR}/textproc/libxml
|
||||
|
||||
USE_PERL5= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOMELIBS= yes
|
||||
USE_LIBTOOL= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -7,7 +7,8 @@
|
|||
-SUBDIRS = intl po macros glade doc
|
||||
+SUBDIRS = intl po macros glade
|
||||
|
||||
m4datadir = $(datadir)/aclocal
|
||||
-m4datadir = $(datadir)/aclocal
|
||||
+m4datadir = $(prefix)/share/aclocal
|
||||
m4data_DATA = libglade.m4
|
||||
|
||||
-confexecdir = $(libdir)
|
||||
|
|
|
@ -13,17 +13,14 @@ MASTER_SITE_SUBDIR= stable/sources/libglade
|
|||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \
|
||||
xml.5:${PORTSDIR}/textproc/libxml
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
LIB_DEPENDS= xml.5:${PORTSDIR}/textproc/libxml
|
||||
|
||||
USE_PERL5= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOMELIBS= yes
|
||||
USE_LIBTOOL= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -7,7 +7,8 @@
|
|||
-SUBDIRS = intl po macros glade doc
|
||||
+SUBDIRS = intl po macros glade
|
||||
|
||||
m4datadir = $(datadir)/aclocal
|
||||
-m4datadir = $(datadir)/aclocal
|
||||
+m4datadir = $(prefix)/share/aclocal
|
||||
m4data_DATA = libglade.m4
|
||||
|
||||
-confexecdir = $(libdir)
|
||||
|
|
|
@ -13,18 +13,15 @@ MASTER_SITE_SUBDIR= stable/sources/libgtop
|
|||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \
|
||||
guile.9:${PORTSDIR}/lang/guile
|
||||
|
||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||
LIB_DEPENDS= guile.9:${PORTSDIR}/lang/guile
|
||||
|
||||
USE_PERL5= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOMELIBS= yes
|
||||
USE_LIBTOOL= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GLIB_CONFIG="${GLIB_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
pre-patch:
|
||||
|
|
|
@ -13,18 +13,15 @@ MASTER_SITE_SUBDIR= stable/sources/libgtop
|
|||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \
|
||||
guile.9:${PORTSDIR}/lang/guile
|
||||
|
||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||
LIB_DEPENDS= guile.9:${PORTSDIR}/lang/guile
|
||||
|
||||
USE_PERL5= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOMELIBS= yes
|
||||
USE_LIBTOOL= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GLIB_CONFIG="${GLIB_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
pre-patch:
|
||||
|
|
|
@ -12,18 +12,20 @@ MASTER_SITES= http://home.earthlink.net/~nawalker/pharmacy/
|
|||
|
||||
MAINTAINER= jedgar@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs
|
||||
|
||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --with-x
|
||||
CONFIGURE_ENV+= CFLAGS="-I${LOCALBASE}/include ${CFLAGS}" \
|
||||
GLIB_CONFIG="${GLIB_CONFIG}" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
CONFIGURE_ENV+= CPPCFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
pre-patch:
|
||||
@${PERL} -pi -e 's|-lpthread|-pthread|g ; \
|
||||
s|DATADIRNAME=lib|DATADIRNAME=share|g ; \
|
||||
s|USE_INCLUDED_LIBINTL=yes|#USE_INCLUDED_LIBINTL=yes|g ; \
|
||||
s|\$$\(top_builddir\)/intl/libintl.a|-lintl|g' ${WRKSRC}/configure
|
||||
@find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \
|
||||
's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \
|
||||
s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g'
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -11,7 +11,7 @@ share/gnome/help/pharmacy/C/topic.dat
|
|||
share/gnome/help/pharmacy/C/update.html
|
||||
share/gnome/help/pharmacy/C/using.html
|
||||
share/gnome/help/pharmacy/C/web.html
|
||||
share/pixmaps/pharmacy.png
|
||||
share/gnome/pixmaps/pharmacy.png
|
||||
share/locale/de/LC_MESSAGES/pharmacy.mo
|
||||
share/locale/fr/LC_MESSAGES/pharmacy.mo
|
||||
share/locale/ko/LC_MESSAGES/pharmacy.mo
|
||||
|
|
|
@ -13,19 +13,14 @@ DISTNAME= ${PORTNAME}_${PORTVERSION}
|
|||
|
||||
MAINTAINER= nakai@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= iconv.1:${PORTSDIR}/converters/iconv \
|
||||
gnome.4:${PORTSDIR}/x11/gnomelibs
|
||||
LIB_DEPENDS= iconv.1:${PORTSDIR}/converters/iconv
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GNOME= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASSE}/include" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib -liconv"
|
||||
|
||||
MAN1= dedit.1
|
||||
|
@ -35,8 +30,8 @@ MANLANG= "" ja
|
|||
|
||||
post-install:
|
||||
.if defined(KANJI)
|
||||
${INSTALL_MAN} ${WRKSRC}/doc/dedit.ja.1 \
|
||||
${PREFIX}/man/ja/man1/dedit.1
|
||||
${INSTALL_MAN} ${WRKSRC}/doc/dedit.ja.1 \
|
||||
${PREFIX}/man/ja/man1/dedit.1
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -13,21 +13,14 @@ MASTER_SITE_SUBDIR= ${PORTNAME}
|
|||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \
|
||||
gnomeprint.12:${PORTSDIR}/print/gnomeprint \
|
||||
LIB_DEPENDS= gnomeprint.12:${PORTSDIR}/print/gnomeprint \
|
||||
glade.4:${PORTSDIR}/devel/libglade
|
||||
RUN_DEPENDS= gnomecc:${PORTSDIR}/sysutils/gnomecontrolcenter
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
MAN1= gedit.1
|
||||
|
|
|
@ -13,21 +13,14 @@ MASTER_SITE_SUBDIR= ${PORTNAME}
|
|||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \
|
||||
gnomeprint.12:${PORTSDIR}/print/gnomeprint \
|
||||
LIB_DEPENDS= gnomeprint.12:${PORTSDIR}/print/gnomeprint \
|
||||
glade.4:${PORTSDIR}/devel/libglade
|
||||
RUN_DEPENDS= gnomecc:${PORTSDIR}/sysutils/gnomecontrolcenter
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
MAN1= gedit.1
|
||||
|
|
|
@ -13,22 +13,15 @@ MASTER_SITE_SUBDIR= stable/sources/ghex
|
|||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \
|
||||
gnomeprint.12:${PORTSDIR}/print/gnomeprint
|
||||
RUN_DEPENDS= panel:${PORTSDIR}/x11/gnomecore
|
||||
LIB_DEPENDS= gnomeprint.12:${PORTSDIR}/print/gnomeprint
|
||||
|
||||
BROKEN= "Uses internals from gnomeprint that are no longer present"
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
pre-patch:
|
||||
|
|
|
@ -13,22 +13,15 @@ MASTER_SITE_SUBDIR= stable/sources/ghex
|
|||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \
|
||||
gnomeprint.12:${PORTSDIR}/print/gnomeprint
|
||||
RUN_DEPENDS= panel:${PORTSDIR}/x11/gnomecore
|
||||
LIB_DEPENDS= gnomeprint.12:${PORTSDIR}/print/gnomeprint
|
||||
|
||||
BROKEN= "Uses internals from gnomeprint that are no longer present"
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
pre-patch:
|
||||
|
|
|
@ -14,22 +14,12 @@ MASTER_SITE_SUBDIR= ${PORTNAME}
|
|||
|
||||
MAINTAINER= sobomax@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs
|
||||
RUN_DEPENDS= panel:${PORTSDIR}/x11/gnomecore
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_LIBTOOL= yes
|
||||
USE_PYTHON= yes
|
||||
|
||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ENV= GLIB_CONFIG="${GLIB_CONFIG}" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
pre-patch:
|
||||
@${PERL} -pi -e 's|-lpthread|-pthread|g ; \
|
||||
|
|
|
@ -14,20 +14,14 @@ MASTER_SITE_SUBDIR= ${PORTNAME}
|
|||
|
||||
MAINTAINER= sobomax@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
USE_BZIP2= yes
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ENV= GLIB_CONFIG="${GLIB_CONFIG}" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
ALL_TARGET= clean all
|
||||
|
||||
post-extract:
|
||||
|
|
|
@ -13,17 +13,24 @@ MASTER_SITE_SUBDIR= ${PORTNAME}
|
|||
|
||||
MAINTAINER= jedgar@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \
|
||||
xml.5:${PORTSDIR}/textproc/libxml
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_LIBTOOL= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
MAN1= gnofin.1
|
||||
|
||||
CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}"
|
||||
pre-patch:
|
||||
@${PERL} -pi -e 's|-lpthread|-pthread|g ; \
|
||||
s|DATADIRNAME=lib|DATADIRNAME=share|g ; \
|
||||
s|USE_INCLUDED_LIBINTL=yes|#USE_INCLUDED_LIBINTL=yes|g ; \
|
||||
s|\$$\(top_builddir\)/intl/libintl.a|-lintl|g' ${WRKSRC}/configure
|
||||
@find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \
|
||||
's|\$$\(datadir\)/gnome/|\$$\(datadir\)/|g ; \
|
||||
s|\$$\(datadir\)/locale|\$$\(prefix\)/share/locale|g'
|
||||
@find ${WRKSRC}/plugins -name "Makefile.in" | xargs ${PERL} -pi -e \
|
||||
's|_la_LDFLAGS =|_la_LDFLAGS = -avoid-version|g'
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,28 +1,13 @@
|
|||
bin/gnofin
|
||||
lib/gnofin/plugins/libqif.so.0
|
||||
lib/gnofin/plugins/libqif.so
|
||||
lib/gnofin/plugins/libqif.a
|
||||
lib/gnofin/plugins/libhtml.so.0
|
||||
lib/gnofin/plugins/libhtml.so
|
||||
lib/gnofin/plugins/libhtml.a
|
||||
lib/gnofin/plugins/liblatex.so.0
|
||||
lib/gnofin/plugins/liblatex.so
|
||||
lib/gnofin/plugins/liblatex.a
|
||||
lib/gnofin/plugins/libtext.so.0
|
||||
lib/gnofin/plugins/libtext.so
|
||||
lib/gnofin/plugins/libtext.a
|
||||
lib/gnofin/plugins/libcbb.so.0
|
||||
lib/gnofin/plugins/libcbb.so
|
||||
lib/gnofin/plugins/libcbb.a
|
||||
lib/gnofin/plugins/libfind.so.0
|
||||
lib/gnofin/plugins/libfind.so
|
||||
lib/gnofin/plugins/libfind.a
|
||||
lib/gnofin/plugins/libreconcile.so.0
|
||||
lib/gnofin/plugins/libhtml.so
|
||||
lib/gnofin/plugins/liblatex.so
|
||||
lib/gnofin/plugins/libqif.so
|
||||
lib/gnofin/plugins/libreconcile.so
|
||||
lib/gnofin/plugins/libreconcile.a
|
||||
lib/gnofin/plugins/libsched.so.0
|
||||
lib/gnofin/plugins/libsched.so
|
||||
lib/gnofin/plugins/libsched.a
|
||||
lib/gnofin/plugins/libtext.so
|
||||
share/gnome/apps/Applications/gnofin.desktop
|
||||
share/locale/fr/LC_MESSAGES/gnofin.mo
|
||||
@dirrm lib/gnofin/plugins
|
||||
@dirrm lib/gnofin
|
||||
|
|
|
@ -19,30 +19,34 @@ MAINTAINER= ade@FreeBSD.org
|
|||
BUILD_DEPENDS= swig:${PORTSDIR}/devel/SWIG \
|
||||
g-wrap:${PORTSDIR}/devel/g-wrap \
|
||||
eperl:${PORTSDIR}/lang/eperl
|
||||
LIB_DEPENDS= panel_applet.4:${PORTSDIR}/x11/gnomecore \
|
||||
guile.9:${PORTSDIR}/lang/guile
|
||||
LIB_DEPENDS= guile.9:${PORTSDIR}/lang/guile
|
||||
RUN_DEPENDS= slib48:${PORTSDIR}/lang/slib \
|
||||
gnuplot:${PORTSDIR}/math/gnuplot \
|
||||
${site_perl}/HTML/Base.pm:${PORTSDIR}/www/p5-HTML \
|
||||
${site_perl}/LWP.pm:${PORTSDIR}/www/p5-libwww
|
||||
|
||||
site_perl= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_XPM= yes
|
||||
USE_X_PREFIX= yes
|
||||
USE_PERL5= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||
CONFIGURE_ENV= MAKE=gmake \
|
||||
CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
GLIB_CONFIG="${GLIB_CONFIG}"
|
||||
CONFIGURE_ARGS= --with-glib-config=${GLIB_CONFIG}
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
|
||||
|
||||
MAN1= gnc-prices.1 gnucash.1
|
||||
|
||||
pre-patch:
|
||||
@${PERL} -pi -e 's^-l(pthread|c_r)^-pthread^g ; \
|
||||
s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure
|
||||
@find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \
|
||||
's^\$\{datadir\}/gnome/^\$\(datadir\)/^g ; \
|
||||
s^\$\{datadir\}/aclocal^\$\(prefix\)/share/aclocal^g ; \
|
||||
s^\$\{datadir\}/locale^\$\(prefix\)/share/locale^g'
|
||||
|
||||
post-install:
|
||||
@strip ${PREFIX}/bin/gnucash
|
||||
|
|
|
@ -11,223 +11,223 @@ lib/gnucash/perl/libgncswig.so.1
|
|||
@exec /sbin/ldconfig -m %D/lib/gnucash
|
||||
@unexec /sbin/ldconfig -R
|
||||
share/gnome/apps/Applications/gnucash.desktop
|
||||
share/gnucash/doc/AUTHORS
|
||||
share/gnucash/doc/COPYING
|
||||
share/gnucash/doc/ChangeLog
|
||||
share/gnucash/doc/INSTALL
|
||||
share/gnucash/doc/NEWS
|
||||
share/gnucash/doc/README
|
||||
share/gnucash/doc/README.francais
|
||||
share/gnucash/doc/README.german
|
||||
share/gnucash/doc/examples/Money95bank_fr.qif
|
||||
share/gnucash/doc/examples/Money95invst_fr.qif
|
||||
share/gnucash/doc/examples/Money95mfunds_fr.qif
|
||||
share/gnucash/doc/examples/Money95stocks_fr.qif
|
||||
share/gnucash/doc/examples/README
|
||||
share/gnucash/doc/examples/abc-all.qif
|
||||
share/gnucash/doc/examples/abc.qif
|
||||
share/gnucash/doc/examples/bogus.qif
|
||||
share/gnucash/doc/examples/cbb-export.qif
|
||||
share/gnucash/doc/examples/currency.xac
|
||||
share/gnucash/doc/examples/every.qif
|
||||
share/gnucash/doc/examples/ms-money.qif
|
||||
share/gnucash/doc/examples/quicktest.qif
|
||||
share/gnucash/doc/examples/splitdemo.xac
|
||||
share/gnucash/doc/examples/swipe.qif
|
||||
share/gnucash/doc/examples/test.xac
|
||||
share/gnucash/doc/examples/test2.xac
|
||||
share/gnucash/doc/examples/test3.xac
|
||||
share/gnucash/doc/examples/test4.xac
|
||||
share/gnucash/doc/examples/trading.xac
|
||||
share/gnucash/doc/examples/trading2.xac
|
||||
share/gnucash/doc/examples/web.qif
|
||||
share/gnucash/doc/examples/xfer.xac
|
||||
share/gnucash/doc/gnc.html
|
||||
share/gnucash/doc/guile-hackers.txt
|
||||
share/gnucash/html/C/RAW-NOTES
|
||||
share/gnucash/html/C/bofa-mym.html
|
||||
share/gnucash/html/C/image/appr-asset1.gif
|
||||
share/gnucash/html/C/image/appr-asset2.gif
|
||||
share/gnucash/html/C/image/appr-income.gif
|
||||
share/gnucash/html/C/image/appr-main1.gif
|
||||
share/gnucash/html/C/image/appr-main2.gif
|
||||
share/gnucash/html/C/image/bal-graph.gif
|
||||
share/gnucash/html/C/image/contract.gif
|
||||
share/gnucash/html/C/image/depr-asset.gif
|
||||
share/gnucash/html/C/image/depr-main.gif
|
||||
share/gnucash/html/C/image/expand.gif
|
||||
share/gnucash/html/C/image/foliowin-single.gif
|
||||
share/gnucash/html/C/image/foliowin.gif
|
||||
share/gnucash/html/C/image/logo-NetBSD-banner.gif
|
||||
share/gnucash/html/C/image/logo-bullogogross.gif
|
||||
share/gnucash/html/C/image/logo-debian.jpg
|
||||
share/gnucash/html/C/image/logo-ibm.gif
|
||||
share/gnucash/html/C/image/logo-linux.gif
|
||||
share/gnucash/html/C/image/logo-sgi.gif
|
||||
share/gnucash/html/C/image/logo-skunkware.gif
|
||||
share/gnucash/html/C/image/newaccwin-code.gif
|
||||
share/gnucash/html/C/image/newaccwin-trade.gif
|
||||
share/gnucash/html/C/image/recnwin.gif
|
||||
share/gnucash/html/C/image/regwin-double.gif
|
||||
share/gnucash/html/C/image/regwin-multi.gif
|
||||
share/gnucash/html/C/image/regwin-single.gif
|
||||
share/gnucash/html/C/image/regwin-single2.gif
|
||||
share/gnucash/html/C/image/report-av-baln.gif
|
||||
share/gnucash/html/C/image/report-baln.gif
|
||||
share/gnucash/html/C/image/report-folio.gif
|
||||
share/gnucash/html/C/image/report-option.gif
|
||||
share/gnucash/html/C/image/report-pnl.gif
|
||||
share/gnucash/html/C/image/reportwin.gif
|
||||
share/gnucash/html/C/image/ticker-a.gif
|
||||
share/gnucash/html/C/image/ticker-b.gif
|
||||
share/gnucash/html/C/projects.html
|
||||
share/gnucash/html/C/xacc-about.html
|
||||
share/gnucash/html/C/xacc-accountedit.html
|
||||
share/gnucash/html/C/xacc-acctypes.html
|
||||
share/gnucash/html/C/xacc-accwin.html
|
||||
share/gnucash/html/C/xacc-adjbwin.html
|
||||
share/gnucash/html/C/xacc-apar.html
|
||||
share/gnucash/html/C/xacc-apprdepr.html
|
||||
share/gnucash/html/C/xacc-bal_tracker.html
|
||||
share/gnucash/html/C/xacc-balsheet.html
|
||||
share/gnucash/html/C/xacc-currency.html
|
||||
share/gnucash/html/C/xacc-date.html
|
||||
share/gnucash/html/C/xacc-double.html
|
||||
share/gnucash/html/C/xacc-euro.html
|
||||
share/gnucash/html/C/xacc-expense.html
|
||||
share/gnucash/html/C/xacc-find-transactions.html
|
||||
share/gnucash/html/C/xacc-globalprefs.html
|
||||
share/gnucash/html/C/xacc-globalprops.html
|
||||
share/gnucash/html/C/xacc-gpl.html
|
||||
share/gnucash/html/C/xacc-groups.html
|
||||
share/gnucash/html/C/xacc-main.html
|
||||
share/gnucash/html/C/xacc-mainwin.html
|
||||
share/gnucash/html/C/xacc-pnl.html
|
||||
share/gnucash/html/C/xacc-portfolio_report.html
|
||||
share/gnucash/html/C/xacc-print.html
|
||||
share/gnucash/html/C/xacc-qif-import.html
|
||||
share/gnucash/html/C/xacc-quicken.html
|
||||
share/gnucash/html/C/xacc-recnwin.html
|
||||
share/gnucash/html/C/xacc-regwin.html
|
||||
share/gnucash/html/C/xacc-regwin_kbd.html
|
||||
share/gnucash/html/C/xacc-reports.html
|
||||
share/gnucash/html/C/xacc-ticker.html
|
||||
share/gnucash/html/C/xacc-trans_report.html
|
||||
share/gnucash/html/C/xacc-y2k.html
|
||||
share/gnucash/html/fr/bofa-mym.html
|
||||
share/gnucash/html/fr/image/appr-asset1.gif
|
||||
share/gnucash/html/fr/image/appr-asset2.gif
|
||||
share/gnucash/html/fr/image/appr-income.gif
|
||||
share/gnucash/html/fr/image/appr-main1.gif
|
||||
share/gnucash/html/fr/image/appr-main2.gif
|
||||
share/gnucash/html/fr/image/contract.gif
|
||||
share/gnucash/html/fr/image/depr-asset.gif
|
||||
share/gnucash/html/fr/image/depr-main.gif
|
||||
share/gnucash/html/fr/image/expand.gif
|
||||
share/gnucash/html/fr/image/foliowin-single.gif
|
||||
share/gnucash/html/fr/image/foliowin.gif
|
||||
share/gnucash/html/fr/image/newaccwin-code.gif
|
||||
share/gnucash/html/fr/image/newaccwin-trade.gif
|
||||
share/gnucash/html/fr/image/newaccwin.gif
|
||||
share/gnucash/html/fr/image/recnwin.gif
|
||||
share/gnucash/html/fr/image/regwin-double.gif
|
||||
share/gnucash/html/fr/image/regwin-multi.gif
|
||||
share/gnucash/html/fr/image/regwin-single.gif
|
||||
share/gnucash/html/fr/image/regwin-single2.gif
|
||||
share/gnucash/html/fr/image/regwin.gif
|
||||
share/gnucash/html/fr/image/report-baln.gif
|
||||
share/gnucash/html/fr/image/report-folio.gif
|
||||
share/gnucash/html/fr/image/report-option.gif
|
||||
share/gnucash/html/fr/image/reportwin.gif
|
||||
share/gnucash/html/fr/image/ticker-a.gif
|
||||
share/gnucash/html/fr/image/ticker-b.gif
|
||||
share/gnucash/html/fr/projects.html
|
||||
share/gnucash/html/fr/xacc-about.html
|
||||
share/gnucash/html/fr/xacc-accountedit.html
|
||||
share/gnucash/html/fr/xacc-acctypes.html
|
||||
share/gnucash/html/fr/xacc-accwin.html
|
||||
share/gnucash/html/fr/xacc-adjbwin.html
|
||||
share/gnucash/html/fr/xacc-apar.html
|
||||
share/gnucash/html/fr/xacc-apprdepr.html
|
||||
share/gnucash/html/fr/xacc-bal_tracker.html
|
||||
share/gnucash/html/fr/xacc-balsheet.html
|
||||
share/gnucash/html/fr/xacc-currency.html
|
||||
share/gnucash/html/fr/xacc-date.html
|
||||
share/gnucash/html/fr/xacc-double.html
|
||||
share/gnucash/html/fr/xacc-expense.html
|
||||
share/gnucash/html/fr/xacc-globalprefs.html
|
||||
share/gnucash/html/fr/xacc-gpl-fr.html
|
||||
share/gnucash/html/fr/xacc-gpl.html
|
||||
share/gnucash/html/fr/xacc-groups.html
|
||||
share/gnucash/html/fr/xacc-main.html
|
||||
share/gnucash/html/fr/xacc-mainwin.html
|
||||
share/gnucash/html/fr/xacc-pnl.html
|
||||
share/gnucash/html/fr/xacc-print.html
|
||||
share/gnucash/html/fr/xacc-quicken.html
|
||||
share/gnucash/html/fr/xacc-recnwin.html
|
||||
share/gnucash/html/fr/xacc-regwin.html
|
||||
share/gnucash/html/fr/xacc-reports.html
|
||||
share/gnucash/html/fr/xacc-ticker.html
|
||||
share/gnucash/html/fr/xacc-trans_report.html
|
||||
share/gnucash/html/fr/xacc-y2k.html
|
||||
share/gnucash/html/gnucash.css
|
||||
share/gnucash/html/index.html
|
||||
share/gnucash/perl/Quote.pm
|
||||
share/gnucash/perl/gnucash.pm
|
||||
share/gnucash/scm/bootstrap.scm
|
||||
share/gnucash/scm/bs-interp.scm
|
||||
share/gnucash/scm/c-interface.scm
|
||||
share/gnucash/scm/command-line.scm
|
||||
share/gnucash/scm/config-var.scm
|
||||
share/gnucash/scm/currencies.scm
|
||||
share/gnucash/scm/date-utilities.scm
|
||||
share/gnucash/scm/depend.scm
|
||||
share/gnucash/scm/doc.scm
|
||||
share/gnucash/scm/engine-interface.scm
|
||||
share/gnucash/scm/engine-utilities.scm
|
||||
share/gnucash/scm/extensions.scm
|
||||
share/gnucash/scm/gnumeric/gnumeric-utilities.scm
|
||||
share/gnucash/scm/gnumeric/table-utils.scm
|
||||
share/gnucash/scm/graph.scm
|
||||
share/gnucash/scm/hooks.scm
|
||||
share/gnucash/scm/html-generator.scm
|
||||
share/gnucash/scm/main.scm
|
||||
share/gnucash/scm/options.scm
|
||||
share/gnucash/scm/path.scm
|
||||
share/gnucash/scm/prefs.scm
|
||||
share/gnucash/scm/printing/number-to-words.scm
|
||||
share/gnucash/scm/printing/print-check.scm
|
||||
share/gnucash/scm/qif-import/qif-dialog-utils.scm
|
||||
share/gnucash/scm/qif-import/qif-file.scm
|
||||
share/gnucash/scm/qif-import/qif-guess-map.scm
|
||||
share/gnucash/scm/qif-import/qif-import.scm
|
||||
share/gnucash/scm/qif-import/qif-objects.scm
|
||||
share/gnucash/scm/qif-import/qif-parse.scm
|
||||
share/gnucash/scm/qif-import/qif-to-gnc.scm
|
||||
share/gnucash/scm/qif-import/qif-utils.scm
|
||||
share/gnucash/scm/qif-import/simple-obj.scm
|
||||
share/gnucash/scm/report-utilities.scm
|
||||
share/gnucash/scm/report.scm
|
||||
share/gnucash/scm/report/average-balance.scm
|
||||
share/gnucash/scm/report/balance-and-pnl.scm
|
||||
share/gnucash/scm/report/budget-report.scm
|
||||
share/gnucash/scm/report/folio.scm
|
||||
share/gnucash/scm/report/hello-world.scm
|
||||
share/gnucash/scm/report/report-list.scm
|
||||
share/gnucash/scm/report/transaction-report.scm
|
||||
share/gnucash/scm/slib-backup.scm
|
||||
share/gnucash/scm/srfi/srfi-1.r5rs.scm
|
||||
share/gnucash/scm/srfi/srfi-1.unclear.scm
|
||||
share/gnucash/scm/srfi/srfi-19.scm
|
||||
share/gnucash/scm/srfi/srfi-8.guile.scm
|
||||
share/gnucash/scm/srfi/srfi-8.scm
|
||||
share/gnucash/scm/startup.scm
|
||||
share/gnucash/scm/structure.scm
|
||||
share/gnucash/scm/substring-search.scm
|
||||
share/gnucash/scm/testbed.scm
|
||||
share/gnucash/scm/text-export.scm
|
||||
share/gnucash/scm/utilities.scm
|
||||
share/gnucash/scm/xml-generator.scm
|
||||
share/gnome/gnucash/doc/AUTHORS
|
||||
share/gnome/gnucash/doc/COPYING
|
||||
share/gnome/gnucash/doc/ChangeLog
|
||||
share/gnome/gnucash/doc/INSTALL
|
||||
share/gnome/gnucash/doc/NEWS
|
||||
share/gnome/gnucash/doc/README
|
||||
share/gnome/gnucash/doc/README.francais
|
||||
share/gnome/gnucash/doc/README.german
|
||||
share/gnome/gnucash/doc/examples/Money95bank_fr.qif
|
||||
share/gnome/gnucash/doc/examples/Money95invst_fr.qif
|
||||
share/gnome/gnucash/doc/examples/Money95mfunds_fr.qif
|
||||
share/gnome/gnucash/doc/examples/Money95stocks_fr.qif
|
||||
share/gnome/gnucash/doc/examples/README
|
||||
share/gnome/gnucash/doc/examples/abc-all.qif
|
||||
share/gnome/gnucash/doc/examples/abc.qif
|
||||
share/gnome/gnucash/doc/examples/bogus.qif
|
||||
share/gnome/gnucash/doc/examples/cbb-export.qif
|
||||
share/gnome/gnucash/doc/examples/currency.xac
|
||||
share/gnome/gnucash/doc/examples/every.qif
|
||||
share/gnome/gnucash/doc/examples/ms-money.qif
|
||||
share/gnome/gnucash/doc/examples/quicktest.qif
|
||||
share/gnome/gnucash/doc/examples/splitdemo.xac
|
||||
share/gnome/gnucash/doc/examples/swipe.qif
|
||||
share/gnome/gnucash/doc/examples/test.xac
|
||||
share/gnome/gnucash/doc/examples/test2.xac
|
||||
share/gnome/gnucash/doc/examples/test3.xac
|
||||
share/gnome/gnucash/doc/examples/test4.xac
|
||||
share/gnome/gnucash/doc/examples/trading.xac
|
||||
share/gnome/gnucash/doc/examples/trading2.xac
|
||||
share/gnome/gnucash/doc/examples/web.qif
|
||||
share/gnome/gnucash/doc/examples/xfer.xac
|
||||
share/gnome/gnucash/doc/gnc.html
|
||||
share/gnome/gnucash/doc/guile-hackers.txt
|
||||
share/gnome/gnucash/html/C/RAW-NOTES
|
||||
share/gnome/gnucash/html/C/bofa-mym.html
|
||||
share/gnome/gnucash/html/C/image/appr-asset1.gif
|
||||
share/gnome/gnucash/html/C/image/appr-asset2.gif
|
||||
share/gnome/gnucash/html/C/image/appr-income.gif
|
||||
share/gnome/gnucash/html/C/image/appr-main1.gif
|
||||
share/gnome/gnucash/html/C/image/appr-main2.gif
|
||||
share/gnome/gnucash/html/C/image/bal-graph.gif
|
||||
share/gnome/gnucash/html/C/image/contract.gif
|
||||
share/gnome/gnucash/html/C/image/depr-asset.gif
|
||||
share/gnome/gnucash/html/C/image/depr-main.gif
|
||||
share/gnome/gnucash/html/C/image/expand.gif
|
||||
share/gnome/gnucash/html/C/image/foliowin-single.gif
|
||||
share/gnome/gnucash/html/C/image/foliowin.gif
|
||||
share/gnome/gnucash/html/C/image/logo-NetBSD-banner.gif
|
||||
share/gnome/gnucash/html/C/image/logo-bullogogross.gif
|
||||
share/gnome/gnucash/html/C/image/logo-debian.jpg
|
||||
share/gnome/gnucash/html/C/image/logo-ibm.gif
|
||||
share/gnome/gnucash/html/C/image/logo-linux.gif
|
||||
share/gnome/gnucash/html/C/image/logo-sgi.gif
|
||||
share/gnome/gnucash/html/C/image/logo-skunkware.gif
|
||||
share/gnome/gnucash/html/C/image/newaccwin-code.gif
|
||||
share/gnome/gnucash/html/C/image/newaccwin-trade.gif
|
||||
share/gnome/gnucash/html/C/image/recnwin.gif
|
||||
share/gnome/gnucash/html/C/image/regwin-double.gif
|
||||
share/gnome/gnucash/html/C/image/regwin-multi.gif
|
||||
share/gnome/gnucash/html/C/image/regwin-single.gif
|
||||
share/gnome/gnucash/html/C/image/regwin-single2.gif
|
||||
share/gnome/gnucash/html/C/image/report-av-baln.gif
|
||||
share/gnome/gnucash/html/C/image/report-baln.gif
|
||||
share/gnome/gnucash/html/C/image/report-folio.gif
|
||||
share/gnome/gnucash/html/C/image/report-option.gif
|
||||
share/gnome/gnucash/html/C/image/report-pnl.gif
|
||||
share/gnome/gnucash/html/C/image/reportwin.gif
|
||||
share/gnome/gnucash/html/C/image/ticker-a.gif
|
||||
share/gnome/gnucash/html/C/image/ticker-b.gif
|
||||
share/gnome/gnucash/html/C/projects.html
|
||||
share/gnome/gnucash/html/C/xacc-about.html
|
||||
share/gnome/gnucash/html/C/xacc-accountedit.html
|
||||
share/gnome/gnucash/html/C/xacc-acctypes.html
|
||||
share/gnome/gnucash/html/C/xacc-accwin.html
|
||||
share/gnome/gnucash/html/C/xacc-adjbwin.html
|
||||
share/gnome/gnucash/html/C/xacc-apar.html
|
||||
share/gnome/gnucash/html/C/xacc-apprdepr.html
|
||||
share/gnome/gnucash/html/C/xacc-bal_tracker.html
|
||||
share/gnome/gnucash/html/C/xacc-balsheet.html
|
||||
share/gnome/gnucash/html/C/xacc-currency.html
|
||||
share/gnome/gnucash/html/C/xacc-date.html
|
||||
share/gnome/gnucash/html/C/xacc-double.html
|
||||
share/gnome/gnucash/html/C/xacc-euro.html
|
||||
share/gnome/gnucash/html/C/xacc-expense.html
|
||||
share/gnome/gnucash/html/C/xacc-find-transactions.html
|
||||
share/gnome/gnucash/html/C/xacc-globalprefs.html
|
||||
share/gnome/gnucash/html/C/xacc-globalprops.html
|
||||
share/gnome/gnucash/html/C/xacc-gpl.html
|
||||
share/gnome/gnucash/html/C/xacc-groups.html
|
||||
share/gnome/gnucash/html/C/xacc-main.html
|
||||
share/gnome/gnucash/html/C/xacc-mainwin.html
|
||||
share/gnome/gnucash/html/C/xacc-pnl.html
|
||||
share/gnome/gnucash/html/C/xacc-portfolio_report.html
|
||||
share/gnome/gnucash/html/C/xacc-print.html
|
||||
share/gnome/gnucash/html/C/xacc-qif-import.html
|
||||
share/gnome/gnucash/html/C/xacc-quicken.html
|
||||
share/gnome/gnucash/html/C/xacc-recnwin.html
|
||||
share/gnome/gnucash/html/C/xacc-regwin.html
|
||||
share/gnome/gnucash/html/C/xacc-regwin_kbd.html
|
||||
share/gnome/gnucash/html/C/xacc-reports.html
|
||||
share/gnome/gnucash/html/C/xacc-ticker.html
|
||||
share/gnome/gnucash/html/C/xacc-trans_report.html
|
||||
share/gnome/gnucash/html/C/xacc-y2k.html
|
||||
share/gnome/gnucash/html/fr/bofa-mym.html
|
||||
share/gnome/gnucash/html/fr/image/appr-asset1.gif
|
||||
share/gnome/gnucash/html/fr/image/appr-asset2.gif
|
||||
share/gnome/gnucash/html/fr/image/appr-income.gif
|
||||
share/gnome/gnucash/html/fr/image/appr-main1.gif
|
||||
share/gnome/gnucash/html/fr/image/appr-main2.gif
|
||||
share/gnome/gnucash/html/fr/image/contract.gif
|
||||
share/gnome/gnucash/html/fr/image/depr-asset.gif
|
||||
share/gnome/gnucash/html/fr/image/depr-main.gif
|
||||
share/gnome/gnucash/html/fr/image/expand.gif
|
||||
share/gnome/gnucash/html/fr/image/foliowin-single.gif
|
||||
share/gnome/gnucash/html/fr/image/foliowin.gif
|
||||
share/gnome/gnucash/html/fr/image/newaccwin-code.gif
|
||||
share/gnome/gnucash/html/fr/image/newaccwin-trade.gif
|
||||
share/gnome/gnucash/html/fr/image/newaccwin.gif
|
||||
share/gnome/gnucash/html/fr/image/recnwin.gif
|
||||
share/gnome/gnucash/html/fr/image/regwin-double.gif
|
||||
share/gnome/gnucash/html/fr/image/regwin-multi.gif
|
||||
share/gnome/gnucash/html/fr/image/regwin-single.gif
|
||||
share/gnome/gnucash/html/fr/image/regwin-single2.gif
|
||||
share/gnome/gnucash/html/fr/image/regwin.gif
|
||||
share/gnome/gnucash/html/fr/image/report-baln.gif
|
||||
share/gnome/gnucash/html/fr/image/report-folio.gif
|
||||
share/gnome/gnucash/html/fr/image/report-option.gif
|
||||
share/gnome/gnucash/html/fr/image/reportwin.gif
|
||||
share/gnome/gnucash/html/fr/image/ticker-a.gif
|
||||
share/gnome/gnucash/html/fr/image/ticker-b.gif
|
||||
share/gnome/gnucash/html/fr/projects.html
|
||||
share/gnome/gnucash/html/fr/xacc-about.html
|
||||
share/gnome/gnucash/html/fr/xacc-accountedit.html
|
||||
share/gnome/gnucash/html/fr/xacc-acctypes.html
|
||||
share/gnome/gnucash/html/fr/xacc-accwin.html
|
||||
share/gnome/gnucash/html/fr/xacc-adjbwin.html
|
||||
share/gnome/gnucash/html/fr/xacc-apar.html
|
||||
share/gnome/gnucash/html/fr/xacc-apprdepr.html
|
||||
share/gnome/gnucash/html/fr/xacc-bal_tracker.html
|
||||
share/gnome/gnucash/html/fr/xacc-balsheet.html
|
||||
share/gnome/gnucash/html/fr/xacc-currency.html
|
||||
share/gnome/gnucash/html/fr/xacc-date.html
|
||||
share/gnome/gnucash/html/fr/xacc-double.html
|
||||
share/gnome/gnucash/html/fr/xacc-expense.html
|
||||
share/gnome/gnucash/html/fr/xacc-globalprefs.html
|
||||
share/gnome/gnucash/html/fr/xacc-gpl-fr.html
|
||||
share/gnome/gnucash/html/fr/xacc-gpl.html
|
||||
share/gnome/gnucash/html/fr/xacc-groups.html
|
||||
share/gnome/gnucash/html/fr/xacc-main.html
|
||||
share/gnome/gnucash/html/fr/xacc-mainwin.html
|
||||
share/gnome/gnucash/html/fr/xacc-pnl.html
|
||||
share/gnome/gnucash/html/fr/xacc-print.html
|
||||
share/gnome/gnucash/html/fr/xacc-quicken.html
|
||||
share/gnome/gnucash/html/fr/xacc-recnwin.html
|
||||
share/gnome/gnucash/html/fr/xacc-regwin.html
|
||||
share/gnome/gnucash/html/fr/xacc-reports.html
|
||||
share/gnome/gnucash/html/fr/xacc-ticker.html
|
||||
share/gnome/gnucash/html/fr/xacc-trans_report.html
|
||||
share/gnome/gnucash/html/fr/xacc-y2k.html
|
||||
share/gnome/gnucash/html/gnucash.css
|
||||
share/gnome/gnucash/html/index.html
|
||||
share/gnome/gnucash/perl/Quote.pm
|
||||
share/gnome/gnucash/perl/gnucash.pm
|
||||
share/gnome/gnucash/scm/bootstrap.scm
|
||||
share/gnome/gnucash/scm/bs-interp.scm
|
||||
share/gnome/gnucash/scm/c-interface.scm
|
||||
share/gnome/gnucash/scm/command-line.scm
|
||||
share/gnome/gnucash/scm/config-var.scm
|
||||
share/gnome/gnucash/scm/currencies.scm
|
||||
share/gnome/gnucash/scm/date-utilities.scm
|
||||
share/gnome/gnucash/scm/depend.scm
|
||||
share/gnome/gnucash/scm/doc.scm
|
||||
share/gnome/gnucash/scm/engine-interface.scm
|
||||
share/gnome/gnucash/scm/engine-utilities.scm
|
||||
share/gnome/gnucash/scm/extensions.scm
|
||||
share/gnome/gnucash/scm/gnumeric/gnumeric-utilities.scm
|
||||
share/gnome/gnucash/scm/gnumeric/table-utils.scm
|
||||
share/gnome/gnucash/scm/graph.scm
|
||||
share/gnome/gnucash/scm/hooks.scm
|
||||
share/gnome/gnucash/scm/html-generator.scm
|
||||
share/gnome/gnucash/scm/main.scm
|
||||
share/gnome/gnucash/scm/options.scm
|
||||
share/gnome/gnucash/scm/path.scm
|
||||
share/gnome/gnucash/scm/prefs.scm
|
||||
share/gnome/gnucash/scm/printing/number-to-words.scm
|
||||
share/gnome/gnucash/scm/printing/print-check.scm
|
||||
share/gnome/gnucash/scm/qif-import/qif-dialog-utils.scm
|
||||
share/gnome/gnucash/scm/qif-import/qif-file.scm
|
||||
share/gnome/gnucash/scm/qif-import/qif-guess-map.scm
|
||||
share/gnome/gnucash/scm/qif-import/qif-import.scm
|
||||
share/gnome/gnucash/scm/qif-import/qif-objects.scm
|
||||
share/gnome/gnucash/scm/qif-import/qif-parse.scm
|
||||
share/gnome/gnucash/scm/qif-import/qif-to-gnc.scm
|
||||
share/gnome/gnucash/scm/qif-import/qif-utils.scm
|
||||
share/gnome/gnucash/scm/qif-import/simple-obj.scm
|
||||
share/gnome/gnucash/scm/report-utilities.scm
|
||||
share/gnome/gnucash/scm/report.scm
|
||||
share/gnome/gnucash/scm/report/average-balance.scm
|
||||
share/gnome/gnucash/scm/report/balance-and-pnl.scm
|
||||
share/gnome/gnucash/scm/report/budget-report.scm
|
||||
share/gnome/gnucash/scm/report/folio.scm
|
||||
share/gnome/gnucash/scm/report/hello-world.scm
|
||||
share/gnome/gnucash/scm/report/report-list.scm
|
||||
share/gnome/gnucash/scm/report/transaction-report.scm
|
||||
share/gnome/gnucash/scm/slib-backup.scm
|
||||
share/gnome/gnucash/scm/srfi/srfi-1.r5rs.scm
|
||||
share/gnome/gnucash/scm/srfi/srfi-1.unclear.scm
|
||||
share/gnome/gnucash/scm/srfi/srfi-19.scm
|
||||
share/gnome/gnucash/scm/srfi/srfi-8.guile.scm
|
||||
share/gnome/gnucash/scm/srfi/srfi-8.scm
|
||||
share/gnome/gnucash/scm/startup.scm
|
||||
share/gnome/gnucash/scm/structure.scm
|
||||
share/gnome/gnucash/scm/substring-search.scm
|
||||
share/gnome/gnucash/scm/testbed.scm
|
||||
share/gnome/gnucash/scm/text-export.scm
|
||||
share/gnome/gnucash/scm/utilities.scm
|
||||
share/gnome/gnucash/scm/xml-generator.scm
|
||||
share/locale/de/LC_MESSAGES/gnucash.mo
|
||||
share/locale/en_GB/LC_MESSAGES/gnucash.mo
|
||||
share/locale/fr/LC_MESSAGES/gnucash.mo
|
||||
|
@ -239,18 +239,18 @@ share/locale/sv/LC_MESSAGES/gnucash.mo
|
|||
@dirrm etc/gnucash
|
||||
@dirrm lib/gnucash/perl
|
||||
@dirrm lib/gnucash
|
||||
@dirrm share/gnucash/doc/examples
|
||||
@dirrm share/gnucash/doc
|
||||
@dirrm share/gnucash/html/C/image
|
||||
@dirrm share/gnucash/html/C
|
||||
@dirrm share/gnucash/html/fr/image
|
||||
@dirrm share/gnucash/html/fr
|
||||
@dirrm share/gnucash/html
|
||||
@dirrm share/gnucash/perl
|
||||
@dirrm share/gnucash/scm/gnumeric
|
||||
@dirrm share/gnucash/scm/printing
|
||||
@dirrm share/gnucash/scm/qif-import
|
||||
@dirrm share/gnucash/scm/srfi
|
||||
@dirrm share/gnucash/scm/report
|
||||
@dirrm share/gnucash/scm
|
||||
@dirrm share/gnucash
|
||||
@dirrm share/gnome/gnucash/doc/examples
|
||||
@dirrm share/gnome/gnucash/doc
|
||||
@dirrm share/gnome/gnucash/html/C/image
|
||||
@dirrm share/gnome/gnucash/html/C
|
||||
@dirrm share/gnome/gnucash/html/fr/image
|
||||
@dirrm share/gnome/gnucash/html/fr
|
||||
@dirrm share/gnome/gnucash/html
|
||||
@dirrm share/gnome/gnucash/perl
|
||||
@dirrm share/gnome/gnucash/scm/gnumeric
|
||||
@dirrm share/gnome/gnucash/scm/printing
|
||||
@dirrm share/gnome/gnucash/scm/qif-import
|
||||
@dirrm share/gnome/gnucash/scm/srfi
|
||||
@dirrm share/gnome/gnucash/scm/report
|
||||
@dirrm share/gnome/gnucash/scm
|
||||
@dirrm share/gnome/gnucash
|
||||
|
|
|
@ -19,30 +19,34 @@ MAINTAINER= ade@FreeBSD.org
|
|||
BUILD_DEPENDS= swig:${PORTSDIR}/devel/SWIG \
|
||||
g-wrap:${PORTSDIR}/devel/g-wrap \
|
||||
eperl:${PORTSDIR}/lang/eperl
|
||||
LIB_DEPENDS= panel_applet.4:${PORTSDIR}/x11/gnomecore \
|
||||
guile.9:${PORTSDIR}/lang/guile
|
||||
LIB_DEPENDS= guile.9:${PORTSDIR}/lang/guile
|
||||
RUN_DEPENDS= slib48:${PORTSDIR}/lang/slib \
|
||||
gnuplot:${PORTSDIR}/math/gnuplot \
|
||||
${site_perl}/HTML/Base.pm:${PORTSDIR}/www/p5-HTML \
|
||||
${site_perl}/LWP.pm:${PORTSDIR}/www/p5-libwww
|
||||
|
||||
site_perl= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_XPM= yes
|
||||
USE_X_PREFIX= yes
|
||||
USE_PERL5= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||
CONFIGURE_ENV= MAKE=gmake \
|
||||
CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
GLIB_CONFIG="${GLIB_CONFIG}"
|
||||
CONFIGURE_ARGS= --with-glib-config=${GLIB_CONFIG}
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
|
||||
|
||||
MAN1= gnc-prices.1 gnucash.1
|
||||
|
||||
pre-patch:
|
||||
@${PERL} -pi -e 's^-l(pthread|c_r)^-pthread^g ; \
|
||||
s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure
|
||||
@find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \
|
||||
's^\$\{datadir\}/gnome/^\$\(datadir\)/^g ; \
|
||||
s^\$\{datadir\}/aclocal^\$\(prefix\)/share/aclocal^g ; \
|
||||
s^\$\{datadir\}/locale^\$\(prefix\)/share/locale^g'
|
||||
|
||||
post-install:
|
||||
@strip ${PREFIX}/bin/gnucash
|
||||
|
|
|
@ -11,223 +11,223 @@ lib/gnucash/perl/libgncswig.so.1
|
|||
@exec /sbin/ldconfig -m %D/lib/gnucash
|
||||
@unexec /sbin/ldconfig -R
|
||||
share/gnome/apps/Applications/gnucash.desktop
|
||||
share/gnucash/doc/AUTHORS
|
||||
share/gnucash/doc/COPYING
|
||||
share/gnucash/doc/ChangeLog
|
||||
share/gnucash/doc/INSTALL
|
||||
share/gnucash/doc/NEWS
|
||||
share/gnucash/doc/README
|
||||
share/gnucash/doc/README.francais
|
||||
share/gnucash/doc/README.german
|
||||
share/gnucash/doc/examples/Money95bank_fr.qif
|
||||
share/gnucash/doc/examples/Money95invst_fr.qif
|
||||
share/gnucash/doc/examples/Money95mfunds_fr.qif
|
||||
share/gnucash/doc/examples/Money95stocks_fr.qif
|
||||
share/gnucash/doc/examples/README
|
||||
share/gnucash/doc/examples/abc-all.qif
|
||||
share/gnucash/doc/examples/abc.qif
|
||||
share/gnucash/doc/examples/bogus.qif
|
||||
share/gnucash/doc/examples/cbb-export.qif
|
||||
share/gnucash/doc/examples/currency.xac
|
||||
share/gnucash/doc/examples/every.qif
|
||||
share/gnucash/doc/examples/ms-money.qif
|
||||
share/gnucash/doc/examples/quicktest.qif
|
||||
share/gnucash/doc/examples/splitdemo.xac
|
||||
share/gnucash/doc/examples/swipe.qif
|
||||
share/gnucash/doc/examples/test.xac
|
||||
share/gnucash/doc/examples/test2.xac
|
||||
share/gnucash/doc/examples/test3.xac
|
||||
share/gnucash/doc/examples/test4.xac
|
||||
share/gnucash/doc/examples/trading.xac
|
||||
share/gnucash/doc/examples/trading2.xac
|
||||
share/gnucash/doc/examples/web.qif
|
||||
share/gnucash/doc/examples/xfer.xac
|
||||
share/gnucash/doc/gnc.html
|
||||
share/gnucash/doc/guile-hackers.txt
|
||||
share/gnucash/html/C/RAW-NOTES
|
||||
share/gnucash/html/C/bofa-mym.html
|
||||
share/gnucash/html/C/image/appr-asset1.gif
|
||||
share/gnucash/html/C/image/appr-asset2.gif
|
||||
share/gnucash/html/C/image/appr-income.gif
|
||||
share/gnucash/html/C/image/appr-main1.gif
|
||||
share/gnucash/html/C/image/appr-main2.gif
|
||||
share/gnucash/html/C/image/bal-graph.gif
|
||||
share/gnucash/html/C/image/contract.gif
|
||||
share/gnucash/html/C/image/depr-asset.gif
|
||||
share/gnucash/html/C/image/depr-main.gif
|
||||
share/gnucash/html/C/image/expand.gif
|
||||
share/gnucash/html/C/image/foliowin-single.gif
|
||||
share/gnucash/html/C/image/foliowin.gif
|
||||
share/gnucash/html/C/image/logo-NetBSD-banner.gif
|
||||
share/gnucash/html/C/image/logo-bullogogross.gif
|
||||
share/gnucash/html/C/image/logo-debian.jpg
|
||||
share/gnucash/html/C/image/logo-ibm.gif
|
||||
share/gnucash/html/C/image/logo-linux.gif
|
||||
share/gnucash/html/C/image/logo-sgi.gif
|
||||
share/gnucash/html/C/image/logo-skunkware.gif
|
||||
share/gnucash/html/C/image/newaccwin-code.gif
|
||||
share/gnucash/html/C/image/newaccwin-trade.gif
|
||||
share/gnucash/html/C/image/recnwin.gif
|
||||
share/gnucash/html/C/image/regwin-double.gif
|
||||
share/gnucash/html/C/image/regwin-multi.gif
|
||||
share/gnucash/html/C/image/regwin-single.gif
|
||||
share/gnucash/html/C/image/regwin-single2.gif
|
||||
share/gnucash/html/C/image/report-av-baln.gif
|
||||
share/gnucash/html/C/image/report-baln.gif
|
||||
share/gnucash/html/C/image/report-folio.gif
|
||||
share/gnucash/html/C/image/report-option.gif
|
||||
share/gnucash/html/C/image/report-pnl.gif
|
||||
share/gnucash/html/C/image/reportwin.gif
|
||||
share/gnucash/html/C/image/ticker-a.gif
|
||||
share/gnucash/html/C/image/ticker-b.gif
|
||||
share/gnucash/html/C/projects.html
|
||||
share/gnucash/html/C/xacc-about.html
|
||||
share/gnucash/html/C/xacc-accountedit.html
|
||||
share/gnucash/html/C/xacc-acctypes.html
|
||||
share/gnucash/html/C/xacc-accwin.html
|
||||
share/gnucash/html/C/xacc-adjbwin.html
|
||||
share/gnucash/html/C/xacc-apar.html
|
||||
share/gnucash/html/C/xacc-apprdepr.html
|
||||
share/gnucash/html/C/xacc-bal_tracker.html
|
||||
share/gnucash/html/C/xacc-balsheet.html
|
||||
share/gnucash/html/C/xacc-currency.html
|
||||
share/gnucash/html/C/xacc-date.html
|
||||
share/gnucash/html/C/xacc-double.html
|
||||
share/gnucash/html/C/xacc-euro.html
|
||||
share/gnucash/html/C/xacc-expense.html
|
||||
share/gnucash/html/C/xacc-find-transactions.html
|
||||
share/gnucash/html/C/xacc-globalprefs.html
|
||||
share/gnucash/html/C/xacc-globalprops.html
|
||||
share/gnucash/html/C/xacc-gpl.html
|
||||
share/gnucash/html/C/xacc-groups.html
|
||||
share/gnucash/html/C/xacc-main.html
|
||||
share/gnucash/html/C/xacc-mainwin.html
|
||||
share/gnucash/html/C/xacc-pnl.html
|
||||
share/gnucash/html/C/xacc-portfolio_report.html
|
||||
share/gnucash/html/C/xacc-print.html
|
||||
share/gnucash/html/C/xacc-qif-import.html
|
||||
share/gnucash/html/C/xacc-quicken.html
|
||||
share/gnucash/html/C/xacc-recnwin.html
|
||||
share/gnucash/html/C/xacc-regwin.html
|
||||
share/gnucash/html/C/xacc-regwin_kbd.html
|
||||
share/gnucash/html/C/xacc-reports.html
|
||||
share/gnucash/html/C/xacc-ticker.html
|
||||
share/gnucash/html/C/xacc-trans_report.html
|
||||
share/gnucash/html/C/xacc-y2k.html
|
||||
share/gnucash/html/fr/bofa-mym.html
|
||||
share/gnucash/html/fr/image/appr-asset1.gif
|
||||
share/gnucash/html/fr/image/appr-asset2.gif
|
||||
share/gnucash/html/fr/image/appr-income.gif
|
||||
share/gnucash/html/fr/image/appr-main1.gif
|
||||
share/gnucash/html/fr/image/appr-main2.gif
|
||||
share/gnucash/html/fr/image/contract.gif
|
||||
share/gnucash/html/fr/image/depr-asset.gif
|
||||
share/gnucash/html/fr/image/depr-main.gif
|
||||
share/gnucash/html/fr/image/expand.gif
|
||||
share/gnucash/html/fr/image/foliowin-single.gif
|
||||
share/gnucash/html/fr/image/foliowin.gif
|
||||
share/gnucash/html/fr/image/newaccwin-code.gif
|
||||
share/gnucash/html/fr/image/newaccwin-trade.gif
|
||||
share/gnucash/html/fr/image/newaccwin.gif
|
||||
share/gnucash/html/fr/image/recnwin.gif
|
||||
share/gnucash/html/fr/image/regwin-double.gif
|
||||
share/gnucash/html/fr/image/regwin-multi.gif
|
||||
share/gnucash/html/fr/image/regwin-single.gif
|
||||
share/gnucash/html/fr/image/regwin-single2.gif
|
||||
share/gnucash/html/fr/image/regwin.gif
|
||||
share/gnucash/html/fr/image/report-baln.gif
|
||||
share/gnucash/html/fr/image/report-folio.gif
|
||||
share/gnucash/html/fr/image/report-option.gif
|
||||
share/gnucash/html/fr/image/reportwin.gif
|
||||
share/gnucash/html/fr/image/ticker-a.gif
|
||||
share/gnucash/html/fr/image/ticker-b.gif
|
||||
share/gnucash/html/fr/projects.html
|
||||
share/gnucash/html/fr/xacc-about.html
|
||||
share/gnucash/html/fr/xacc-accountedit.html
|
||||
share/gnucash/html/fr/xacc-acctypes.html
|
||||
share/gnucash/html/fr/xacc-accwin.html
|
||||
share/gnucash/html/fr/xacc-adjbwin.html
|
||||
share/gnucash/html/fr/xacc-apar.html
|
||||
share/gnucash/html/fr/xacc-apprdepr.html
|
||||
share/gnucash/html/fr/xacc-bal_tracker.html
|
||||
share/gnucash/html/fr/xacc-balsheet.html
|
||||
share/gnucash/html/fr/xacc-currency.html
|
||||
share/gnucash/html/fr/xacc-date.html
|
||||
share/gnucash/html/fr/xacc-double.html
|
||||
share/gnucash/html/fr/xacc-expense.html
|
||||
share/gnucash/html/fr/xacc-globalprefs.html
|
||||
share/gnucash/html/fr/xacc-gpl-fr.html
|
||||
share/gnucash/html/fr/xacc-gpl.html
|
||||
share/gnucash/html/fr/xacc-groups.html
|
||||
share/gnucash/html/fr/xacc-main.html
|
||||
share/gnucash/html/fr/xacc-mainwin.html
|
||||
share/gnucash/html/fr/xacc-pnl.html
|
||||
share/gnucash/html/fr/xacc-print.html
|
||||
share/gnucash/html/fr/xacc-quicken.html
|
||||
share/gnucash/html/fr/xacc-recnwin.html
|
||||
share/gnucash/html/fr/xacc-regwin.html
|
||||
share/gnucash/html/fr/xacc-reports.html
|
||||
share/gnucash/html/fr/xacc-ticker.html
|
||||
share/gnucash/html/fr/xacc-trans_report.html
|
||||
share/gnucash/html/fr/xacc-y2k.html
|
||||
share/gnucash/html/gnucash.css
|
||||
share/gnucash/html/index.html
|
||||
share/gnucash/perl/Quote.pm
|
||||
share/gnucash/perl/gnucash.pm
|
||||
share/gnucash/scm/bootstrap.scm
|
||||
share/gnucash/scm/bs-interp.scm
|
||||
share/gnucash/scm/c-interface.scm
|
||||
share/gnucash/scm/command-line.scm
|
||||
share/gnucash/scm/config-var.scm
|
||||
share/gnucash/scm/currencies.scm
|
||||
share/gnucash/scm/date-utilities.scm
|
||||
share/gnucash/scm/depend.scm
|
||||
share/gnucash/scm/doc.scm
|
||||
share/gnucash/scm/engine-interface.scm
|
||||
share/gnucash/scm/engine-utilities.scm
|
||||
share/gnucash/scm/extensions.scm
|
||||
share/gnucash/scm/gnumeric/gnumeric-utilities.scm
|
||||
share/gnucash/scm/gnumeric/table-utils.scm
|
||||
share/gnucash/scm/graph.scm
|
||||
share/gnucash/scm/hooks.scm
|
||||
share/gnucash/scm/html-generator.scm
|
||||
share/gnucash/scm/main.scm
|
||||
share/gnucash/scm/options.scm
|
||||
share/gnucash/scm/path.scm
|
||||
share/gnucash/scm/prefs.scm
|
||||
share/gnucash/scm/printing/number-to-words.scm
|
||||
share/gnucash/scm/printing/print-check.scm
|
||||
share/gnucash/scm/qif-import/qif-dialog-utils.scm
|
||||
share/gnucash/scm/qif-import/qif-file.scm
|
||||
share/gnucash/scm/qif-import/qif-guess-map.scm
|
||||
share/gnucash/scm/qif-import/qif-import.scm
|
||||
share/gnucash/scm/qif-import/qif-objects.scm
|
||||
share/gnucash/scm/qif-import/qif-parse.scm
|
||||
share/gnucash/scm/qif-import/qif-to-gnc.scm
|
||||
share/gnucash/scm/qif-import/qif-utils.scm
|
||||
share/gnucash/scm/qif-import/simple-obj.scm
|
||||
share/gnucash/scm/report-utilities.scm
|
||||
share/gnucash/scm/report.scm
|
||||
share/gnucash/scm/report/average-balance.scm
|
||||
share/gnucash/scm/report/balance-and-pnl.scm
|
||||
share/gnucash/scm/report/budget-report.scm
|
||||
share/gnucash/scm/report/folio.scm
|
||||
share/gnucash/scm/report/hello-world.scm
|
||||
share/gnucash/scm/report/report-list.scm
|
||||
share/gnucash/scm/report/transaction-report.scm
|
||||
share/gnucash/scm/slib-backup.scm
|
||||
share/gnucash/scm/srfi/srfi-1.r5rs.scm
|
||||
share/gnucash/scm/srfi/srfi-1.unclear.scm
|
||||
share/gnucash/scm/srfi/srfi-19.scm
|
||||
share/gnucash/scm/srfi/srfi-8.guile.scm
|
||||
share/gnucash/scm/srfi/srfi-8.scm
|
||||
share/gnucash/scm/startup.scm
|
||||
share/gnucash/scm/structure.scm
|
||||
share/gnucash/scm/substring-search.scm
|
||||
share/gnucash/scm/testbed.scm
|
||||
share/gnucash/scm/text-export.scm
|
||||
share/gnucash/scm/utilities.scm
|
||||
share/gnucash/scm/xml-generator.scm
|
||||
share/gnome/gnucash/doc/AUTHORS
|
||||
share/gnome/gnucash/doc/COPYING
|
||||
share/gnome/gnucash/doc/ChangeLog
|
||||
share/gnome/gnucash/doc/INSTALL
|
||||
share/gnome/gnucash/doc/NEWS
|
||||
share/gnome/gnucash/doc/README
|
||||
share/gnome/gnucash/doc/README.francais
|
||||
share/gnome/gnucash/doc/README.german
|
||||
share/gnome/gnucash/doc/examples/Money95bank_fr.qif
|
||||
share/gnome/gnucash/doc/examples/Money95invst_fr.qif
|
||||
share/gnome/gnucash/doc/examples/Money95mfunds_fr.qif
|
||||
share/gnome/gnucash/doc/examples/Money95stocks_fr.qif
|
||||
share/gnome/gnucash/doc/examples/README
|
||||
share/gnome/gnucash/doc/examples/abc-all.qif
|
||||
share/gnome/gnucash/doc/examples/abc.qif
|
||||
share/gnome/gnucash/doc/examples/bogus.qif
|
||||
share/gnome/gnucash/doc/examples/cbb-export.qif
|
||||
share/gnome/gnucash/doc/examples/currency.xac
|
||||
share/gnome/gnucash/doc/examples/every.qif
|
||||
share/gnome/gnucash/doc/examples/ms-money.qif
|
||||
share/gnome/gnucash/doc/examples/quicktest.qif
|
||||
share/gnome/gnucash/doc/examples/splitdemo.xac
|
||||
share/gnome/gnucash/doc/examples/swipe.qif
|
||||
share/gnome/gnucash/doc/examples/test.xac
|
||||
share/gnome/gnucash/doc/examples/test2.xac
|
||||
share/gnome/gnucash/doc/examples/test3.xac
|
||||
share/gnome/gnucash/doc/examples/test4.xac
|
||||
share/gnome/gnucash/doc/examples/trading.xac
|
||||
share/gnome/gnucash/doc/examples/trading2.xac
|
||||
share/gnome/gnucash/doc/examples/web.qif
|
||||
share/gnome/gnucash/doc/examples/xfer.xac
|
||||
share/gnome/gnucash/doc/gnc.html
|
||||
share/gnome/gnucash/doc/guile-hackers.txt
|
||||
share/gnome/gnucash/html/C/RAW-NOTES
|
||||
share/gnome/gnucash/html/C/bofa-mym.html
|
||||
share/gnome/gnucash/html/C/image/appr-asset1.gif
|
||||
share/gnome/gnucash/html/C/image/appr-asset2.gif
|
||||
share/gnome/gnucash/html/C/image/appr-income.gif
|
||||
share/gnome/gnucash/html/C/image/appr-main1.gif
|
||||
share/gnome/gnucash/html/C/image/appr-main2.gif
|
||||
share/gnome/gnucash/html/C/image/bal-graph.gif
|
||||
share/gnome/gnucash/html/C/image/contract.gif
|
||||
share/gnome/gnucash/html/C/image/depr-asset.gif
|
||||
share/gnome/gnucash/html/C/image/depr-main.gif
|
||||
share/gnome/gnucash/html/C/image/expand.gif
|
||||
share/gnome/gnucash/html/C/image/foliowin-single.gif
|
||||
share/gnome/gnucash/html/C/image/foliowin.gif
|
||||
share/gnome/gnucash/html/C/image/logo-NetBSD-banner.gif
|
||||
share/gnome/gnucash/html/C/image/logo-bullogogross.gif
|
||||
share/gnome/gnucash/html/C/image/logo-debian.jpg
|
||||
share/gnome/gnucash/html/C/image/logo-ibm.gif
|
||||
share/gnome/gnucash/html/C/image/logo-linux.gif
|
||||
share/gnome/gnucash/html/C/image/logo-sgi.gif
|
||||
share/gnome/gnucash/html/C/image/logo-skunkware.gif
|
||||
share/gnome/gnucash/html/C/image/newaccwin-code.gif
|
||||
share/gnome/gnucash/html/C/image/newaccwin-trade.gif
|
||||
share/gnome/gnucash/html/C/image/recnwin.gif
|
||||
share/gnome/gnucash/html/C/image/regwin-double.gif
|
||||
share/gnome/gnucash/html/C/image/regwin-multi.gif
|
||||
share/gnome/gnucash/html/C/image/regwin-single.gif
|
||||
share/gnome/gnucash/html/C/image/regwin-single2.gif
|
||||
share/gnome/gnucash/html/C/image/report-av-baln.gif
|
||||
share/gnome/gnucash/html/C/image/report-baln.gif
|
||||
share/gnome/gnucash/html/C/image/report-folio.gif
|
||||
share/gnome/gnucash/html/C/image/report-option.gif
|
||||
share/gnome/gnucash/html/C/image/report-pnl.gif
|
||||
share/gnome/gnucash/html/C/image/reportwin.gif
|
||||
share/gnome/gnucash/html/C/image/ticker-a.gif
|
||||
share/gnome/gnucash/html/C/image/ticker-b.gif
|
||||
share/gnome/gnucash/html/C/projects.html
|
||||
share/gnome/gnucash/html/C/xacc-about.html
|
||||
share/gnome/gnucash/html/C/xacc-accountedit.html
|
||||
share/gnome/gnucash/html/C/xacc-acctypes.html
|
||||
share/gnome/gnucash/html/C/xacc-accwin.html
|
||||
share/gnome/gnucash/html/C/xacc-adjbwin.html
|
||||
share/gnome/gnucash/html/C/xacc-apar.html
|
||||
share/gnome/gnucash/html/C/xacc-apprdepr.html
|
||||
share/gnome/gnucash/html/C/xacc-bal_tracker.html
|
||||
share/gnome/gnucash/html/C/xacc-balsheet.html
|
||||
share/gnome/gnucash/html/C/xacc-currency.html
|
||||
share/gnome/gnucash/html/C/xacc-date.html
|
||||
share/gnome/gnucash/html/C/xacc-double.html
|
||||
share/gnome/gnucash/html/C/xacc-euro.html
|
||||
share/gnome/gnucash/html/C/xacc-expense.html
|
||||
share/gnome/gnucash/html/C/xacc-find-transactions.html
|
||||
share/gnome/gnucash/html/C/xacc-globalprefs.html
|
||||
share/gnome/gnucash/html/C/xacc-globalprops.html
|
||||
share/gnome/gnucash/html/C/xacc-gpl.html
|
||||
share/gnome/gnucash/html/C/xacc-groups.html
|
||||
share/gnome/gnucash/html/C/xacc-main.html
|
||||
share/gnome/gnucash/html/C/xacc-mainwin.html
|
||||
share/gnome/gnucash/html/C/xacc-pnl.html
|
||||
share/gnome/gnucash/html/C/xacc-portfolio_report.html
|
||||
share/gnome/gnucash/html/C/xacc-print.html
|
||||
share/gnome/gnucash/html/C/xacc-qif-import.html
|
||||
share/gnome/gnucash/html/C/xacc-quicken.html
|
||||
share/gnome/gnucash/html/C/xacc-recnwin.html
|
||||
share/gnome/gnucash/html/C/xacc-regwin.html
|
||||
share/gnome/gnucash/html/C/xacc-regwin_kbd.html
|
||||
share/gnome/gnucash/html/C/xacc-reports.html
|
||||
share/gnome/gnucash/html/C/xacc-ticker.html
|
||||
share/gnome/gnucash/html/C/xacc-trans_report.html
|
||||
share/gnome/gnucash/html/C/xacc-y2k.html
|
||||
share/gnome/gnucash/html/fr/bofa-mym.html
|
||||
share/gnome/gnucash/html/fr/image/appr-asset1.gif
|
||||
share/gnome/gnucash/html/fr/image/appr-asset2.gif
|
||||
share/gnome/gnucash/html/fr/image/appr-income.gif
|
||||
share/gnome/gnucash/html/fr/image/appr-main1.gif
|
||||
share/gnome/gnucash/html/fr/image/appr-main2.gif
|
||||
share/gnome/gnucash/html/fr/image/contract.gif
|
||||
share/gnome/gnucash/html/fr/image/depr-asset.gif
|
||||
share/gnome/gnucash/html/fr/image/depr-main.gif
|
||||
share/gnome/gnucash/html/fr/image/expand.gif
|
||||
share/gnome/gnucash/html/fr/image/foliowin-single.gif
|
||||
share/gnome/gnucash/html/fr/image/foliowin.gif
|
||||
share/gnome/gnucash/html/fr/image/newaccwin-code.gif
|
||||
share/gnome/gnucash/html/fr/image/newaccwin-trade.gif
|
||||
share/gnome/gnucash/html/fr/image/newaccwin.gif
|
||||
share/gnome/gnucash/html/fr/image/recnwin.gif
|
||||
share/gnome/gnucash/html/fr/image/regwin-double.gif
|
||||
share/gnome/gnucash/html/fr/image/regwin-multi.gif
|
||||
share/gnome/gnucash/html/fr/image/regwin-single.gif
|
||||
share/gnome/gnucash/html/fr/image/regwin-single2.gif
|
||||
share/gnome/gnucash/html/fr/image/regwin.gif
|
||||
share/gnome/gnucash/html/fr/image/report-baln.gif
|
||||
share/gnome/gnucash/html/fr/image/report-folio.gif
|
||||
share/gnome/gnucash/html/fr/image/report-option.gif
|
||||
share/gnome/gnucash/html/fr/image/reportwin.gif
|
||||
share/gnome/gnucash/html/fr/image/ticker-a.gif
|
||||
share/gnome/gnucash/html/fr/image/ticker-b.gif
|
||||
share/gnome/gnucash/html/fr/projects.html
|
||||
share/gnome/gnucash/html/fr/xacc-about.html
|
||||
share/gnome/gnucash/html/fr/xacc-accountedit.html
|
||||
share/gnome/gnucash/html/fr/xacc-acctypes.html
|
||||
share/gnome/gnucash/html/fr/xacc-accwin.html
|
||||
share/gnome/gnucash/html/fr/xacc-adjbwin.html
|
||||
share/gnome/gnucash/html/fr/xacc-apar.html
|
||||
share/gnome/gnucash/html/fr/xacc-apprdepr.html
|
||||
share/gnome/gnucash/html/fr/xacc-bal_tracker.html
|
||||
share/gnome/gnucash/html/fr/xacc-balsheet.html
|
||||
share/gnome/gnucash/html/fr/xacc-currency.html
|
||||
share/gnome/gnucash/html/fr/xacc-date.html
|
||||
share/gnome/gnucash/html/fr/xacc-double.html
|
||||
share/gnome/gnucash/html/fr/xacc-expense.html
|
||||
share/gnome/gnucash/html/fr/xacc-globalprefs.html
|
||||
share/gnome/gnucash/html/fr/xacc-gpl-fr.html
|
||||
share/gnome/gnucash/html/fr/xacc-gpl.html
|
||||
share/gnome/gnucash/html/fr/xacc-groups.html
|
||||
share/gnome/gnucash/html/fr/xacc-main.html
|
||||
share/gnome/gnucash/html/fr/xacc-mainwin.html
|
||||
share/gnome/gnucash/html/fr/xacc-pnl.html
|
||||
share/gnome/gnucash/html/fr/xacc-print.html
|
||||
share/gnome/gnucash/html/fr/xacc-quicken.html
|
||||
share/gnome/gnucash/html/fr/xacc-recnwin.html
|
||||
share/gnome/gnucash/html/fr/xacc-regwin.html
|
||||
share/gnome/gnucash/html/fr/xacc-reports.html
|
||||
share/gnome/gnucash/html/fr/xacc-ticker.html
|
||||
share/gnome/gnucash/html/fr/xacc-trans_report.html
|
||||
share/gnome/gnucash/html/fr/xacc-y2k.html
|
||||
share/gnome/gnucash/html/gnucash.css
|
||||
share/gnome/gnucash/html/index.html
|
||||
share/gnome/gnucash/perl/Quote.pm
|
||||
share/gnome/gnucash/perl/gnucash.pm
|
||||
share/gnome/gnucash/scm/bootstrap.scm
|
||||
share/gnome/gnucash/scm/bs-interp.scm
|
||||
share/gnome/gnucash/scm/c-interface.scm
|
||||
share/gnome/gnucash/scm/command-line.scm
|
||||
share/gnome/gnucash/scm/config-var.scm
|
||||
share/gnome/gnucash/scm/currencies.scm
|
||||
share/gnome/gnucash/scm/date-utilities.scm
|
||||
share/gnome/gnucash/scm/depend.scm
|
||||
share/gnome/gnucash/scm/doc.scm
|
||||
share/gnome/gnucash/scm/engine-interface.scm
|
||||
share/gnome/gnucash/scm/engine-utilities.scm
|
||||
share/gnome/gnucash/scm/extensions.scm
|
||||
share/gnome/gnucash/scm/gnumeric/gnumeric-utilities.scm
|
||||
share/gnome/gnucash/scm/gnumeric/table-utils.scm
|
||||
share/gnome/gnucash/scm/graph.scm
|
||||
share/gnome/gnucash/scm/hooks.scm
|
||||
share/gnome/gnucash/scm/html-generator.scm
|
||||
share/gnome/gnucash/scm/main.scm
|
||||
share/gnome/gnucash/scm/options.scm
|
||||
share/gnome/gnucash/scm/path.scm
|
||||
share/gnome/gnucash/scm/prefs.scm
|
||||
share/gnome/gnucash/scm/printing/number-to-words.scm
|
||||
share/gnome/gnucash/scm/printing/print-check.scm
|
||||
share/gnome/gnucash/scm/qif-import/qif-dialog-utils.scm
|
||||
share/gnome/gnucash/scm/qif-import/qif-file.scm
|
||||
share/gnome/gnucash/scm/qif-import/qif-guess-map.scm
|
||||
share/gnome/gnucash/scm/qif-import/qif-import.scm
|
||||
share/gnome/gnucash/scm/qif-import/qif-objects.scm
|
||||
share/gnome/gnucash/scm/qif-import/qif-parse.scm
|
||||
share/gnome/gnucash/scm/qif-import/qif-to-gnc.scm
|
||||
share/gnome/gnucash/scm/qif-import/qif-utils.scm
|
||||
share/gnome/gnucash/scm/qif-import/simple-obj.scm
|
||||
share/gnome/gnucash/scm/report-utilities.scm
|
||||
share/gnome/gnucash/scm/report.scm
|
||||
share/gnome/gnucash/scm/report/average-balance.scm
|
||||
share/gnome/gnucash/scm/report/balance-and-pnl.scm
|
||||
share/gnome/gnucash/scm/report/budget-report.scm
|
||||
share/gnome/gnucash/scm/report/folio.scm
|
||||
share/gnome/gnucash/scm/report/hello-world.scm
|
||||
share/gnome/gnucash/scm/report/report-list.scm
|
||||
share/gnome/gnucash/scm/report/transaction-report.scm
|
||||
share/gnome/gnucash/scm/slib-backup.scm
|
||||
share/gnome/gnucash/scm/srfi/srfi-1.r5rs.scm
|
||||
share/gnome/gnucash/scm/srfi/srfi-1.unclear.scm
|
||||
share/gnome/gnucash/scm/srfi/srfi-19.scm
|
||||
share/gnome/gnucash/scm/srfi/srfi-8.guile.scm
|
||||
share/gnome/gnucash/scm/srfi/srfi-8.scm
|
||||
share/gnome/gnucash/scm/startup.scm
|
||||
share/gnome/gnucash/scm/structure.scm
|
||||
share/gnome/gnucash/scm/substring-search.scm
|
||||
share/gnome/gnucash/scm/testbed.scm
|
||||
share/gnome/gnucash/scm/text-export.scm
|
||||
share/gnome/gnucash/scm/utilities.scm
|
||||
share/gnome/gnucash/scm/xml-generator.scm
|
||||
share/locale/de/LC_MESSAGES/gnucash.mo
|
||||
share/locale/en_GB/LC_MESSAGES/gnucash.mo
|
||||
share/locale/fr/LC_MESSAGES/gnucash.mo
|
||||
|
@ -239,18 +239,18 @@ share/locale/sv/LC_MESSAGES/gnucash.mo
|
|||
@dirrm etc/gnucash
|
||||
@dirrm lib/gnucash/perl
|
||||
@dirrm lib/gnucash
|
||||
@dirrm share/gnucash/doc/examples
|
||||
@dirrm share/gnucash/doc
|
||||
@dirrm share/gnucash/html/C/image
|
||||
@dirrm share/gnucash/html/C
|
||||
@dirrm share/gnucash/html/fr/image
|
||||
@dirrm share/gnucash/html/fr
|
||||
@dirrm share/gnucash/html
|
||||
@dirrm share/gnucash/perl
|
||||
@dirrm share/gnucash/scm/gnumeric
|
||||
@dirrm share/gnucash/scm/printing
|
||||
@dirrm share/gnucash/scm/qif-import
|
||||
@dirrm share/gnucash/scm/srfi
|
||||
@dirrm share/gnucash/scm/report
|
||||
@dirrm share/gnucash/scm
|
||||
@dirrm share/gnucash
|
||||
@dirrm share/gnome/gnucash/doc/examples
|
||||
@dirrm share/gnome/gnucash/doc
|
||||
@dirrm share/gnome/gnucash/html/C/image
|
||||
@dirrm share/gnome/gnucash/html/C
|
||||
@dirrm share/gnome/gnucash/html/fr/image
|
||||
@dirrm share/gnome/gnucash/html/fr
|
||||
@dirrm share/gnome/gnucash/html
|
||||
@dirrm share/gnome/gnucash/perl
|
||||
@dirrm share/gnome/gnucash/scm/gnumeric
|
||||
@dirrm share/gnome/gnucash/scm/printing
|
||||
@dirrm share/gnome/gnucash/scm/qif-import
|
||||
@dirrm share/gnome/gnucash/scm/srfi
|
||||
@dirrm share/gnome/gnucash/scm/report
|
||||
@dirrm share/gnome/gnucash/scm
|
||||
@dirrm share/gnome/gnucash
|
||||
|
|
|
@ -13,22 +13,15 @@ MASTER_SITE_SUBDIR= ${PORTNAME}
|
|||
|
||||
MAINTAINER= nectar@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= capplet.4:${PORTSDIR}/sysutils/gnomecontrolcenter \
|
||||
panel_applet.4:${PORTSDIR}/x11/gnomecore
|
||||
BUILD_DEPENDS= wget:${PORTSDIR}/ftp/wget
|
||||
RUN_DEPENDS= wget:${PORTSDIR}/ftp/wget \
|
||||
gnomecc:${PORTSDIR}/sysutils/gnomecontrolcenter
|
||||
RUN_DEPENDS= wget:${PORTSDIR}/ftp/wget
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" \
|
||||
CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
CONFIGURE_ARGS= --datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
pre-patch:
|
||||
@${PERL} -pi -e 's|-lpthread|-pthread|g ; \
|
||||
|
|
|
@ -13,21 +13,16 @@ DISTNAME= jm-${PORTVERSION}
|
|||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= panel_applet.4:${PORTSDIR}/x11/gnomecore \
|
||||
gnet.0:${PORTSDIR}/net/gnet \
|
||||
LIB_DEPENDS= gnet.0:${PORTSDIR}/net/gnet \
|
||||
popt.0:${PORTSDIR}/devel/popt \
|
||||
glade.4:${PORTSDIR}/devel/libglade
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
USE_GMAKE= yes
|
||||
USE_X_PREFIX= yes
|
||||
USE_GNOME= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome \
|
||||
--enable-gnome
|
||||
CONFIGURE_ARGS= --enable-gnome
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
MAN1= jm.1 jmlite.1 jmsearchserver.1 mtprendezvous.1
|
||||
|
|
|
@ -13,17 +13,10 @@ DISTNAME= atomix-0.2.0-1
|
|||
|
||||
MAINTAINER= nakai@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \
|
||||
xml.5:${PORTSDIR}/textproc/libxml
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GNOME= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -13,26 +13,15 @@ MASTER_SITE_SUBDIR= ${PORTNAME}
|
|||
|
||||
MAINTAINER= sobomax@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \
|
||||
gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf
|
||||
RUN_DEPENDS= panel:${PORTSDIR}/x11/gnomecore
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
|
||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
|
||||
CFLAGS+= -fpermissive
|
||||
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ENV= GLIB_CONFIG="${GLIB_CONFIG}" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
|
||||
pre-patch:
|
||||
@${PERL} -pi -e 's|-lpthread|-pthread|g ; \
|
||||
s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure
|
||||
|
|
|
@ -15,29 +15,23 @@ EXTRACT_SUFX= .tgz
|
|||
MAINTAINER= sobomax@FreeBSD.org
|
||||
|
||||
BUILD_DEPENDS= ${LOCALBASE}/share/automake/install-sh:${PORTSDIR}/devel/automake
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs
|
||||
RUN_DEPENDS= panel:${PORTSDIR}/x11/gnomecore \
|
||||
${X11BASE}/share/gnome/sounds/login.wav:${PORTSDIR}/audio/gnomeaudio
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
CONFIGURE_ENV= GLIB_CONFIG="${GLIB_CONFIG}" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
post-extract:
|
||||
@${LN} -sf ${LOCALBASE}/share/automake/install-sh ${WRKSRC}/install-sh
|
||||
@${LN} -sf ${LOCALBASE}/share/automake/mkinstalldirs ${WRKSRC}/mkinstalldirs
|
||||
@${PERL} -pi -e 's|-lpthread|-pthread|g' ${WRKSRC}/configure
|
||||
|
||||
pre-patch:
|
||||
@${PERL} -pi -e 's|-lpthread|-pthread|g ; \
|
||||
s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure
|
||||
@find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \
|
||||
's|\$\(datadir\)/pixmaps|\$\(datadir\)/gnome/pixmaps|g ; \
|
||||
s|\$\(datadir\)/sounds|\$\(datadir\)/gnome/sounds|g ; \
|
||||
s|\$\(localstatedir\)/games|\$\(datadir\)/gnome/games|g'
|
||||
's|\$$\(datadir\)/gnome/|\$$\(datadir\)/|g ; \
|
||||
s|\$$\(datadir\)/locale|\$$\(prefix\)/share/locale|g'
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,16 +1,16 @@
|
|||
bin/gcompris
|
||||
etc/sound/events/gcompris.soundlist
|
||||
share/gcompris/data/wordsgame/wordslevel1.en
|
||||
share/gcompris/data/wordsgame/wordslevel1.es
|
||||
share/gcompris/data/wordsgame/wordslevel1.fr
|
||||
share/gcompris/data/wordsgame/wordslevel2.en
|
||||
share/gcompris/data/wordsgame/wordslevel2.es
|
||||
share/gcompris/data/wordsgame/wordslevel2.fr
|
||||
share/gcompris/data/wordsgame/wordslevelmax.en
|
||||
share/gcompris/data/wordsgame/wordslevelmax.es
|
||||
share/gcompris/data/wordsgame/wordslevelmax.fr
|
||||
share/gcompris/data/wordsgame/wordslevelmax.nl
|
||||
share/gnome/apps/Games/gcompris.desktop
|
||||
share/gnome/gcompris/data/wordsgame/wordslevel1.en
|
||||
share/gnome/gcompris/data/wordsgame/wordslevel1.es
|
||||
share/gnome/gcompris/data/wordsgame/wordslevel1.fr
|
||||
share/gnome/gcompris/data/wordsgame/wordslevel2.en
|
||||
share/gnome/gcompris/data/wordsgame/wordslevel2.es
|
||||
share/gnome/gcompris/data/wordsgame/wordslevel2.fr
|
||||
share/gnome/gcompris/data/wordsgame/wordslevelmax.en
|
||||
share/gnome/gcompris/data/wordsgame/wordslevelmax.es
|
||||
share/gnome/gcompris/data/wordsgame/wordslevelmax.fr
|
||||
share/gnome/gcompris/data/wordsgame/wordslevelmax.nl
|
||||
share/gnome/pixmaps/gcompris/animals/baby-elephant.png
|
||||
share/gnome/pixmaps/gcompris/animals/baby-gorilla.png
|
||||
share/gnome/pixmaps/gcompris/animals/bat.png
|
||||
|
@ -156,6 +156,6 @@ share/locale/nl/LC_MESSAGES/gcompris.mo
|
|||
@dirrm share/gnome/pixmaps/gcompris/buttons
|
||||
@dirrm share/gnome/pixmaps/gcompris/animals
|
||||
@dirrm share/gnome/pixmaps/gcompris
|
||||
@dirrm share/gcompris/data/wordsgame
|
||||
@dirrm share/gcompris/data
|
||||
@dirrm share/gcompris
|
||||
@dirrm share/gnome/gcompris/data/wordsgame
|
||||
@dirrm share/gnome/gcompris/data
|
||||
@dirrm share/gnome/gcompris
|
||||
|
|
|
@ -15,29 +15,23 @@ EXTRACT_SUFX= .tgz
|
|||
MAINTAINER= sobomax@FreeBSD.org
|
||||
|
||||
BUILD_DEPENDS= ${LOCALBASE}/share/automake/install-sh:${PORTSDIR}/devel/automake
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs
|
||||
RUN_DEPENDS= panel:${PORTSDIR}/x11/gnomecore \
|
||||
${X11BASE}/share/gnome/sounds/login.wav:${PORTSDIR}/audio/gnomeaudio
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
CONFIGURE_ENV= GLIB_CONFIG="${GLIB_CONFIG}" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
post-extract:
|
||||
@${LN} -sf ${LOCALBASE}/share/automake/install-sh ${WRKSRC}/install-sh
|
||||
@${LN} -sf ${LOCALBASE}/share/automake/mkinstalldirs ${WRKSRC}/mkinstalldirs
|
||||
@${PERL} -pi -e 's|-lpthread|-pthread|g' ${WRKSRC}/configure
|
||||
|
||||
pre-patch:
|
||||
@${PERL} -pi -e 's|-lpthread|-pthread|g ; \
|
||||
s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure
|
||||
@find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \
|
||||
's|\$\(datadir\)/pixmaps|\$\(datadir\)/gnome/pixmaps|g ; \
|
||||
s|\$\(datadir\)/sounds|\$\(datadir\)/gnome/sounds|g ; \
|
||||
s|\$\(localstatedir\)/games|\$\(datadir\)/gnome/games|g'
|
||||
's|\$$\(datadir\)/gnome/|\$$\(datadir\)/|g ; \
|
||||
s|\$$\(datadir\)/locale|\$$\(prefix\)/share/locale|g'
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,16 +1,16 @@
|
|||
bin/gcompris
|
||||
etc/sound/events/gcompris.soundlist
|
||||
share/gcompris/data/wordsgame/wordslevel1.en
|
||||
share/gcompris/data/wordsgame/wordslevel1.es
|
||||
share/gcompris/data/wordsgame/wordslevel1.fr
|
||||
share/gcompris/data/wordsgame/wordslevel2.en
|
||||
share/gcompris/data/wordsgame/wordslevel2.es
|
||||
share/gcompris/data/wordsgame/wordslevel2.fr
|
||||
share/gcompris/data/wordsgame/wordslevelmax.en
|
||||
share/gcompris/data/wordsgame/wordslevelmax.es
|
||||
share/gcompris/data/wordsgame/wordslevelmax.fr
|
||||
share/gcompris/data/wordsgame/wordslevelmax.nl
|
||||
share/gnome/apps/Games/gcompris.desktop
|
||||
share/gnome/gcompris/data/wordsgame/wordslevel1.en
|
||||
share/gnome/gcompris/data/wordsgame/wordslevel1.es
|
||||
share/gnome/gcompris/data/wordsgame/wordslevel1.fr
|
||||
share/gnome/gcompris/data/wordsgame/wordslevel2.en
|
||||
share/gnome/gcompris/data/wordsgame/wordslevel2.es
|
||||
share/gnome/gcompris/data/wordsgame/wordslevel2.fr
|
||||
share/gnome/gcompris/data/wordsgame/wordslevelmax.en
|
||||
share/gnome/gcompris/data/wordsgame/wordslevelmax.es
|
||||
share/gnome/gcompris/data/wordsgame/wordslevelmax.fr
|
||||
share/gnome/gcompris/data/wordsgame/wordslevelmax.nl
|
||||
share/gnome/pixmaps/gcompris/animals/baby-elephant.png
|
||||
share/gnome/pixmaps/gcompris/animals/baby-gorilla.png
|
||||
share/gnome/pixmaps/gcompris/animals/bat.png
|
||||
|
@ -156,6 +156,6 @@ share/locale/nl/LC_MESSAGES/gcompris.mo
|
|||
@dirrm share/gnome/pixmaps/gcompris/buttons
|
||||
@dirrm share/gnome/pixmaps/gcompris/animals
|
||||
@dirrm share/gnome/pixmaps/gcompris
|
||||
@dirrm share/gcompris/data/wordsgame
|
||||
@dirrm share/gcompris/data
|
||||
@dirrm share/gcompris
|
||||
@dirrm share/gnome/gcompris/data/wordsgame
|
||||
@dirrm share/gnome/gcompris/data
|
||||
@dirrm share/gnome/gcompris
|
||||
|
|
|
@ -13,14 +13,19 @@ EXTRACT_SUFX= .tgz
|
|||
|
||||
MAINTAINER= will@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs
|
||||
|
||||
GNOME_CONFIG?= ${X11BASE}/bin/gnome-config
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ENV= GNOME_CONFIG=${GNOME_CONFIG} GTK_CONFIG=${GTK_CONFIG}
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
pre-patch:
|
||||
@${PERL} -pi -e 's|-lpthread|-pthread|g ; \
|
||||
s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure
|
||||
@find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \
|
||||
's|\$$\(datadir\)/gnome/|\$$\(datadir\)/|g ; \
|
||||
s|\$$\(datadir\)/locale|\$$\(prefix\)/share/locale|g'
|
||||
|
||||
pre-configure:
|
||||
@${RM} -f ${WRKSRC}/config.cache
|
||||
|
@ -28,7 +33,7 @@ pre-configure:
|
|||
post-install:
|
||||
${CHOWN} root:games ${PREFIX}/bin/gno3dtet
|
||||
${CHMOD} 2555 ${PREFIX}/bin/gno3dtet
|
||||
${CHOWN} root:games ${PREFIX}/var/games/gno3dtet.hof
|
||||
${CHMOD} 664 ${PREFIX}/var/games/gno3dtet.hof
|
||||
${CHOWN} root:games ${PREFIX}/share/gnome/games/gno3dtet.hof
|
||||
${CHMOD} 664 ${PREFIX}/share/gnome/games/gno3dtet.hof
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,21 +1,21 @@
|
|||
bin/gno3dtet
|
||||
share/gnome/apps/Games/gno3dtet.desktop
|
||||
share/gnome/help/gno3dtet/C/topic.dat
|
||||
share/gnome/help/gno3dtet/C/gno3dtet.html
|
||||
share/gnome/games/gno3dtet.hof
|
||||
share/gnome/help/gno3dtet/C/copying.html
|
||||
share/pixmaps/gno3dtet.png
|
||||
var/games/gno3dtet.hof
|
||||
share/sounds/gno3dtet/danger.wav
|
||||
share/sounds/gno3dtet/fall.wav
|
||||
share/sounds/gno3dtet/hof.wav
|
||||
share/sounds/gno3dtet/land.wav
|
||||
share/sounds/gno3dtet/layer.wav
|
||||
share/sounds/gno3dtet/level.wav
|
||||
share/sounds/gno3dtet/move.wav
|
||||
share/sounds/gno3dtet/new.wav
|
||||
share/sounds/gno3dtet/pause.wav
|
||||
share/sounds/gno3dtet/score.wav
|
||||
share/sounds/gno3dtet/screwd.wav
|
||||
share/gnome/help/gno3dtet/C/gno3dtet.html
|
||||
share/gnome/help/gno3dtet/C/topic.dat
|
||||
share/gnome/pixmaps/gno3dtet.png
|
||||
share/gnome/sounds/gno3dtet/danger.wav
|
||||
share/gnome/sounds/gno3dtet/fall.wav
|
||||
share/gnome/sounds/gno3dtet/hof.wav
|
||||
share/gnome/sounds/gno3dtet/land.wav
|
||||
share/gnome/sounds/gno3dtet/layer.wav
|
||||
share/gnome/sounds/gno3dtet/level.wav
|
||||
share/gnome/sounds/gno3dtet/move.wav
|
||||
share/gnome/sounds/gno3dtet/new.wav
|
||||
share/gnome/sounds/gno3dtet/pause.wav
|
||||
share/gnome/sounds/gno3dtet/score.wav
|
||||
share/gnome/sounds/gno3dtet/screwd.wav
|
||||
@dirrm share/gnome/sounds/gno3dtet
|
||||
@dirrm share/gnome/help/gno3dtet/C
|
||||
@dirrm share/gnome/help/gno3dtet
|
||||
@dirrm share/sounds/gno3dtet
|
||||
|
|
|
@ -13,19 +13,11 @@ MASTER_SITE_SUBDIR= ${PORTNAME}
|
|||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= panel_applet.4:${PORTSDIR}/x11/gnomecore
|
||||
|
||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GLIB_CONFIG="${GLIB_CONFIG}" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
pre-patch:
|
||||
|
|
|
@ -14,20 +14,14 @@ DISTNAME= gnome-games-${PORTVERSION}
|
|||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= panel_applet.4:${PORTSDIR}/x11/gnomecore \
|
||||
guile.9:${PORTSDIR}/lang/guile
|
||||
RUN_DEPENDS= ${X11BASE}/share/gnome/sounds/startup.wav:${PORTSDIR}/audio/gnomeaudio
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
LIB_DEPENDS= guile.9:${PORTSDIR}/lang/guile
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
pre-patch:
|
||||
|
|
|
@ -14,22 +14,14 @@ DISTNAME= gnome-chess-${PORTVERSION}
|
|||
|
||||
MAINTAINER= reg@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext
|
||||
BUILD_DEPENDS= panel:${PORTSDIR}/x11/gnomecore \
|
||||
crafty:${PORTSDIR}/games/crafty
|
||||
RUN_DEPENDS= panel:${PORTSDIR}/x11/gnomecore \
|
||||
crafty:${PORTSDIR}/games/crafty
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
BUILD_DEPENDS= crafty:${PORTSDIR}/games/crafty
|
||||
RUN_DEPENDS= crafty:${PORTSDIR}/games/crafty
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome \
|
||||
--with-gnome=${PREFIX}
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -14,20 +14,14 @@ DISTNAME= gnome-games-${PORTVERSION}
|
|||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= panel_applet.4:${PORTSDIR}/x11/gnomecore \
|
||||
guile.9:${PORTSDIR}/lang/guile
|
||||
RUN_DEPENDS= ${X11BASE}/share/gnome/sounds/startup.wav:${PORTSDIR}/audio/gnomeaudio
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
LIB_DEPENDS= guile.9:${PORTSDIR}/lang/guile
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
pre-patch:
|
||||
|
|
|
@ -14,20 +14,14 @@ DISTNAME= gnome-games-${PORTVERSION}
|
|||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= panel_applet.4:${PORTSDIR}/x11/gnomecore \
|
||||
guile.9:${PORTSDIR}/lang/guile
|
||||
RUN_DEPENDS= ${X11BASE}/share/gnome/sounds/startup.wav:${PORTSDIR}/audio/gnomeaudio
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
LIB_DEPENDS= guile.9:${PORTSDIR}/lang/guile
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
pre-patch:
|
||||
|
|
|
@ -14,21 +14,10 @@ DISTNAME= gnome-memblocks-${PORTVERSION}
|
|||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \
|
||||
gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf
|
||||
RUN_DEPENDS= panel:${PORTSDIR}/x11/gnomecore \
|
||||
${X11BASE}/share/gnome/sounds/login.wav:${PORTSDIR}/audio/gnomeaudio
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
pre-patch:
|
||||
|
|
|
@ -12,11 +12,13 @@ MASTER_SITE_SUBDIR= gtetrinet
|
|||
|
||||
MAINTAINER= bugg@bugg.strangled.net
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs
|
||||
|
||||
GTK_CONFIG= "${X11BASE}/bin/gtk12-config"
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}"
|
||||
USE_GNOME= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
pre-patch:
|
||||
@find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \
|
||||
's|\$$\(datadir\)/gnome/|\$$\(datadir\)/|g'
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
bin/gtetrinet
|
||||
share/gtetrinet/themes/default/blocks.png
|
||||
share/gtetrinet/themes/default/theme.cfg
|
||||
share/pixmaps/gtetrinet.png
|
||||
share/gnome/gtetrinet/themes/default/blocks.png
|
||||
share/gnome/gtetrinet/themes/default/theme.cfg
|
||||
share/gnome/pixmaps/gtetrinet.png
|
||||
share/gnome/apps/Games/gtetrinet.desktop
|
||||
@dirrm share/gtetrinet/themes/default
|
||||
@dirrm share/gtetrinet/themes
|
||||
@dirrm share/gtetrinet
|
||||
@dirrm share/gnome/gtetrinet/themes/default
|
||||
@dirrm share/gnome/gtetrinet/themes
|
||||
@dirrm share/gnome/gtetrinet
|
||||
|
|
|
@ -13,21 +13,11 @@ MASTER_SITES= http://www.dvgu.ru/ifit/~panov/gtktetcolor/ \
|
|||
|
||||
MAINTAINER= sobomax@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs
|
||||
RUN_DEPENDS= panel:${PORTSDIR}/x11/gnomecore
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GNOME= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ENV= GLIB_CONFIG="${GLIB_CONFIG}" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
pre-patch:
|
||||
@${PERL} -pi -e 's|-lpthread|-pthread|g ; \
|
||||
|
|
|
@ -13,19 +13,11 @@ MASTER_SITE_SUBDIR= ${PORTNAME}
|
|||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= panel_applet.4:${PORTSDIR}/x11/gnomecore
|
||||
|
||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GLIB_CONFIG="${GLIB_CONFIG}" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
pre-patch:
|
||||
|
|
|
@ -13,28 +13,21 @@ MASTER_SITES= http://perso.wanadoo.fr/christophe.cressend/tarballs/
|
|||
MAINTAINER= sobomax@FreeBSD.org
|
||||
|
||||
BUILD_DEPENDS= xbmtopbm:${PORTSDIR}/graphics/netpbm
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs
|
||||
RUN_DEPENDS= gnomecc:${PORTSDIR}/sysutils/gnomecontrolcenter
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}
|
||||
|
||||
USE_BZIP2= yes
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
CONFIGURE_ENV= GLIB_CONFIG="${GLIB_CONFIG}" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
|
||||
post-extract:
|
||||
pre-patch:
|
||||
@${PERL} -pi -e 's|-lpthread|-pthread|g' ${WRKSRC}/configure
|
||||
@find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \
|
||||
's|\$\(datadir\)/pixmaps|\$\(datadir\)/gnome/pixmaps|g ; \
|
||||
s|\$\(localstatedir\)/games|\$\(datadir\)/gnome/games|g'
|
||||
's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \
|
||||
s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g'
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -12,17 +12,9 @@ MASTER_SITES= http://www.linuxstart.com/~arjan/diacanvas/download/
|
|||
|
||||
MAINTAINER= nakai@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
11
graphics/diacanvas/files/patch-ac
Normal file
11
graphics/diacanvas/files/patch-ac
Normal file
|
@ -0,0 +1,11 @@
|
|||
--- Makefile.in.orig Sun Feb 27 15:26:48 2000
|
||||
+++ Makefile.in Sun Feb 27 15:27:02 2000
|
||||
@@ -101,7 +101,7 @@
|
||||
EXTRA_DIST = diacanvas.m4 TODO BUGS
|
||||
|
||||
|
||||
-m4datadir = $(datadir)/aclocal
|
||||
+m4datadir = $(prefix)/share/aclocal
|
||||
m4data_DATA = diacanvas.m4
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
|
@ -31,8 +31,7 @@ include/diacanvas/diarenderergdk.h
|
|||
include/diacanvas/diatool.h
|
||||
include/diacanvas/geometry.h
|
||||
lib/libdiacanvas.a
|
||||
lib/libdiacanvas.la
|
||||
lib/libdiacanvas.so
|
||||
lib/libdiacanvas.so.1
|
||||
share/gnome/aclocal/diacanvas.m4
|
||||
share/aclocal/diacanvas.m4
|
||||
@dirrm include/diacanvas
|
||||
|
|
|
@ -14,17 +14,11 @@ DISTNAME= ee-${PORTVERSION}
|
|||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= panel_applet.4:${PORTSDIR}/x11/gnomecore
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
GNU_CONFIGURE= yes
|
||||
USE_GMAKE= yes
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
pre-patch:
|
||||
|
|
|
@ -14,16 +14,14 @@ MASTER_SITE_SUBDIR= unstable/sources/eog
|
|||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= panel_applet.4:${PORTSDIR}/x11/gnomecore \
|
||||
glade.4:${PORTSDIR}/devel/libglade \
|
||||
LIB_DEPENDS= glade.4:${PORTSDIR}/devel/libglade \
|
||||
bonobo.2:${PORTSDIR}/devel/bonobo \
|
||||
gconf-1.1:${PORTSDIR}/devel/gconf
|
||||
|
||||
USE_GMAKE= yes
|
||||
USE_X_PREFIX= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
|
|
|
@ -14,16 +14,14 @@ MASTER_SITE_SUBDIR= unstable/sources/eog
|
|||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= panel_applet.4:${PORTSDIR}/x11/gnomecore \
|
||||
glade.4:${PORTSDIR}/devel/libglade \
|
||||
LIB_DEPENDS= glade.4:${PORTSDIR}/devel/libglade \
|
||||
bonobo.2:${PORTSDIR}/devel/bonobo \
|
||||
gconf-1.1:${PORTSDIR}/devel/gconf
|
||||
|
||||
USE_GMAKE= yes
|
||||
USE_X_PREFIX= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
|
|
|
@ -13,18 +13,17 @@ MASTER_SITE_SUBDIR= unstable/sources/gdk-pixbuf
|
|||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs
|
||||
|
||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
USE_GMAKE= yes
|
||||
USE_X_PREFIX= yes
|
||||
USE_GNOMELIBS= yes
|
||||
USE_LIBTOOL= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GLIB_CONFIG="${GLIB_CONFIG}" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
pre-patch:
|
||||
@find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \
|
||||
's|\$$\(datadir\)/gnome/|\$$\(datadir\)/|g ; \
|
||||
s|\$$\(datadir\)/aclocal|\$$\(prefix\)/share/aclocal|g'
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -91,18 +91,18 @@
|
|||
-@INSIDE_GNOME_LIBS_FALSE@test_gdk_pixbuf_LDADD = $(LDADDS) $(GNOME_LIBS) -lgmodule
|
||||
-@INSIDE_GNOME_LIBS_TRUE@testpixbuf_LDADD = $(LDADDS) -lgmodule
|
||||
-@INSIDE_GNOME_LIBS_FALSE@testpixbuf_LDADD = $(LDADDS) $(GNOME_LIBS) -lgmodule
|
||||
+@INSIDE_GNOME_LIBS_TRUE@test_gdk_pixbuf_LDADD = $(LDADDS) -lgmodule12
|
||||
+@INSIDE_GNOME_LIBS_FALSE@test_gdk_pixbuf_LDADD = $(LDADDS) $(GNOME_LIBS) -lgmodule12
|
||||
+@INSIDE_GNOME_LIBS_TRUE@testpixbuf_LDADD = $(LDADDS) -lgmodule12
|
||||
+@INSIDE_GNOME_LIBS_FALSE@testpixbuf_LDADD = $(LDADDS) $(GNOME_LIBS) -lgmodule12
|
||||
+@INSIDE_GNOME_LIBS_TRUE@test_gdk_pixbuf_LDADD = $(LDADDS) `$(GLIB_CONFIG) --libs gmodule`
|
||||
+@INSIDE_GNOME_LIBS_FALSE@test_gdk_pixbuf_LDADD = $(LDADDS) $(GNOME_LIBS) `$(GLIB_CONFIG) --libs gmodule`
|
||||
+@INSIDE_GNOME_LIBS_TRUE@testpixbuf_LDADD = $(LDADDS) `$(GLIB_CONFIG) --libs gmodule`
|
||||
+@INSIDE_GNOME_LIBS_FALSE@testpixbuf_LDADD = $(LDADDS) $(GNOME_LIBS) `$(GLIB_CONFIG) --libs gmodule`
|
||||
@INSIDE_GNOME_LIBS_TRUE@testpixbuf_drawable_LDADD = $(LDADDS)
|
||||
@INSIDE_GNOME_LIBS_FALSE@testpixbuf_drawable_LDADD = $(LDADDS) $(GNOME_LIBS)
|
||||
@INSIDE_GNOME_LIBS_TRUE@testpixbuf_scale_LDADD = $(LDADDS)
|
||||
@INSIDE_GNOME_LIBS_FALSE@testpixbuf_scale_LDADD = $(LDADDS) $(GNOME_LIBS)
|
||||
-@INSIDE_GNOME_LIBS_TRUE@testanimation_LDADD = $(LDADDS) -lgmodule
|
||||
-@INSIDE_GNOME_LIBS_FALSE@testanimation_LDADD = $(LDADDS) $(GNOME_LIBS) -lgmodule
|
||||
+@INSIDE_GNOME_LIBS_TRUE@testanimation_LDADD = $(LDADDS) -lgmodule12
|
||||
+@INSIDE_GNOME_LIBS_FALSE@testanimation_LDADD = $(LDADDS) $(GNOME_LIBS) -lgmodule12
|
||||
+@INSIDE_GNOME_LIBS_TRUE@testanimation_LDADD = $(LDADDS) `$(GLIB_CONFIG) --libs gmodule`
|
||||
+@INSIDE_GNOME_LIBS_FALSE@testanimation_LDADD = $(LDADDS) $(GNOME_LIBS) `$(GLIB_CONFIG) --libs gmodule`
|
||||
|
||||
GDK_PIXBUF_LIBS = $(GLIB_LIBS) $(GTK_LIBS)
|
||||
|
||||
|
|
|
@ -13,15 +13,17 @@ MASTER_SITE_SUBDIR= ${PORTNAME}
|
|||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
USE_X_PREFIX= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ENV= GTK_CONFIG=${GTK_CONFIG} \
|
||||
CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
CONFIGURE_ARGS+=--datadir=${PREFIX}/share
|
||||
USE_NEWGCC= yes
|
||||
USE_GNOME= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
pre-patch:
|
||||
@${PERL} -pi -e 's|-lpthread|-pthread|g ; \
|
||||
s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure
|
||||
@find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \
|
||||
's|\$$\(datadir\)/gnome/|\$$\(datadir\)/|g'
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -86,6 +86,7 @@ share/gnome/pixmaps/gnofract4d/gnofract4d-logo.png
|
|||
share/locale/fr/LC_MESSAGES/gnofract4d.mo
|
||||
@dirrm share/gnome/pixmaps/gnofract4d
|
||||
@dirrm share/gnome/maps/gnofract4d
|
||||
@dirrm share/gnome/maps
|
||||
@dirrm share/gnome/help/gnofract4d/C/images
|
||||
@dirrm share/gnome/help/gnofract4d/C
|
||||
@dirrm share/gnome/help/gnofract4d
|
||||
|
|
|
@ -12,25 +12,16 @@ MASTER_SITES= http://wine.sexcity.pl/morpheus/
|
|||
|
||||
MAINTAINER= sobomax@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \
|
||||
morph.0:${PORTSDIR}/graphics/libmorph \
|
||||
LIB_DEPENDS= morph.0:${PORTSDIR}/graphics/libmorph \
|
||||
gtkgl.5:${PORTSDIR}/x11-toolkits/gtkglarea
|
||||
RUN_DEPENDS= panel:${PORTSDIR}/x11/gnomecore
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_MESA= yes
|
||||
USE_GNOME= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ENV= GLIB_CONFIG="${GLIB_CONFIG}" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
pre-patch:
|
||||
@${PERL} -pi -e 's|-lpthread|-pthread|g ; \
|
||||
|
|
|
@ -13,21 +13,15 @@ MASTER_SITE_SUBDIR= ${PORTNAME}
|
|||
|
||||
MAINTAINER= nakai@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \
|
||||
glade.4:${PORTSDIR}/devel/libglade \
|
||||
LIB_DEPENDS= glade.4:${PORTSDIR}/devel/libglade \
|
||||
gnomeprint.12:${PORTSDIR}/print/gnomeprint \
|
||||
gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf \
|
||||
bonobo.2:${PORTSDIR}/devel/bonobo
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
USE_GMAKE= yes
|
||||
USE_X_PREFIX= yes
|
||||
USE_GNOME= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
|
||||
--datadir=${PREFIX}/share/gnome
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
GTK_CONFIG="${GTK_CONFIG}" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
pre-patch:
|
||||
|
|
|
@ -12,22 +12,26 @@ MASTER_SITES= http://www-eleves.enst-bretagne.fr/~chavarri/xmps/sources/
|
|||
|
||||
MAINTAINER= sobomax@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= smpeg.0:${PORTSDIR}/graphics/smpeg \
|
||||
gnome.4:${PORTSDIR}/x11/gnomelibs \
|
||||
gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf
|
||||
LIB_DEPENDS= smpeg.0:${PORTSDIR}/graphics/smpeg
|
||||
BUILD_DEPENDS= nasm:${PORTSDIR}/devel/nasm
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_LIBTOOL= yes
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
||||
SDL_CONFIG?= ${LOCALBASE}/bin/sdl11-config
|
||||
|
||||
CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" \
|
||||
GLIB_CONFIG="${GLIB_CONFIG}" \
|
||||
USE_X_PREFIX= yes
|
||||
USE_GNOME= yes
|
||||
USE_LIBTOOL= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
SDL_CONFIG="${SDL_CONFIG}" \
|
||||
CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
|
||||
pre-patch:
|
||||
@${PERL} -pi -e 's|-lpthread|-pthread|g ; \
|
||||
s|DATADIRNAME=lib|DATADIRNAME=share|g ; \
|
||||
s|USE_INCLUDED_LIBINTL=yes|#USE_INCLUDED_LIBINTL=yes|g ; \
|
||||
s|\$$\(top_builddir\)/intl/libintl.a|-lintl|g' ${WRKSRC}/configure
|
||||
@find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \
|
||||
's|\$$\(datadir\)/gnome/|\$$\(datadir\)/|g ; \
|
||||
s|\$$\(datadir\)/aclocal|\$$\(prefix\)/share/aclocal|g ; \
|
||||
s|\$$\(datadir\)/locale|\$$\(prefix\)/share/locale|g'
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -16,33 +16,6 @@
|
|||
cat >> confdefs.h <<\EOF
|
||||
#define AS_STRETCHER 1
|
||||
EOF
|
||||
@@ -2979,14 +2981,14 @@
|
||||
{ echo "configure: error: *** POSIX thread support not installed ***" 1>&2; exit 1; }
|
||||
fi
|
||||
|
||||
-echo $ac_n "checking for pthread_attr_init in -lpthread""... $ac_c" 1>&6
|
||||
-echo "configure:2984: checking for pthread_attr_init in -lpthread" >&5
|
||||
+echo $ac_n "checking for pthread_attr_init in -pthread""... $ac_c" 1>&6
|
||||
+echo "configure:2984: checking for pthread_attr_init in -pthread" >&5
|
||||
ac_lib_var=`echo pthread'_'pthread_attr_init | sed 'y%./+-%__p_%'`
|
||||
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
ac_save_LIBS="$LIBS"
|
||||
-LIBS="-lpthread $LIBS"
|
||||
+LIBS="-pthread $LIBS"
|
||||
cat > conftest.$ac_ext <<EOF
|
||||
#line 2992 "configure"
|
||||
#include "confdefs.h"
|
||||
@@ -3020,7 +3022,7 @@
|
||||
#define $ac_tr_lib 1
|
||||
EOF
|
||||
|
||||
- LIBS="-lpthread $LIBS"
|
||||
+ LIBS="-pthread $LIBS"
|
||||
|
||||
else
|
||||
echo "$ac_t""no" 1>&6
|
||||
@@ -4060,16 +4062,16 @@
|
||||
{ echo "configure: error: **** Cannot find stat.h ****" 1>&2; exit 1; }
|
||||
fi
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue