From 6e02860d5b621e9061d3ddecd2be5dab6f1284f1 Mon Sep 17 00:00:00 2001 From: hannes Date: Wed, 8 Dec 2004 10:42:48 +0000 Subject: [PATCH] hannes: updated attr 2.4.19 [2004120500055809897] (https://www.rocklinux.net/submaster) git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@5062 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc --- package/base/attr/attr.conf | 4 +- package/base/attr/attr.desc | 4 +- package/base/attr/autoconf.patch | 107 ------------------------------- 3 files changed, 5 insertions(+), 110 deletions(-) delete mode 100644 package/base/attr/autoconf.patch diff --git a/package/base/attr/attr.conf b/package/base/attr/attr.conf index 5a596ffed..725fe6db6 100644 --- a/package/base/attr/attr.conf +++ b/package/base/attr/attr.conf @@ -27,8 +27,10 @@ autogen=1 # also install headers and libs makeinstopt="$makeinstopt install-dev install-lib" +# enable gettext if possible +pkginstalled gettext || var_append confopt ' ' "--enable-gettext=no" + # only static libs go here var_append confopt ' ' "--libexecdir='$libdir'" # libacl needs libattr libdir="$root/lib" - diff --git a/package/base/attr/attr.desc b/package/base/attr/attr.desc index d4c8fab5b..353673d83 100644 --- a/package/base/attr/attr.desc +++ b/package/base/attr/attr.desc @@ -46,8 +46,8 @@ [L] GPL [S] Stable -[V] 2.4.1 +[V] 2.4.19 [P] X -?---5---9 140.500 -[D] 965983937 attr-2.4.1.src.tar.gz http://acl.bestbits.at/current/tar/ +[D] 2820351673 attr-2.4.19.src.tar.gz ftp://oss.sgi.com/projects/xfs/cmd_tars/ diff --git a/package/base/attr/autoconf.patch b/package/base/attr/autoconf.patch deleted file mode 100644 index 12e0191dd..000000000 --- a/package/base/attr/autoconf.patch +++ /dev/null @@ -1,107 +0,0 @@ -# --- ROCK-COPYRIGHT-NOTE-BEGIN --- -# -# This copyright note is auto-generated by ./scripts/Create-CopyPatch. -# Please add additional copyright information _after_ the line containing -# the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by -# the ./scripts/Create-CopyPatch script. Do not edit this copyright text! -# -# ROCK Linux: rock-src/package/base/attr/autoconf.patch -# ROCK Linux is Copyright (C) 1998 - 2004 Clifford Wolf -# -# This patch file is dual-licensed. It is available under the license the -# patched project is licensed under, as long as it is an OpenSource license -# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms -# of the GNU General Public License as published by the Free Software -# Foundation; either version 2 of the License, or (at your option) any later -# version. -# -# --- ROCK-COPYRIGHT-NOTE-END --- - ---- ./configure.in.orig 2003-04-07 12:54:29.000000000 -0600 -+++ ./configure.in 2003-04-07 12:56:50.000000000 -0600 -@@ -58,37 +58,37 @@ - AC_SUBST(pkg_group) - - dnl check if user wants their own C compiler --test -z "$CC" && AC_PROG_CC -+AC_PROG_CC - cc=$CC - AC_SUBST(cc) - - dnl check if users wants their own make --test -z "$MAKE" && AC_PATH_PROG(MAKE, make, /usr/bin/make) -+AC_PATH_PROG(MAKE, make, /usr/bin/make) - make=$MAKE - AC_SUBST(make) - - dnl check if users wants their own linker --test -z "$LD" && AC_PATH_PROG(LD, ld, /usr/bin/ld) -+AC_PATH_PROG(LD, ld, /usr/bin/ld) - ld=$LD - AC_SUBST(ld) - - dnl check if the tar program is available --test -z "$TAR" && AC_PATH_PROG(TAR, tar) -+AC_PATH_PROG(TAR, tar) - tar=$TAR - AC_SUBST(tar) - - dnl check if the gzip program is available --test -z "$ZIP" && AC_PATH_PROG(ZIP, gzip, /bin/gzip) -+AC_PATH_PROG(ZIP, gzip, /bin/gzip) - zip=$ZIP - AC_SUBST(zip) - - dnl check if the makedepend program is available --test -z "$MAKEDEPEND" && AC_PATH_PROG(MAKEDEPEND, makedepend, /bin/true) -+AC_PATH_PROG(MAKEDEPEND, makedepend, /bin/true) - makedepend=$MAKEDEPEND - AC_SUBST(makedepend) - - dnl check if the rpm program is available --test -z "$RPM" && AC_PATH_PROG(RPM, rpm, /bin/rpm) -+AC_PATH_PROG(RPM, rpm, /bin/rpm) - rpm=$RPM - AC_SUBST(rpm) - -@@ -114,18 +114,18 @@ - AC_PROG_LN_S - - dnl check if user wants their own awk, sed and echo --test -z "$AWK" && AC_PATH_PROG(AWK, awk, /bin/awk) -+AC_PATH_PROG(AWK, awk, /bin/awk) - awk=$AWK - AC_SUBST(awk) --test -z "$SED" && AC_PATH_PROG(SED, sed, /bin/sed) -+AC_PATH_PROG(SED, sed, /bin/sed) - sed=$SED - AC_SUBST(sed) --test -z "$ECHO" && AC_PATH_PROG(ECHO, echo, /bin/echo) -+AC_PATH_PROG(ECHO, echo, /bin/echo) - echo=$ECHO - AC_SUBST(echo) - - dnl ensure libtool is installed --test -z "$LIBTOOL" && AC_PATH_PROG(LIBTOOL, libtool,,/usr/bin) -+AC_PATH_PROG(LIBTOOL, libtool,,/usr/bin) - if test "$LIBTOOL" = ""; then - echo - echo 'FATAL ERROR: libtool does not seem to be installed.' -@@ -150,14 +150,14 @@ - - dnl check if the msgfmt, msgmerge, xgettext programs are available - if test "$enable_gettext" = yes; then -- test -z "$MSGFMT" && AC_CHECK_PROG(MSGFMT, msgfmt, /usr/bin/msgfmt) -+ AC_CHECK_PROG(MSGFMT, msgfmt, /usr/bin/msgfmt) - msgfmt=$MSGFMT - AC_SUBST(msgfmt) -- test -z "$MSGMERGE" && AC_CHECK_PROG(MSGMERGE, msgmerge, /usr/bin/msgmerge) -+ AC_CHECK_PROG(MSGMERGE, msgmerge, /usr/bin/msgmerge) - msgmerge=$MSGMERGE - AC_SUBST(msgmerge) - -- test -z "$XGETTEXT" && AC_CHECK_PROG(XGETTEXT, xgettext, /usr/bin/xgettext) -+ AC_CHECK_PROG(XGETTEXT, xgettext, /usr/bin/xgettext) - xgettext=$XGETTEXT - AC_SUBST(xgettext) -