mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
c667da1d17
PR: ports/95183 Submitted by: Rod Taylor <ports@rbt.ca> (maintainer)
63 lines
1.4 KiB
Plaintext
63 lines
1.4 KiB
Plaintext
*** Makefile.orig Fri Mar 17 19:26:34 2006
|
|
--- Makefile Fri Mar 31 18:35:33 2006
|
|
***************
|
|
*** 19,25 ****
|
|
#
|
|
|
|
# Set the location of Perl.
|
|
! PERL = /usr/bin/perl
|
|
|
|
# Blank by default, but set to QUIET to ask essential questions only
|
|
INSTALL_VERBOSITY?= STANDARD
|
|
--- 19,25 ----
|
|
#
|
|
|
|
# Set the location of Perl.
|
|
! PERL = /usr/local/bin/perl
|
|
|
|
# Blank by default, but set to QUIET to ask essential questions only
|
|
INSTALL_VERBOSITY?= STANDARD
|
|
***************
|
|
*** 184,203 ****
|
|
|
|
lib :
|
|
-rm -f lib/Makefile
|
|
! cd lib; $(PERL) Makefile.PL; $(MAKE) install
|
|
|
|
bin :
|
|
-rm -f bin/Makefile
|
|
! cd bin; $(PERL) Makefile.PL; $(MAKE) install
|
|
|
|
files : config.db bconf/bricolage.conf
|
|
$(PERL) inst/files.pl
|
|
|
|
db : inst/db.pl postgres.db
|
|
! $(PERL) inst/db.pl
|
|
|
|
db_grant : inst/db.pl postgres.db
|
|
! $(PERL) inst/db_grant.pl
|
|
|
|
done : bconf/bricolage.conf db files bin lib cpan
|
|
$(PERL) inst/done.pl
|
|
--- 184,203 ----
|
|
|
|
lib :
|
|
-rm -f lib/Makefile
|
|
! cd lib; $(PERL) Makefile.PL; $(MAKE) all pure_install
|
|
|
|
bin :
|
|
-rm -f bin/Makefile
|
|
! cd bin; $(PERL) Makefile.PL; $(MAKE) all pure_install
|
|
|
|
files : config.db bconf/bricolage.conf
|
|
$(PERL) inst/files.pl
|
|
|
|
db : inst/db.pl postgres.db
|
|
! # $(PERL) inst/db.pl
|
|
|
|
db_grant : inst/db.pl postgres.db
|
|
! # $(PERL) inst/db_grant.pl
|
|
|
|
done : bconf/bricolage.conf db files bin lib cpan
|
|
$(PERL) inst/done.pl
|