diff options
author | obache <obache@pkgsrc.org> | 2009-01-25 13:12:44 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2009-01-25 13:12:44 +0000 |
commit | b855ea1d572d915f74a12512c3c349c581d6a94f (patch) | |
tree | ea284dd3685f362e6159f95bdc3ed736483f0cb2 /sysutils | |
parent | 47f9832cec4485d0d3b54fcdede91db12e590118 (diff) | |
download | pkgsrc-b855ea1d572d915f74a12512c3c349c581d6a94f.tar.gz |
Remove patch-ae.
It replace tmpnam() with mkdtemp(), but
* It exists since initial import, but no reason.
* mkdtemp(3) is not portable, but used unconditionally, reported by PR 39717.
* tmpnam(3) is used to get temp filename, but mkdtemp(3) create temp directory,
and return the path. So, the replacement is completely mistaken.
Bump PKGREVISION.
While here, marked as DESTDIR ready.
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/gentoo/Makefile | 5 | ||||
-rw-r--r-- | sysutils/gentoo/distinfo | 3 | ||||
-rw-r--r-- | sysutils/gentoo/patches/patch-ae | 13 |
3 files changed, 5 insertions, 16 deletions
diff --git a/sysutils/gentoo/Makefile b/sysutils/gentoo/Makefile index 78597a0501b..60e1324744f 100644 --- a/sysutils/gentoo/Makefile +++ b/sysutils/gentoo/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.30 2008/11/10 14:56:16 adam Exp $ +# $NetBSD: Makefile,v 1.31 2009/01/25 13:12:44 obache Exp $ DISTNAME= gentoo-0.11.57 +PKGREVISION= 1 CATEGORIES= sysutils MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gentoo/} @@ -8,6 +9,8 @@ MAINTAINER= dunse@goa.nu HOMEPAGE= http://www.obsession.se/gentoo/ COMMENT= Two-pane filemanager using GTK+, 100% GUI configurable +PKG_DESTDIR_SUPPORT= user-destdir + USE_PKGLOCALEDIR= yes USE_TOOLS+= msgfmt GNU_CONFIGURE= yes diff --git a/sysutils/gentoo/distinfo b/sysutils/gentoo/distinfo index 8a187a7698d..02aeddc7efd 100644 --- a/sysutils/gentoo/distinfo +++ b/sysutils/gentoo/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.23 2008/11/10 14:56:16 adam Exp $ +$NetBSD: distinfo,v 1.24 2009/01/25 13:12:44 obache Exp $ SHA1 (gentoo-0.11.57.tar.gz) = ac5859b489a6b88161d5b0f2ddd06490ce9915eb RMD160 (gentoo-0.11.57.tar.gz) = 675333aa740f297a0d41d5795689b8e4280d2bdf @@ -7,7 +7,6 @@ SHA1 (patch-aa) = 5d8f1fcd4110b09e02f44584e2ccd921a7175929 SHA1 (patch-ab) = e84931dbc57434881f8071e389ebe8df061ee0b6 SHA1 (patch-ac) = 4e5d52849887b816eb4388fb2c75aefb3443f5c8 SHA1 (patch-ad) = 7e41b435aff7af5e57bfb82902a6bb88af37ad97 -SHA1 (patch-ae) = daa7cbed8d66af155f2624a0066b2f578e9a93c6 SHA1 (patch-af) = 2b80f24bd545177b0d089696e7b3ed7f0d72a3b0 SHA1 (patch-ag) = 3045a4eb72f8c50d147fe09256ec791359053418 SHA1 (patch-ah) = c14c80a7c821f69b98cb23156ec5b30ac40ed2ec diff --git a/sysutils/gentoo/patches/patch-ae b/sysutils/gentoo/patches/patch-ae deleted file mode 100644 index 4a04cbd5bc9..00000000000 --- a/sysutils/gentoo/patches/patch-ae +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ae,v 1.3 2002/09/02 16:56:58 wiz Exp $ - ---- src/types.c.orig Sun Aug 25 12:46:47 2002 -+++ src/types.c -@@ -352,7 +352,7 @@ void typ_identify_end(MainInfo *min, con - - if(file_list == NULL) - return; -- if((temp_name = tmpnam(NULL)) == NULL) -+ if((temp_name = mkdtemp(NULL)) == NULL) - return; - if(pipe(fd) != 0) - return; |