diff options
author | Peter Volkov <pva@gentoo.org> | 2008-10-14 16:55:49 +0000 |
---|---|---|
committer | Peter Volkov <pva@gentoo.org> | 2008-10-14 16:55:49 +0000 |
commit | 84dcc06c53f6948d043c0d5b7d791a1cb3423d40 (patch) | |
tree | 747b8e9c20d0c76fa7caae662b5ffb93207ae834 /app-misc/detox/files | |
parent | Adjust dependency on ffmpeg to be only _p20080326 (diff) | |
download | gentoo-2-84dcc06c53f6948d043c0d5b7d791a1cb3423d40.tar.gz gentoo-2-84dcc06c53f6948d043c0d5b7d791a1cb3423d40.tar.bz2 gentoo-2-84dcc06c53f6948d043c0d5b7d791a1cb3423d40.zip |
Version bump, bug #241328, thank pavel sanda for report.
(Portage version: 2.2_rc11/cvs/Linux 2.6.26-openvz.git-777e816 i686)
Diffstat (limited to 'app-misc/detox/files')
-rw-r--r-- | app-misc/detox/files/detox-1.2.0-LDFLAGS.patch | 18 | ||||
-rw-r--r-- | app-misc/detox/files/detox-1.2.0-parallel.patch | 29 |
2 files changed, 47 insertions, 0 deletions
diff --git a/app-misc/detox/files/detox-1.2.0-LDFLAGS.patch b/app-misc/detox/files/detox-1.2.0-LDFLAGS.patch new file mode 100644 index 000000000000..3f0daa088010 --- /dev/null +++ b/app-misc/detox/files/detox-1.2.0-LDFLAGS.patch @@ -0,0 +1,18 @@ +https://sourceforge.net/tracker/index.php?func=detail&aid=2166388&group_id=101612&atid=630105 + +--- Makefile.in 2008-10-14 16:37:22 +0000 ++++ Makefile.in 2008-10-14 16:38:17 +0000 +@@ -70,10 +70,10 @@ + # + + detox: ${detoxOBJS} +- ${CC} -o detox ${detoxOBJS} ${L_OPT} ++ ${CC} ${LDFLAGS} -o detox ${detoxOBJS} ${L_OPT} + + inline-detox: ${inline-detoxOBJS} +- ${CC} -o inline-detox ${inline-detoxOBJS} ${L_OPT} ++ ${CC} ${LDFLAGS} -o inline-detox ${inline-detoxOBJS} ${L_OPT} + + # + # Special Source Compiles + diff --git a/app-misc/detox/files/detox-1.2.0-parallel.patch b/app-misc/detox/files/detox-1.2.0-parallel.patch new file mode 100644 index 000000000000..73abd73d61b3 --- /dev/null +++ b/app-misc/detox/files/detox-1.2.0-parallel.patch @@ -0,0 +1,29 @@ +https://sourceforge.net/tracker/index.php?func=detail&aid=2166387&group_id=101612&atid=630105 + +--- Makefile.in 2008-10-14 16:39:34 +0000 ++++ Makefile.in 2008-10-14 16:38:51 +0000 +@@ -131,7 +131,7 @@ + ${INSTALL} -m 644 detox.1 ${DESTDIR}${mandir}/man1 + ${INSTALL} -m 644 detoxrc.5 detox.tbl.5 ${DESTDIR}${mandir}/man5 + +-install-safe-config: ++install-safe-config: install-base + @if [ ! -f ${DESTDIR}${sysconfdir}/detoxrc ]; then \ + ${INSTALL} -m 644 detoxrc ${DESTDIR}${sysconfdir}; \ + else \ +@@ -148,12 +148,12 @@ + echo "${DESTDIR}${datadir}/detox/unicode.tbl exists, skipping"; \ + fi + +-install-unsafe-config: ++install-unsafe-config: install-base + ${INSTALL} -m 644 detoxrc ${DESTDIR}${sysconfdir} + ${INSTALL} -m 644 iso8859_1.tbl ${DESTDIR}${datadir}/detox + ${INSTALL} -m 644 unicode.tbl ${DESTDIR}${datadir}/detox + +-install-sample-config: ++install-sample-config: install-base + ${INSTALL} -m 644 detoxrc ${DESTDIR}${sysconfdir}/detoxrc.sample + ${INSTALL} -m 644 iso8859_1.tbl ${DESTDIR}${datadir}/detox/iso8859_1.tbl.sample + ${INSTALL} -m 644 unicode.tbl ${DESTDIR}${datadir}/detox/unicode.tbl.sample + |