Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 121142 | Differences between
and this patch

Collapse All | Expand All

(-)PerlMagick/Makefile.am (-4 / +3 lines)
Lines 45-55 Link Here
45
	cd $(PERLMAGICK) && @PERL@ Makefile.PL $(PERL_MAKE_OPTIONS)
45
	cd $(PERLMAGICK) && @PERL@ Makefile.PL $(PERL_MAKE_OPTIONS)
46
46
47
install-exec-perl: $(PERLMAKEFILE)
47
install-exec-perl: $(PERLMAKEFILE)
48
	( cd $(PERLMAGICK) && $(MAKE) CC='@CC@' && \
48
	cd $(PERLMAGICK) && $(MAKE) CC='@CC@' install
49
	$(MAKE) CC='@CC@' install && \
50
	$(MAKE) clean && rm -f  Makefile.old )
51
49
52
all-perl:
50
all-perl: $(PERLMAKEFILE)
51
	cd $(PERLMAGICK) && $(MAKE) CC='@CC@'
53
52
54
uninstall-exec-perl: $(PERLMAKEFILE)
53
uninstall-exec-perl: $(PERLMAKEFILE)
55
	echo "Uninstall not supported for PerlMagick"
54
	echo "Uninstall not supported for PerlMagick"
(-)PerlMagick/Makefile.PL.in (-3 / +3 lines)
Lines 53-68 Link Here
53
   'CCFLAGS'     => "$Config{'ccflags'} @CFLAGS@",
53
   'CCFLAGS'     => "$Config{'ccflags'} @CFLAGS@",
54
54
55
   # Linker flags for building an executable
55
   # Linker flags for building an executable
56
   'LDFLAGS'    =>  "-L../magick/.libs -L@MAGICKLIBDIR@ $Config{'ldflags'}",
56
   'LDFLAGS'    =>  "-L../magick/.libs -lMagick $Config{'ldflags'}",
57
57
58
   # Linker flags for building a dynamically loadable module
58
   # Linker flags for building a dynamically loadable module
59
   'LDDLFLAGS'  => "-L../magick/.libs -L@MAGICKLIBDIR@ $Config{'lddlflags'}",
59
   'LDDLFLAGS'  => "-L../magick/.libs -lMagick $Config{'lddlflags'}",
60
60
61
   # Install PerlMagick binary into ImageMagick bin directory
61
   # Install PerlMagick binary into ImageMagick bin directory
62
   'INSTALLBIN'	=> '@BIN_DIR@',
62
   'INSTALLBIN'	=> '@BIN_DIR@',
63
63
64
   # Library specification
64
   # Library specification
65
   'LIBS'	=> ['-lMagick @MAGICK_DEP_LIBS@'],
65
   'LIBS'	=> [ '-L@MAGICKLIBDIR@ @LDFLAGS@ @MAGICK_DEP_LIBS@' ],
66
66
67
   # Perl binary name (if a Perl binary is built)
67
   # Perl binary name (if a Perl binary is built)
68
   'MAP_TARGET'	=> 'PerlMagick',
68
   'MAP_TARGET'	=> 'PerlMagick',

Return to bug 121142