diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2005-04-07 12:47:13 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2005-04-07 12:47:13 +0000 |
commit | 940d29829769780f63ffb2742437130d237cfd0f (patch) | |
tree | 65bd537e31c5860f0007aea50ca5b2ccf8523174 /app-misc/gentoo | |
parent | added ~amd64 to KEYWORDS, fixes #81151 (diff) | |
download | gentoo-2-940d29829769780f63ffb2742437130d237cfd0f.tar.gz gentoo-2-940d29829769780f63ffb2742437130d237cfd0f.tar.bz2 gentoo-2-940d29829769780f63ffb2742437130d237cfd0f.zip |
nls is sort of fixed -- the install goes through with nls in use, but I personally have not seen any po files actually get installed, so I believe it to be broken. Anyway, please test and let me know. Also, the man page is now installed in /usr/share/man rather than /usr/X11R6/man as before.
(Portage version: 1.585-cvs)
Diffstat (limited to 'app-misc/gentoo')
-rw-r--r-- | app-misc/gentoo/ChangeLog | 8 | ||||
-rw-r--r-- | app-misc/gentoo/gentoo-0.11.54.ebuild | 13 |
2 files changed, 14 insertions, 7 deletions
diff --git a/app-misc/gentoo/ChangeLog b/app-misc/gentoo/ChangeLog index 604ffe335cad..29971652306e 100644 --- a/app-misc/gentoo/ChangeLog +++ b/app-misc/gentoo/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-misc/gentoo # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/gentoo/ChangeLog,v 1.51 2005/04/06 20:39:05 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/gentoo/ChangeLog,v 1.52 2005/04/07 12:47:13 seemant Exp $ + + 07 Apr 2005; Seemant Kulleen <seemant@gentoo.org> gentoo-0.11.54.ebuild: + nls is sort of fixed -- the install goes through with nls in use, but I + personally have not seen any po files actually get installed, so I believe + it to be broken. Anyway, please test and let me know. Also, the man page is + now installed in /usr/share/man rather than /usr/X11R6/man as before. 06 Apr 2005; Seemant Kulleen <seemant@gentoo.org> gentoo-0.11.54.ebuild: wtf, I left out all the new fam stuff entirely. Sorry about. Thanks Magnade diff --git a/app-misc/gentoo/gentoo-0.11.54.ebuild b/app-misc/gentoo/gentoo-0.11.54.ebuild index d012bca1a35d..28f8ee706a92 100644 --- a/app-misc/gentoo/gentoo-0.11.54.ebuild +++ b/app-misc/gentoo/gentoo-0.11.54.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/gentoo/gentoo-0.11.54.ebuild,v 1.4 2005/04/06 21:47:43 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/gentoo/gentoo-0.11.54.ebuild,v 1.5 2005/04/07 12:47:13 seemant Exp $ DESCRIPTION="A modern GTK+ based filemanager for any WM" HOMEPAGE="http://www.obsession.se/gentoo/" @@ -15,19 +15,20 @@ DEPEND="=x11-libs/gtk+-1.2*" RDEPEND="nls? ( sys-devel/gettext ) fam? ( app-admin/fam )" +unset LINGUAS + src_compile() { econf \ --sysconfdir=/etc/gentoo \ $(use_enable fam) \ - --disable-nls || die # temporarily disable nls, will fix tomorrow - #$(use_enable nls) || die + $(use_enable nls) || die emake || die } src_install() { - einstall \ - sysconfdir=${D}/etc/gentoo || die + cp mkinstalldirs ${WORKDIR} + make DESTDIR=${D} install || die if use gnome ; then insinto /usr/share/pixmaps @@ -44,7 +45,7 @@ src_install() { dohtml -r docs/images dohtml -r docs/config - doman docs/gentoo.1x + newan docs/gentoo.1x gentoo.1 docinto scratch dodoc docs/scratch/* |