You are not logged in.
Hello ARch Comunity!!
Someone might offer us the gimp 2.6.7?
it went out in August and it was solving several bugs, between others, is that Gimp 2.6.6, guards badly the jpg to low resolution (those that I use to put in the web).
Also it would be interesting to have the new Ufraw that adds some new things, as a bar of contrast, the new lensfun, lightness adjustmens by hue, color smoothing command line option, etc
Many thank's in advance
Greetings
Warper4
Offline
I usually start from the official PKGBUILD of the last version and see how far I get. With an application like the gimp I'd assume there is a good reason why it's not in extra, but it's worth a try - you can always downgrade later.
Good ideas do not need lots of lies told about them in order to gain public acceptance.
Offline
you could try doing yourself and if you have question about this process then the forum is the right place to ask.
first read about abs: http://wiki.archlinux.org/index.php/ABS
Give what you have. To someone, it may be better than you dare to think.
Offline
Yes, this evening I have tried of doing it, modifying the BUILDPKG of 2.6.6, but it was following the bug with jpg like version 2.6.6, but the version
in about of was 2.6.7 (and the file source was 2.6.7)
On the other hand, compiling normally, with .configure that it comes in the source package, and installing in/usr/local/ it was saving ok the jpg, and I do not understand it, the compilation should be equal
Sorry my bad engllish
Grretings
Offline
i am still getting used to "BUILDPKG" . for gimp i just did a std build ( like i have fro the last 7 years )
for "Ufraw " use the normal build for a plugin -- make calls "gimptool-2.0.1" and builds it .
Celestia maps
http://celestiamotherlode.net/catalog/s … ator_id=10
Offline
Thank's JohnVV:
Finally I did a standard build for Gimp 2.6.7 and ufraw from an modified PKGBUILD from Ufraw 0.15-4
My PKGBUILD for Ufraw 0.16:
pkgname=gimp-ufraw
_srcname=ufraw
pkgver=0.16
pkgrel=0
pkgdesc="standalone or gimp plugin converter for raw files"
url="http://ufraw.sourceforge.net/"
arch=(i686 x86_64)
license=(GPL2)
depends=('lcms' 'gtk2' 'libexif' 'exiv2>=0.18')
makedepends=('gimp' 'pkgconfig')
optdepends=('gimp: to use the gimp import plugin for raw images' \
'cinepaint: to use the cinepaint import plugin for raw images')
source=(http://downloads.sourceforge.net/sourceforge/${_srcname}/${_srcname}-${pkgver}.tar.gz)
md5sums=('61e100e42f17e3a7fcfae64506eebd14')
build() {
cd ${srcdir}/${_srcname}-${pkgver}
./configure --prefix=/usr \
--enable-extras --enable-hotpixels --enable-contrast \
--enable-mime \
--enable-openmp \
--with-libexif --with-exiv2 || return 1
sed -i "s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/" Makefile || return 1
make || return 1
make DESTDIR=${pkgdir} install || return 1
rm -f ${pkgdir}/usr/bin/dcraw
}Offline