diff options
author | Peter Volkov <pva@gentoo.org> | 2011-09-06 19:34:32 +0000 |
---|---|---|
committer | Peter Volkov <pva@gentoo.org> | 2011-09-06 19:34:32 +0000 |
commit | e17c0b3f2b4a9cee65896e9a841886a5015cb914 (patch) | |
tree | 396c7101e624f919a0c03aadb9ce1ca6f13029bd /media-gfx/dcraw/files | |
parent | Bump, thanks to Hanno for reminding me (diff) | |
download | gentoo-2-e17c0b3f2b4a9cee65896e9a841886a5015cb914.tar.gz gentoo-2-e17c0b3f2b4a9cee65896e9a841886a5015cb914.tar.bz2 gentoo-2-e17c0b3f2b4a9cee65896e9a841886a5015cb914.zip |
Version bump. Drop old. Remove unused script.
(Portage version: 2.1.10.11/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx/dcraw/files')
-rwxr-xr-x | media-gfx/dcraw/files/update-dcparse-and-rawphoto-tarballs.sh | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/media-gfx/dcraw/files/update-dcparse-and-rawphoto-tarballs.sh b/media-gfx/dcraw/files/update-dcparse-and-rawphoto-tarballs.sh deleted file mode 100755 index 42b687962b36..000000000000 --- a/media-gfx/dcraw/files/update-dcparse-and-rawphoto-tarballs.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash - -# update parse and rawphoto tarballs - -echo "Updating parse tarbal..." -tmpdir=$(mktemp -d) -cd ${tmpdir} -for file in parse.c rawphoto.c; do - wget "http://www.cybercom.net/~dcoffin/dcraw/${file}" && \ - mkdir dcraw && \ - mv ${file} dcraw && \ - tar jcvf ${file/.c}-$(awk '/Revision:/{print $2}' dcraw/${file}).tar.bz2 dcraw - if [[ $? != 0 ]]; then - echo "Unable to update ${file}." - exit 1 - fi - cd ${tmpdir} && rm -r dcraw -done - -echo "Grab tarballs at ${tmpdir} move into $(portageq distdir) and update ebuild." |