summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJaka Kranjc2008-10-14 13:29:21 +0200
committerJaka Kranjc2008-10-14 13:29:21 +0200
commitba49c81f887f0513ec84f4b57434aeedee45d85b (patch)
treef1d3caa6360501991e61dc86f67f95b5a145b0a1
parent5fb04f175af947a0ea43aa2a1ae8eef6653f09a6 (diff)
cairo: added PS subdep
(cherry-picked from commit 8cbbb132200fc633daa9b78f9692ead504102a89)
-rw-r--r--x11-libs/cairo/HISTORY5
-rwxr-xr-xx11-libs/cairo/PRE_SUB_DEPENDS1
-rwxr-xr-xx11-libs/cairo/SUB_DEPENDS2
3 files changed, 7 insertions, 1 deletions
diff --git a/x11-libs/cairo/HISTORY b/x11-libs/cairo/HISTORY
index 26361dc6ea..2264b49adc 100644
--- a/x11-libs/cairo/HISTORY
+++ b/x11-libs/cairo/HISTORY
@@ -1,5 +1,8 @@
+2008-10-13 Vlad Glagolev <stealth@sourcemage.org>
+ * [PRE_]SUB_DEPENDS: added ps subdep for new gtk+2
+
2008-10-06 Arjan Bouter <abouter@sourcemage.org>
- * SUB_DEPENDS,PRE_SUB_DEPENDS: added XCB
+ * SUB_DEPENDS, PRE_SUB_DEPENDS: added XCB
2008-09-26 Vlad Glagolev <stealth@sourcemage.org>
* DETAILS: updated spell to 1.8.0
diff --git a/x11-libs/cairo/PRE_SUB_DEPENDS b/x11-libs/cairo/PRE_SUB_DEPENDS
index 5e303451f7..4aba94b65c 100755
--- a/x11-libs/cairo/PRE_SUB_DEPENDS
+++ b/x11-libs/cairo/PRE_SUB_DEPENDS
@@ -1,6 +1,7 @@
case $THIS_SUB_DEPENDS in
PDF) is_depends_enabled $SPELL poppler;;
XCB) is_depends_enabled $SPELL xcb-util;;
+ PS) is_depends_enabled $SPELL ghostscript;;
*) message "${PROBLEM_COLOR}bogus sub_depends: $SPELL $THIS_SUB_DEPENDS${DEFAULT_COLOR}"
return 1;;
esac
diff --git a/x11-libs/cairo/SUB_DEPENDS b/x11-libs/cairo/SUB_DEPENDS
index 31e8b0dc01..10e6792873 100755
--- a/x11-libs/cairo/SUB_DEPENDS
+++ b/x11-libs/cairo/SUB_DEPENDS
@@ -3,6 +3,8 @@ case $THIS_SUB_DEPENDS in
depends poppler "--enable-pdf";;
XCB) message "Cairo with XCB support requested, forcing xcb-util dependency" &&
depends xcb-util "--enable-xcb";;
+ PS) message "Cairo with PS support requested, forcing ghostscript dependency" &&
+ depends ghostscript "--enable-ps";;
*) message "${PROBLEM_COLOR}bogus sub_depends: $SPELL $THIS_SUB_DEPENDS${DEFAULT_COLOR}"
return 1;;
esac