diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-02-24 21:55:48 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-02-24 21:55:48 +0000 |
commit | 13b6a358055a98b4dcf08c413f575dd4e4772780 (patch) | |
tree | 79fcc81f5906d494c209b6fcf030ad011f31ab7d /media-tv | |
parent | old (diff) | |
download | historical-13b6a358055a98b4dcf08c413f575dd4e4772780.tar.gz historical-13b6a358055a98b4dcf08c413f575dd4e4772780.tar.bz2 historical-13b6a358055a98b4dcf08c413f575dd4e4772780.zip |
simplify autotool timestamp syncing
Package-Manager: portage-2.2_rc23/cvs/Linux x86_64
Diffstat (limited to 'media-tv')
-rw-r--r-- | media-tv/xbmc/Manifest | 8 | ||||
-rw-r--r-- | media-tv/xbmc/xbmc-9999.ebuild | 10 |
2 files changed, 7 insertions, 11 deletions
diff --git a/media-tv/xbmc/Manifest b/media-tv/xbmc/Manifest index 9fdfa219f78f..f3f340a58fa1 100644 --- a/media-tv/xbmc/Manifest +++ b/media-tv/xbmc/Manifest @@ -1,13 +1,13 @@ -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 -EBUILD xbmc-9999.ebuild 3598 RMD160 43474937a8178fa56115e2a515e59e8aded1e205 SHA1 5f7c0b732fd05818a613f666b302f9b99bf39e5f SHA256 f99f7fc8983a42c441e323af3c69b8049ba90218185a88568701b79d348548ea +EBUILD xbmc-9999.ebuild 3508 RMD160 2d42097257bb8e24405d57349026bcda486f3d11 SHA1 92e96af86acaa312bb9b1f8d76208d34eb5c96c5 SHA256 d68321b4ee498b0f35b7d1703ebc29d55ac5d83e43f50649973a666b8b30b181 MISC ChangeLog 1405 RMD160 d4e916fc8bd368d9fbb97f9a72ee6dc19e339a6a SHA1 fb08b3579b690e30940799018035ee311048c7ab SHA256 7472b90d7fa4e4f3cdf4d81152c33140af23244bd82b33fa643dfb29a2feb254 MISC metadata.xml 157 RMD160 a117cbaa8eca6ed6c13ba7d3cc7b6c27a67dd250 SHA1 4f8829c9a4a3ef73a376090fa9fd72c967097d50 SHA256 c4d85708ef3c9ffffe5ca42f32642b89f8a9475e00602e7986f7032027e292d8 -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.10 (GNU/Linux) -iEYEARECAAYFAkmjn3gACgkQn/5bYzqsSmF0uACfW6kYOpftqBd/8AZSFUHncbK+ -GwQAn3uRhdjMkcWYAASYUzYL1FYGfZL+ -=6JNJ +iEYEARECAAYFAkmkbOkACgkQn/5bYzqsSmFzCgCeJLO/zUX97iPmNpMTNs/MspYD +S3QAoK9Fjxqe/uT/Pdk3jAYLi7k7Qry5 +=/0wU -----END PGP SIGNATURE----- diff --git a/media-tv/xbmc/xbmc-9999.ebuild b/media-tv/xbmc/xbmc-9999.ebuild index 3e20fd6d8ed1..b82f22c8ba6b 100644 --- a/media-tv/xbmc/xbmc-9999.ebuild +++ b/media-tv/xbmc/xbmc-9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-tv/xbmc/xbmc-9999.ebuild,v 1.10 2009/02/24 07:18:36 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-tv/xbmc/xbmc-9999.ebuild,v 1.11 2009/02/24 21:55:48 vapier Exp $ # XXX: be nice to split out packages that come bundled and use the # system libraries ... @@ -73,6 +73,7 @@ src_unpack() { else unpack ${A} fi + cd "${S}" # Avoid help2man sed -i \ @@ -80,12 +81,7 @@ src_unpack() { xbmc/lib/libcdio/libcdio/src/Makefile.in # Tweak autotool timestamps to avoid regeneration - local dir - for dir in $(find "${S}" -name configure) ; do - cd "${dir%configure}" - find . -type f -print0 | xargs -0 touch -r configure - done - cd "${S}" + find . -type f -print0 | xargs -0 touch -r configure # Fix XBMC's final version string showing as "exported" # instead of the SVN revision number. Also cleanup flags. |