diff options
author | laszlof <laszlof@FreeBSD.org> | 2006-11-08 00:26:45 +0800 |
---|---|---|
committer | laszlof <laszlof@FreeBSD.org> | 2006-11-08 00:26:45 +0800 |
commit | f832adec9bc59ad74981198ec1898a9429249112 (patch) | |
tree | 148ec4941248d32e1663f246b76cea75cc049966 /archivers | |
parent | e807ac8d06bf61812617d5c262fb2fae9e8c3825 (diff) | |
download | freebsd-ports-gnome-f832adec9bc59ad74981198ec1898a9429249112.tar.gz freebsd-ports-gnome-f832adec9bc59ad74981198ec1898a9429249112.tar.zst freebsd-ports-gnome-f832adec9bc59ad74981198ec1898a9429249112.zip |
Fix build issues on pointyhat by adding a patch to replace multiline RE with
a single line. Remove BROKEN status.
PR: ports/104343
Submitted by: Frank J. Laszlo (laszlof)
Approved by: flz (mentor)
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/dpkg/Makefile | 4 | ||||
-rw-r--r-- | archivers/dpkg/files/patch-main_Makefile.in | 10 |
2 files changed, 10 insertions, 4 deletions
diff --git a/archivers/dpkg/Makefile b/archivers/dpkg/Makefile index b1fc5f605b1a..424fef260b63 100644 --- a/archivers/dpkg/Makefile +++ b/archivers/dpkg/Makefile @@ -15,10 +15,6 @@ DISTNAME= dpkg_${PORTVERSION} MAINTAINER= perky@FreeBSD.org COMMENT= Package maintenance system for Debian -BROKEN= fails to install -DEPRECATED= ${BROKEN} -EXPIRATION_DATE=2006-12-01 - GNU_CONFIGURE= yes USE_GMAKE= yes USE_ICONV= yes diff --git a/archivers/dpkg/files/patch-main_Makefile.in b/archivers/dpkg/files/patch-main_Makefile.in new file mode 100644 index 000000000000..8d58d6714a67 --- /dev/null +++ b/archivers/dpkg/files/patch-main_Makefile.in @@ -0,0 +1,10 @@ +--- main/Makefile.in.orig Thu Oct 12 07:16:21 2006 ++++ main/Makefile.in Thu Oct 12 07:16:38 2006 +@@ -72,6 +72,4 @@ + + archtable.h: $(top_srcdir)/archtable + expand $< | \ +- perl -ne 'print " { \"$$1\",$$2\"$$3\",$$4\"$$5\" },\n" \ +- if m/^(?!\s*#)\s*(\S+)(\s+)(\S+)(\s+)(\S+)\s*$$/' \ +- >$@ ++ perl -ne 'print " { \"$$1\",$$2\"$$3\",$$4\"$$5\" },\n" if m/^(?!\s*#)\s*(\S+)(\s+)(\S+)(\s+)(\S+)\s*$$/' >$@ |