summaryrefslogtreecommitdiffstats
path: root/devel
diff options
context:
space:
mode:
authorbland <bland@df743ca5-7f9a-e211-a948-0013205c9059>2003-10-17 17:19:48 +0800
committerbland <bland@df743ca5-7f9a-e211-a948-0013205c9059>2003-10-17 17:19:48 +0800
commit5407014b2a69fe9c3c354ffadb8ac1ee79af64d1 (patch)
treedfffe54e595c37283e42fe9c48506e7fb13b7186 /devel
parent2ade97904f5b82b3f8417d3fcbb67666a3cade29 (diff)
downloadmarcuscom-ports-5407014b2a69fe9c3c354ffadb8ac1ee79af64d1.tar
marcuscom-ports-5407014b2a69fe9c3c354ffadb8ac1ee79af64d1.tar.gz
marcuscom-ports-5407014b2a69fe9c3c354ffadb8ac1ee79af64d1.tar.bz2
marcuscom-ports-5407014b2a69fe9c3c354ffadb8ac1ee79af64d1.tar.lz
marcuscom-ports-5407014b2a69fe9c3c354ffadb8ac1ee79af64d1.tar.xz
marcuscom-ports-5407014b2a69fe9c3c354ffadb8ac1ee79af64d1.tar.zst
marcuscom-ports-5407014b2a69fe9c3c354ffadb8ac1ee79af64d1.zip
- Add Python dependency (required by "new project" plugin).
- Quick fix for crash in "new project" plugin. - Add gnome-common run-time dependency. Still a lot of things to do here. git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@1284 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel')
-rw-r--r--devel/scaffold/Makefile3
-rw-r--r--devel/scaffold/files/patch-plugins::gnome-project-types::scaffold-gnome-application-type.c11
2 files changed, 14 insertions, 0 deletions
diff --git a/devel/scaffold/Makefile b/devel/scaffold/Makefile
index 0da07fa33..02ff30dbc 100644
--- a/devel/scaffold/Makefile
+++ b/devel/scaffold/Makefile
@@ -7,6 +7,7 @@
PORTNAME= scaffold
PORTVERSION= 0.1.0
+PORTREVISION= 1
CATEGORIES= editors gnome
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= sources/${PORTNAME}/0.1
@@ -15,6 +16,7 @@ MAINTAINER= gnome@FreeBSD.org
COMMENT= GNOME-based development environment
LIB_DEPENDS= gbf-1.0:${PORTSDIR}/devel/gnomebuild
+RUN_DEPENDS= gnome-autogen.sh:${PORTSDIR}/devel/gnomecommon
USE_X_PREFIX= yes
GNU_CONFIGURE= yes
@@ -23,6 +25,7 @@ INSTALLS_SHLIB= yes
USE_GNOME= gnomehack gnomeprefix gnometarget libbonoboui
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LIBS="-L${LOCALBASE}/lib"
+USE_PYTHON= yes
MAN1= scaffold.1
diff --git a/devel/scaffold/files/patch-plugins::gnome-project-types::scaffold-gnome-application-type.c b/devel/scaffold/files/patch-plugins::gnome-project-types::scaffold-gnome-application-type.c
new file mode 100644
index 000000000..6e9adabcc
--- /dev/null
+++ b/devel/scaffold/files/patch-plugins::gnome-project-types::scaffold-gnome-application-type.c
@@ -0,0 +1,11 @@
+--- plugins/gnome-project-types/scaffold-gnome-application-type.c.orig Fri Oct 17 17:33:07 2003
++++ plugins/gnome-project-types/scaffold-gnome-application-type.c Fri Oct 17 17:33:41 2003
+@@ -79,7 +79,7 @@
+ g_message ("create_project_impl");
+
+ args = g_new0 (char *, 7);
+- args[0] = g_strdup ("/usr/bin/python");
++ args[0] = g_strdup ("/usr/local/bin/python");
+ args[1] = g_strdup ("scaffold-gnome-application-create.py");
+ args[2] = g_strdup (info->name);
+ args[3] = g_strdup (info->package);