* [gentoo-dev] imagemagick forces freetype to be installed
@ 2003-05-10 12:19 Nick Brown
2003-05-10 22:29 ` foser
2003-05-11 2:09 ` [gentoo-dev] " Paul
0 siblings, 2 replies; 4+ messages in thread
From: Nick Brown @ 2003-05-10 12:19 UTC (permalink / raw
To: gentoo-dev
If I do;
USE="-X -cups -truetype" emerge -p imagemagick
it still insists on installing freetype!
The below is from the imagemagick .ebuild.
The depend section has 2 lines that specify freetype.
The first unconditionally, and the second conditional on the truetype
USE flag. As can be seen in the compile section if you don't specify
truetype, it turns of support for it.
How do I install imagemagick without installing freetype?
or is the .ebuild broken?
thanks,
Nick
DEPEND="media-libs/jbigkit
>=sys-apps/bzip2-1
sys-libs/zlib
>=media-libs/freetype-2.0
X? ( virtual/x11
>=app-text/dgs-0.5.9.1 )
cups? ( >=app-text/ghostscript-6.50 )
jpeg? ( >=media-libs/jpeg-6b )
lcms? ( >=media-libs/lcms-1.06 )
mpeg? ( media-video/mpeg2vidcodec )
png? ( media-libs/libpng )
tiff? ( >=media-libs/tiff-3.5.5 )
xml2? ( >=dev-libs/libxml2-2.4.10 )
truetype? ( =media-libs/freetype-2* )"
src_compile() {
elibtoolize
local myconf=""
use X || myconf="${myconf} --with-x=no"
use cups || myconf="${myconf} --without-gslib"
use jpeg || myconf="${myconf} --without-jpeg --without-jp2"
use lcms || myconf="${myconf} --without-lcms"
use mpeg || myconf="${myconf} --without-mpeg2"
use tiff || myconf="${myconf} --without-tiff"
use xml2 || myconf="${myconf} --without-xml"
use truetype || myconf="${myconf} --without-ttf"
--
gentoo-dev@gentoo.org mailing list
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-dev] Imagemagick forces freetype to be installed
@ 2003-05-10 14:31 Nicholas Brown
0 siblings, 0 replies; 4+ messages in thread
From: Nicholas Brown @ 2003-05-10 14:31 UTC (permalink / raw
To: gentoo-dev
If I do;
USE="-X -cups -truetype -mpeg" emerge -p imagemagick
These are the packages that I would merge, in order:
Calculating dependencies ...done!
[ebuild N ] media-libs/jpeg-6b-r3
[ebuild N ] dev-libs/libxml2-2.5.6
[ebuild N ] media-libs/jbigkit-1.4
[ebuild N ] media-libs/libpng-1.2.5-r4
[ebuild N ] media-libs/freetype-2.1.4
[ebuild N ] media-gfx/imagemagick-5.5.6
it still insists on installing freetype!
The below is from the imagemagick .ebuild.
The depend section has 2 lines that specify freetype.
The first unconditionally, and the second conditional on the truetype
USE flag. As can be seen in the compile section if you don't specify
truetype, it turns off support for it.
How do I install imagemagick without installing freetype?
or is the .ebuild broken?
thanks,
Nick
DEPEND="media-libs/jbigkit
>=sys-apps/bzip2-1
sys-libs/zlib
>=media-libs/freetype-2.0
X? ( virtual/x11
>=app-text/dgs-0.5.9.1 )
cups? ( >=app-text/ghostscript-6.50 )
jpeg? ( >=media-libs/jpeg-6b )
lcms? ( >=media-libs/lcms-1.06 )
mpeg? ( media-video/mpeg2vidcodec )
png? ( media-libs/libpng )
tiff? ( >=media-libs/tiff-3.5.5 )
xml2? ( >=dev-libs/libxml2-2.4.10 )
truetype? ( =media-libs/freetype-2* )"
src_compile() {
elibtoolize
local myconf=""
use X || myconf="${myconf} --with-x=no"
use cups || myconf="${myconf} --without-gslib"
use jpeg || myconf="${myconf} --without-jpeg --without-jp2"
use lcms || myconf="${myconf} --without-lcms"
use mpeg || myconf="${myconf} --without-mpeg2"
use tiff || myconf="${myconf} --without-tiff"
use xml2 || myconf="${myconf} --without-xml"
use truetype || myconf="${myconf} --without-ttf"
--
gentoo-dev@gentoo.org mailing list
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [gentoo-dev] imagemagick forces freetype to be installed
2003-05-10 12:19 [gentoo-dev] imagemagick forces freetype to be installed Nick Brown
@ 2003-05-10 22:29 ` foser
2003-05-11 2:09 ` [gentoo-dev] " Paul
1 sibling, 0 replies; 4+ messages in thread
From: foser @ 2003-05-10 22:29 UTC (permalink / raw
To: gentoo-dev
This is not the right place, please file a bugreport. It looks like the
ebuild is incorrect, but i can't say for certain without looking into
it.
- foser
On Sat, 2003-05-10 at 14:19, Nick Brown wrote:
> If I do;
> USE="-X -cups -truetype" emerge -p imagemagick
> it still insists on installing freetype!
>
> The below is from the imagemagick .ebuild.
> The depend section has 2 lines that specify freetype.
> The first unconditionally, and the second conditional on the truetype
> USE flag. As can be seen in the compile section if you don't specify
> truetype, it turns of support for it.
>
> How do I install imagemagick without installing freetype?
> or is the .ebuild broken?
>
> thanks,
> Nick
>
>
> DEPEND="media-libs/jbigkit
> >=sys-apps/bzip2-1
> sys-libs/zlib
> >=media-libs/freetype-2.0
> X? ( virtual/x11
> >=app-text/dgs-0.5.9.1 )
> cups? ( >=app-text/ghostscript-6.50 )
> jpeg? ( >=media-libs/jpeg-6b )
> lcms? ( >=media-libs/lcms-1.06 )
> mpeg? ( media-video/mpeg2vidcodec )
> png? ( media-libs/libpng )
> tiff? ( >=media-libs/tiff-3.5.5 )
> xml2? ( >=dev-libs/libxml2-2.4.10 )
> truetype? ( =media-libs/freetype-2* )"
>
> src_compile() {
> elibtoolize
>
> local myconf=""
> use X || myconf="${myconf} --with-x=no"
> use cups || myconf="${myconf} --without-gslib"
> use jpeg || myconf="${myconf} --without-jpeg --without-jp2"
> use lcms || myconf="${myconf} --without-lcms"
> use mpeg || myconf="${myconf} --without-mpeg2"
> use tiff || myconf="${myconf} --without-tiff"
> use xml2 || myconf="${myconf} --without-xml"
> use truetype || myconf="${myconf} --without-ttf"
>
>
>
> --
> gentoo-dev@gentoo.org mailing list
>
--
gentoo-dev@gentoo.org mailing list
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-dev] Re: imagemagick forces freetype to be installed
2003-05-10 12:19 [gentoo-dev] imagemagick forces freetype to be installed Nick Brown
2003-05-10 22:29 ` foser
@ 2003-05-11 2:09 ` Paul
1 sibling, 0 replies; 4+ messages in thread
From: Paul @ 2003-05-11 2:09 UTC (permalink / raw
To: Nick Brown; +Cc: gentoo-dev
Nick Brown <nicbrown@cisco.com>, on Sat May 10, 2003 [01:19:05 PM] said:
> If I do;
> USE="-X -cups -truetype" emerge -p imagemagick
> it still insists on installing freetype!
>
> The below is from the imagemagick .ebuild.
> The depend section has 2 lines that specify freetype.
> The first unconditionally, and the second conditional on the truetype
> USE flag. As can be seen in the compile section if you don't specify
> truetype, it turns of support for it.
>
> How do I install imagemagick without installing freetype?
> or is the .ebuild broken?
>
> thanks,
> Nick
>
>
> DEPEND="media-libs/jbigkit
> >=sys-apps/bzip2-1
> sys-libs/zlib
> >=media-libs/freetype-2.0
^^^^^^^^^^^^^^^^^^^^^^^^^^^
Zap this line, and see if things work right. Mention your
testing in the bug report.
Paul
set@pobox.com
--
gentoo-dev@gentoo.org mailing list
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2003-05-11 2:09 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-05-10 12:19 [gentoo-dev] imagemagick forces freetype to be installed Nick Brown
2003-05-10 22:29 ` foser
2003-05-11 2:09 ` [gentoo-dev] " Paul
-- strict thread matches above, loose matches on Subject: below --
2003-05-10 14:31 [gentoo-dev] Imagemagick " Nicholas Brown
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox