diff options
author | Cheng-Lung Sung <clsung@FreeBSD.org> | 2005-03-10 07:26:27 +0000 |
---|---|---|
committer | Cheng-Lung Sung <clsung@FreeBSD.org> | 2005-03-10 07:26:27 +0000 |
commit | 2d99755cf6f18fb331db8fa55e8c2b0aaa71fb2f (patch) | |
tree | 0a024aae3925d9b406bb08c2749205ac72a1f81f /chinese | |
parent | 766390c183c3580d0f0f3caecf0a350c40b20433 (diff) | |
download | ports-2d99755cf6f18fb331db8fa55e8c2b0aaa71fb2f.tar.gz ports-2d99755cf6f18fb331db8fa55e8c2b0aaa71fb2f.zip |
- fix BROKEN - incorrect pkg-plist, same reason as 78571
- get rid of perllocal.pod.
PR: 78575
Submitted by: clsung
Notes
Notes:
svn path=/head/; revision=130769
Diffstat (limited to 'chinese')
-rw-r--r-- | chinese/metalist/Makefile | 2 | ||||
-rw-r--r-- | chinese/metalist/files/patch-Makefile | 31 |
2 files changed, 29 insertions, 4 deletions
diff --git a/chinese/metalist/Makefile b/chinese/metalist/Makefile index d1628a249c63..7efb1f16bd28 100644 --- a/chinese/metalist/Makefile +++ b/chinese/metalist/Makefile @@ -27,8 +27,6 @@ BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/DBD/mysql.pm:${PORTSDIR}/databases/p5-D ${SITE_PERL}/Test/Simple.pm:${PORTSDIR}/devel/p5-Test-Simple RUN_DEPENDS= ${BUILD_DEPENDS} -BROKEN= Incorrect pkg-plist - .if defined(WITH_OURNET) CONFIGURE_ENV+= PERL_EXTUTILS_AUTOINSTALL=--default MAKE_ENV+= PERL_EXTUTILS_AUTOINSTALL=--default diff --git a/chinese/metalist/files/patch-Makefile b/chinese/metalist/files/patch-Makefile index 0542de396887..e6837b44570e 100644 --- a/chinese/metalist/files/patch-Makefile +++ b/chinese/metalist/files/patch-Makefile @@ -1,5 +1,32 @@ ---- Makefile.old Mon Mar 18 19:22:59 2002 -+++ Makefile Mon Mar 18 19:22:25 2002 +--- Makefile.orig Wed Jul 3 17:22:34 2002 ++++ Makefile Tue Mar 8 15:52:54 2005 +@@ -62,7 +62,7 @@ + slash: + @echo "=== INSTALLING SLASH MODULES ===" + @if [ ! "$(RPM)" ] ; then \ +- (cd Slash; $(PERL) Makefile.PL; make install UNINST=1); \ ++ (cd Slash; $(PERL) Makefile.PL; make all pure_install UNINST=1); \ + else \ + echo " - Performing an RPM build"; \ + (cd Slash; $(PERL) Makefile.PL INSTALLSITEARCH=$(INSTALLSITEARCH) INSTALLSITELIB=$(INSTALLSITELIB) INSTALLMAN3DIR=$(INSTALLMAN3DIR); make install UNINST=1); \ +@@ -77,7 +77,7 @@ + if [ -f Makefile.PL ]; then \ + if [ ! "$(RPM)" ] ; then \ + $(PERL) Makefile.PL; \ +- make install UNINST=1;\ ++ make all pure_install UNINST=1;\ + else \ + echo " - Performing an RPM build."; \ + $(PERL) Makefile.PL INSTALLSITEARCH=$(INSTALLSITEARCH) INSTALLSITELIB=$(INSTALLSITELIB) INSTALLMAN3DIR=$(INSTALLMAN3DIR); \ +@@ -86,7 +86,7 @@ + fi); \ + done) + +-all: install ++all: + + install: slash plugins + @@ -167,15 +167,11 @@ if [ -d $(INIT) ]; then \ init=$(INIT); \ |