------------------------------------------------------------
revno: 927
committer: Bassel Safadi <[email protected]>
branch nick: aikiframework
timestamp: Tue 2011-11-08 16:04:49 +0200
message:
  moved ezsql libs back to aiki source
removed:
  third-party/ezsql/
  third-party/ezsql/Makefile.am
renamed:
  third-party/ezsql/index.php => src/libs/database/index.php
  third-party/ezsql/mssql.php => src/libs/database/mssql.php
  third-party/ezsql/mysql.php => src/libs/database/mysql.php
  third-party/ezsql/oracle8_9.php => src/libs/database/oracle8_9.php
  third-party/ezsql/pdo.php => src/libs/database/pdo.php
  third-party/ezsql/postgresql.php => src/libs/database/postgresql.php
  third-party/ezsql/sqlite.php => src/libs/database/sqlite.php
modified:
  src/libs/database/Makefile.am


--
lp:aikiframework
https://code.launchpad.net/~aikiframework-devel/aikiframework/trunk

Your team Aiki Framework Developers is subscribed to branch lp:aikiframework.
To unsubscribe from this branch go to 
https://code.launchpad.net/~aikiframework-devel/aikiframework/trunk/+edit-subscription
=== modified file 'src/libs/database/Makefile.am'
--- src/libs/database/Makefile.am	2011-11-08 13:42:45 +0000
+++ src/libs/database/Makefile.am	2011-11-08 14:04:49 +0000
@@ -18,13 +18,14 @@
 # Written by Steven Garcia
 
 # The source files
-aiki_src_files =
-
-# Subdirectories to be built
-SUBDIRS =
-
-# Subdirectories to distribute
-DIST_SUBDIRS =
+aiki_src_files = \
+	index.php \
+	mssql.php \
+	mysql.php \
+	oracle8_9.php \
+	pdo.php \
+	postgresql.php \
+	sqlite.php
 
 # Additional files to distribute
 EXTRA_DIST = \

=== renamed file 'third-party/ezsql/index.php' => 'src/libs/database/index.php'
=== renamed file 'third-party/ezsql/mssql.php' => 'src/libs/database/mssql.php'
=== renamed file 'third-party/ezsql/mysql.php' => 'src/libs/database/mysql.php'
=== renamed file 'third-party/ezsql/oracle8_9.php' => 'src/libs/database/oracle8_9.php'
=== renamed file 'third-party/ezsql/pdo.php' => 'src/libs/database/pdo.php'
=== renamed file 'third-party/ezsql/postgresql.php' => 'src/libs/database/postgresql.php'
=== renamed file 'third-party/ezsql/sqlite.php' => 'src/libs/database/sqlite.php'
=== removed directory 'third-party/ezsql'
=== removed file 'third-party/ezsql/Makefile.am'
--- third-party/ezsql/Makefile.am	2011-11-08 13:42:45 +0000
+++ third-party/ezsql/Makefile.am	1970-01-01 00:00:00 +0000
@@ -1,92 +0,0 @@
-# Process this file with automake to produce Makefile.in    -*-Makefile-*-
-
-# Copyright (c) 2010-2011 Aiki Lab Pte Ltd
-
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Affero General Public License as
-# published by the Free Software Foundation, either version 3 of the
-# License, or (at your option) any later version.
-
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU Affero General Public License for more details.
-
-# You should have received a copy of the GNU Affero General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
-
-# Written by Steven Garcia
-
-# The source files
-aiki_src_files = \
-	index.php \
-	mssql.php \
-	mysql.php \
-	oracle8_9.php \
-	pdo.php \
-	postgresql.php \
-	sqlite.php
-
-# Subdirectories to be built
-SUBDIRS =
-
-# Subdirectories to distribute
-DIST_SUBDIRS =
-
-# Additional files to distribute
-EXTRA_DIST = \
-	$(aiki_src_files)
-
-# The suffix of the path to put the files
-suffix_dir = libs/database
-thirdlibdir = third-party/ezsql
-
-# The directory to put the files
-aiki_srcdir = \
-	$(pkgdatadir)/$(suffix_dir)
-
-# The source data
-aiki_src_DATA = \
-	$(aiki_src_files)
-
-# the default make target
-all :
-# attempt to make the target directory
-# copy the source to the build source and remove some extras
-	@if $(TEST) -d $(abs_top_srcdir)/_build; then \
-		$(MKDIR) -p $(abs_top_srcdir)/_build/src/$(suffix_dir); \
-		$(CHMOD) 0755 $(abs_top_srcdir)/_build/src/$(suffix_dir); \
-    	for f in $(aiki_src_files); do \
-        	$(CP) -a $(abs_top_srcdir)/$(thirdlibdir)/$$f \
-        	$(abs_top_srcdir)/_build/src/$(suffix_dir)/; \
-    	done; \
-    else \
-    	if $(TEST) -d $(abs_top_srcdir)/build; then \
-    		$(MKDIR) -p $(abs_top_srcdir)/build/src/$(suffix_dir); \
-    		$(CHMOD) 0755 $(abs_top_srcdir)/build/src/$(suffix_dir); \
-        	for f in $(aiki_src_files); do \
-            	$(CP) -a $(abs_top_srcdir)/$(thirdlibdir)/$$f \
-            	$(abs_top_srcdir)/build/src/$(suffix_dir)/; \
-        	done; \
-    	fi; \
-	fi
-
-# the distribution make target
-dist :
-	@if $(TEST) -d $(abs_top_srcdir)/_build; then \
-		$(MKDIR) -p $(abs_top_srcdir)/_build/$(PACKAGE)-$(VERSION)/src/$(suffix_dir); \
-		$(CHMOD) 0755 $(abs_top_srcdir)/_build/$(PACKAGE)-$(VERSION)/src/$(suffix_dir); \
-    	for f in $(aiki_src_files); do \
-        	$(CP) -a $(abs_top_srcdir)/$(thirdlibdir)/$$f \
-        	$(abs_top_srcdir)/_build/$(PACKAGE)-$(VERSION)/src/$(suffix_dir)/; \
-    	done; \
-    else \
-    	if $(TEST) -d $(abs_top_srcdir)/build; then \
-    		$(MKDIR) -p $(abs_top_srcdir)/build/$(PACKAGE)-$(VERSION)/src/$(suffix_dir); \
-    		$(CHMOD) 0755 $(abs_top_srcdir)/build/$(PACKAGE)-$(VERSION)/src/$(suffix_dir); \
-        	for f in $(aiki_src_files); do \
-            	$(CP) -a $(abs_top_srcdir)/$(thirdlibdir)/$$f \
-            	$(abs_top_srcdir)/build/$(PACKAGE)-$(VERSION)/src/$(suffix_dir)/; \
-        	done; \
-    	fi; \
-	fi

_______________________________________________
Mailing list: https://launchpad.net/~aikiframework-devel
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~aikiframework-devel
More help   : https://help.launchpad.net/ListHelp

Reply via email to