summaryrefslogtreecommitdiff
path: root/textproc
diff options
context:
space:
mode:
authortonio <tonio>2010-03-12 10:30:04 +0000
committertonio <tonio>2010-03-12 10:30:04 +0000
commit96f05fea1db3f42311ecf4d5a1e1aada6b5d628b (patch)
tree998b1522d728cb645ef9671b817212466d349a8a /textproc
parent5a94baa48b6fb26ae9718643bc8197b26d0ba5eb (diff)
downloadpkgsrc-96f05fea1db3f42311ecf4d5a1e1aada6b5d628b.tar.gz
Enable destdir, and some cleanup
Diffstat (limited to 'textproc')
-rw-r--r--textproc/rubber/Makefile6
-rw-r--r--textproc/rubber/PLIST4
-rw-r--r--textproc/rubber/distinfo5
-rw-r--r--textproc/rubber/patches/patch-ac4
-rw-r--r--textproc/rubber/patches/patch-ad16
5 files changed, 27 insertions, 8 deletions
diff --git a/textproc/rubber/Makefile b/textproc/rubber/Makefile
index a4e00127df8..75ffbd1410d 100644
--- a/textproc/rubber/Makefile
+++ b/textproc/rubber/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.21 2009/07/13 18:37:55 tonio Exp $
+# $NetBSD: Makefile,v 1.22 2010/03/12 10:30:04 tonio Exp $
#
DISTNAME= rubber-1.1
@@ -10,10 +10,12 @@ MAINTAINER= tonio@NetBSD.org
HOMEPAGE= http://www.pps.jussieu.fr/~beffara/soft/rubber/
COMMENT= Automated system for building LaTeX documents
+PKG_DESTDIR_SUPPORT= user-destdir
+
USE_TOOLS+= makeinfo
USE_PKGLOCALEDIR= yes
HAS_CONFIGURE= yes
-INFO_FILES= # PLIST
+INFO_FILES= yes
TEXINFO_REQD= 4.6
TEX_ACCEPTED= teTeX3
diff --git a/textproc/rubber/PLIST b/textproc/rubber/PLIST
index e0e45ff56d5..48fe990ec25 100644
--- a/textproc/rubber/PLIST
+++ b/textproc/rubber/PLIST
@@ -1,9 +1,8 @@
-@comment $NetBSD: PLIST,v 1.7 2009/07/13 18:37:55 tonio Exp $
+@comment $NetBSD: PLIST,v 1.8 2010/03/12 10:30:04 tonio Exp $
bin/rubber
bin/rubber-info
bin/rubber-pipe
info/rubber.info
-info/rubber.info
man/fr/man1/rubber-info.1
man/fr/man1/rubber-pipe.1
man/fr/man1/rubber.1
@@ -92,6 +91,5 @@ share/rubber/rubber/rules/shell.pyc
share/rubber/rubber/util.py
share/rubber/rubber/util.pyc
share/rubber/rubber/version.py
-share/rubber/rubber/version.py
share/rubber/rubber/version.pyc
share/rubber/rules.ini
diff --git a/textproc/rubber/distinfo b/textproc/rubber/distinfo
index 6f813a7d22c..2d3176a14a2 100644
--- a/textproc/rubber/distinfo
+++ b/textproc/rubber/distinfo
@@ -1,8 +1,9 @@
-$NetBSD: distinfo,v 1.6 2006/06/01 09:09:52 tonio Exp $
+$NetBSD: distinfo,v 1.7 2010/03/12 10:30:04 tonio Exp $
SHA1 (rubber-1.1.tar.gz) = c1693bb6f4534a72479a40cda68212879a761fea
RMD160 (rubber-1.1.tar.gz) = 7c44106210c64ab51b0b894ef03c3672c2fe298f
Size (rubber-1.1.tar.gz) = 83795 bytes
SHA1 (patch-aa) = 13063478ceac61e64375773084e824f5b4471f2d
SHA1 (patch-ab) = c08d45cd49a93a269f0ba80f5fd46d1a105c158d
-SHA1 (patch-ac) = 956f3b6b1cb78fa0e497e868aa1ca0ef810abd24
+SHA1 (patch-ac) = e3db85a2bd2ef942322eaf1a45497c5a0f9bb1d8
+SHA1 (patch-ad) = 81f82de45e6be75ae62c4972c6b4d2392882239c
diff --git a/textproc/rubber/patches/patch-ac b/textproc/rubber/patches/patch-ac
index 5b9f8dabec4..953f871bc7e 100644
--- a/textproc/rubber/patches/patch-ac
+++ b/textproc/rubber/patches/patch-ac
@@ -1,4 +1,6 @@
-$NetBSD: patch-ac,v 1.1 2006/06/01 09:09:52 tonio Exp $
+$NetBSD: patch-ac,v 1.2 2010/03/12 10:30:04 tonio Exp $
+
+Add support for import
--- /dev/null 2006-06-01 10:55:34.000000000 +0200
+++ src/rules/latex/import.py
diff --git a/textproc/rubber/patches/patch-ad b/textproc/rubber/patches/patch-ad
new file mode 100644
index 00000000000..0d4c8412d54
--- /dev/null
+++ b/textproc/rubber/patches/patch-ad
@@ -0,0 +1,16 @@
+$NetBSD: patch-ad,v 1.1 2010/03/12 10:30:04 tonio Exp $
+
+Enable destdir
+
+--- setup.py.orig 2006-03-17 13:51:18.000000000 +0000
++++ setup.py
+@@ -182,7 +182,8 @@ It will be installed in the following di
+ sys.argv = sys.argv + [
+ "--prefix", sub["prefix"],
+ "--install-lib", expand_vars(sub, sub["moddir"]),
+- "--install-scripts", expand_vars(sub, sub["bindir"])]
++ "--install-scripts", expand_vars(sub, sub["bindir"]),
++ "--root", os.environ.get("DESTDIR","/")]
+ sys.argv[1] = "install"
+ do_setup()
+ else: