gsrc-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gsrc-commit] /srv/bzr/gsrc/trunk r1316: add new_project script


From: Brandon Invergo
Subject: [Gsrc-commit] /srv/bzr/gsrc/trunk r1316: add new_project script
Date: Tue, 04 Dec 2012 22:14:19 +0100
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 1316
committer: Brandon Invergo <address@hidden>
branch nick: trunk
timestamp: Tue 2012-12-04 22:14:19 +0100
message:
  add new_project script
added:
  util/new_project.sh
  util/templates/
  util/templates/Makefile.m4
  util/templates/config.mk.m4
modified:
  gnome/nautilus/Makefile
=== modified file 'gnome/nautilus/Makefile'
--- a/gnome/nautilus/Makefile   2012-12-01 16:34:26 +0000
+++ b/gnome/nautilus/Makefile   2012-12-04 21:14:19 +0000
@@ -16,7 +16,7 @@
 SIGFILES = 
 
 BUILDDEPS = 
-LIBDEPS = gtk glib gnome-desktop
+LIBDEPS = gtk glib gnome-desktop dconf
 
 ######################################################################
 

=== added file 'util/new_project.sh'
--- a/util/new_project.sh       1970-01-01 00:00:00 +0000
+++ b/util/new_project.sh       2012-12-04 21:14:19 +0000
@@ -0,0 +1,5 @@
+#!/bin/bash
+
+mkdir ../gnu/${1}
+m4 -D__NAME=${1} -D__VERSION=${2} templates/Makefile.m4 > ../gnu/${1}/Makefile
+m4 -D__NAME=${1} templates/config.mk.m4 > ../gnu/${1}/config.mk

=== added directory 'util/templates'
=== added file 'util/templates/Makefile.m4'
--- a/util/templates/Makefile.m4        1970-01-01 00:00:00 +0000
+++ b/util/templates/Makefile.m4        2012-12-04 21:14:19 +0000
@@ -0,0 +1,19 @@
+GARNAME = __NAME
+GARVERSION = __VERSION
+HOME_URL = http://www.gnu.org/software/__NAME/
+DESCRIPTION = 
+
+######################################################################
+
+MASTER_SITES = $(MASTER_GNU)
+MASTER_SUBDIR = $(GARNAME)/
+DISTFILES = $(DISTNAME).tar.gz
+SIGFILES = $(DISTNAME).tar.gz.sig
+
+BUILDDEPS =
+LIBDEPS =
+
+######################################################################
+
+include ../../gar.lib/auto.mk
+include config.mk

=== added file 'util/templates/config.mk.m4'
--- a/util/templates/config.mk.m4       1970-01-01 00:00:00 +0000
+++ b/util/templates/config.mk.m4       2012-12-04 21:14:19 +0000
@@ -0,0 +1,5 @@
+changecom(`%')dnl
+## Configuration options for __NAME ##
+
+CONFIGURE_OPTS ?= 
+BUILD_OPTS ?=


reply via email to

[Prev in Thread] Current Thread [Next in Thread]