summaryrefslogtreecommitdiff
path: root/archivers/dpkg
diff options
context:
space:
mode:
authorFrank J. Laszlo <laszlof@FreeBSD.org>2006-11-07 16:26:45 +0000
committerFrank J. Laszlo <laszlof@FreeBSD.org>2006-11-07 16:26:45 +0000
commit720d1b97be54708f3565081f7474eac2ca9c2be5 (patch)
treedd1fd48c2ae0ffdbbcbdb00f8f7a4b980fc2b4e1 /archivers/dpkg
parent- Mark broken on 4.x (diff)
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)
Notes
Notes: svn path=/head/; revision=176719
Diffstat (limited to 'archivers/dpkg')
-rw-r--r--archivers/dpkg/Makefile4
-rw-r--r--archivers/dpkg/files/patch-main_Makefile.in10
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*$$/' >$@