diff options
author | jmmv <jmmv@pkgsrc.org> | 2002-12-07 10:12:42 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2002-12-07 10:12:42 +0000 |
commit | bfb10044a74413d58b7bef52a44e2097ba795184 (patch) | |
tree | bbde97b84486ac585c2b0a00687ef52381369f66 /sysutils | |
parent | 0a1bd5acad4638865116c0da61447ceb86ee6ef4 (diff) | |
download | pkgsrc-bfb10044a74413d58b7bef52a44e2097ba795184.tar.gz |
Update gentoo to 0.11.34. Changes since 0.11.33:
* Added used bytes display to status line. Overdue, I guess.
* Reintroduced the [root] indicator in the main window title bar,
for when you're running as root. Thanks, Roger Sondermann.
* Fixed horrible bug that seemed to be happy to just break the
history saving when running as root, but should have done a
lot more if there had been any justice in the universe. Thanks
again, Roger.
* Incorporated an updated Polish translation. Thanks Slawomir.
* Made built-in pane menu translatable. This is temporary.
* Tweaked the man page (docs/gentoo.1x) a bit.
Update patch provided by Juan RP in PR pkg/19308.
I've also seized the opportunity to make this package honor PKG_SYSCONFDIR
and depend on gettext-lib, which is required by the program.
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/gentoo/Makefile | 15 | ||||
-rw-r--r-- | sysutils/gentoo/PLIST | 7 | ||||
-rw-r--r-- | sysutils/gentoo/distinfo | 7 | ||||
-rw-r--r-- | sysutils/gentoo/patches/patch-aa | 13 |
4 files changed, 34 insertions, 8 deletions
diff --git a/sysutils/gentoo/Makefile b/sysutils/gentoo/Makefile index 039fb6ec09b..5b98ce86255 100644 --- a/sysutils/gentoo/Makefile +++ b/sysutils/gentoo/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.6 2002/09/02 16:56:57 wiz Exp $ +# $NetBSD: Makefile,v 1.7 2002/12/07 10:12:42 jmmv Exp $ # -DISTNAME= gentoo-0.11.33 +DISTNAME= gentoo-0.11.34 CATEGORIES= sysutils MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gentoo/} @@ -9,9 +9,20 @@ MAINTAINER= dunse@goa.nu HOMEPAGE= http://www.obsession.se/gentoo/ COMMENT= Two-pane filemanager using GTK+, 100% GUI configurable +BUILD_USES_MSGFMT= YES + GNU_CONFIGURE= YES USE_BUILDLINK2= YES +USE_PKGLOCALEDIR= YES USE_X11= YES +CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} + +EGDIR= ${PREFIX}/share/examples/gentoo +CONF_FILES= ${EGDIR}/gentoorc ${PKG_SYSCONFDIR}/gentoorc +CONF_FILES+= ${EGDIR}/gentoogtkrc ${PKG_SYSCONFDIR}/gentoogtkrc + +.include "../../devel/gettext-lib/buildlink2.mk" .include "../../x11/gtk/buildlink2.mk" +.include "../../mk/bsd.pkg.install.mk" .include "../../mk/bsd.pkg.mk" diff --git a/sysutils/gentoo/PLIST b/sysutils/gentoo/PLIST index 5b15cc61527..b44ad685bb9 100644 --- a/sysutils/gentoo/PLIST +++ b/sysutils/gentoo/PLIST @@ -1,7 +1,7 @@ -@comment $NetBSD: PLIST,v 1.4 2002/09/02 16:56:57 wiz Exp $ +@comment $NetBSD: PLIST,v 1.5 2002/12/07 10:12:42 jmmv Exp $ bin/gentoo -etc/gentoogtkrc -etc/gentoorc +share/examples/gentoo/gentoogtkrc +share/examples/gentoo/gentoorc share/gentoo/icons/AbiWord.xpm share/gentoo/icons/Amiga.xpm share/gentoo/icons/Animation.xpm @@ -130,3 +130,4 @@ ${PKGLOCALEDIR}/locale/pl/LC_MESSAGES/gentoo.mo ${PKGLOCALEDIR}/locale/sv/LC_MESSAGES/gentoo.mo @dirrm share/gentoo/icons @dirrm share/gentoo +@dirrm share/examples/gentoo diff --git a/sysutils/gentoo/distinfo b/sysutils/gentoo/distinfo index 5241214d65d..1bbe004ee1f 100644 --- a/sysutils/gentoo/distinfo +++ b/sysutils/gentoo/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.6 2002/09/02 16:56:57 wiz Exp $ +$NetBSD: distinfo,v 1.7 2002/12/07 10:12:42 jmmv Exp $ -SHA1 (gentoo-0.11.33.tar.gz) = 66d1a679e686587cac8a7a93b837e48025371600 -Size (gentoo-0.11.33.tar.gz) = 1021054 bytes +SHA1 (gentoo-0.11.34.tar.gz) = 552046a36a64c4d03f9687432fb5280b462966e6 +Size (gentoo-0.11.34.tar.gz) = 1021899 bytes +SHA1 (patch-aa) = 49bf9ba554a7fa443c6176fc44a11bcae046cc9d SHA1 (patch-ae) = daa7cbed8d66af155f2624a0066b2f578e9a93c6 diff --git a/sysutils/gentoo/patches/patch-aa b/sysutils/gentoo/patches/patch-aa new file mode 100644 index 00000000000..c5b37d728cb --- /dev/null +++ b/sysutils/gentoo/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.3 2002/12/07 10:12:43 jmmv Exp $ + +--- Makefile.in.orig Sun Sep 1 20:04:19 2002 ++++ Makefile.in +@@ -29,7 +29,7 @@ bindir = @bindir@ + sbindir = @sbindir@ + libexecdir = @libexecdir@ + datadir = @datadir@ +-sysconfdir = @sysconfdir@ ++sysconfdir = $(datadir)/examples/@PACKAGE@ + sharedstatedir = @sharedstatedir@ + localstatedir = @localstatedir@ + libdir = @libdir@ |