From owner-svn-ports-head@FreeBSD.ORG Wed Sep 25 15:50:41 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id A645D4A3; Wed, 25 Sep 2013 15:50:41 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 935FD2EF8; Wed, 25 Sep 2013 15:50:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8PFofhY065297; Wed, 25 Sep 2013 15:50:41 GMT (envelope-from vanilla@svn.freebsd.org) Received: (from vanilla@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8PFoepm065274; Wed, 25 Sep 2013 15:50:40 GMT (envelope-from vanilla@svn.freebsd.org) Message-Id: <201309251550.r8PFoepm065274@svn.freebsd.org> From: "Vanilla I. Shu" Date: Wed, 25 Sep 2013 15:50:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r328297 - in head/arabic/libitl: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Sep 2013 15:50:41 -0000 Author: vanilla Date: Wed Sep 25 15:50:40 2013 New Revision: 328297 URL: http://svnweb.freebsd.org/changeset/ports/328297 Log: Support stage. Added: head/arabic/libitl/files/ head/arabic/libitl/files/patch-Makefile.in (contents, props changed) head/arabic/libitl/files/patch-hijri__Makefile (contents, props changed) head/arabic/libitl/files/patch-prayertime__Makefile (contents, props changed) Modified: head/arabic/libitl/Makefile head/arabic/libitl/pkg-plist Modified: head/arabic/libitl/Makefile ============================================================================== --- head/arabic/libitl/Makefile Wed Sep 25 14:33:23 2013 (r328296) +++ head/arabic/libitl/Makefile Wed Sep 25 15:50:40 2013 (r328297) @@ -9,7 +9,6 @@ MASTER_SITES= SF/arabeyes/ITL%20Library% MAINTAINER= ports@FreeBSD.org COMMENT= API abstraction to common Islamic calculations -NO_STAGE= yes GNU_CONFIGURE= yes USE_LDCONFIG= ${PREFIX}/lib/itl MAKE_JOBS_UNSAFE= yes Added: head/arabic/libitl/files/patch-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/arabic/libitl/files/patch-Makefile.in Wed Sep 25 15:50:40 2013 (r328297) @@ -0,0 +1,24 @@ +--- Makefile.in.orig 2013-09-25 23:27:38.000000000 +0800 ++++ Makefile.in 2013-09-25 23:28:25.000000000 +0800 +@@ -83,15 +83,15 @@ debinstall: components + + install: build/libitl.so build/libitl.a + @echo "==> Installing libitl library..." +- test -d $(PREFIX)/lib/itl \ +- || install -d $(PREFIX)/lib/itl \ ++ test -d $(DESTDIR)$(PREFIX)/lib/itl \ ++ || install -d $(DESTDIR)$(PREFIX)/lib/itl \ + || exit 1; +- install build/$(FULLNAME) $(PREFIX)/lib/itl +- install build/libitl.a $(PREFIX)/lib/itl ++ install build/$(FULLNAME) $(DESTDIR)$(PREFIX)/lib/itl ++ install build/libitl.a $(DESTDIR)$(PREFIX)/lib/itl + # Using cp -P as cp --no-dereference is not POSIX + # or use --preserve=link instead. +- cp -P build/$(SONAME) $(PREFIX)/lib/itl +- cp -P build/libitl.so $(PREFIX)/lib/itl ++ cp -P build/$(SONAME) $(DESTDIR)$(PREFIX)/lib/itl ++ cp -P build/libitl.so $(DESTDIR)$(PREFIX)/lib/itl + @echo "==> Installing ITL components..." + for i in $(COMPONENTS); do \ + $(MAKE) -C $$i install || exit 1; \ Added: head/arabic/libitl/files/patch-hijri__Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/arabic/libitl/files/patch-hijri__Makefile Wed Sep 25 15:50:40 2013 (r328297) @@ -0,0 +1,16 @@ +--- hijri/Makefile.orig 2013-09-25 23:36:27.000000000 +0800 ++++ hijri/Makefile 2013-09-25 23:36:43.000000000 +0800 +@@ -10,10 +10,10 @@ demo_hijri: + + install: all + @echo "==> Installing hijri component..." +- test -d $(PREFIX)/include/itl \ +- || install -d $(PREFIX)/include/itl \ ++ test -d $(DESTDIR)$(PREFIX)/include/itl \ ++ || install -d $(DESTDIR)$(PREFIX)/include/itl \ + || exit 1; +- install src/hijri.h $(PREFIX)/include/itl ++ install src/hijri.h $(DESTDIR)$(PREFIX)/include/itl + + uninstall: + @echo "==> Uninstalling hijri component..." Added: head/arabic/libitl/files/patch-prayertime__Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/arabic/libitl/files/patch-prayertime__Makefile Wed Sep 25 15:50:40 2013 (r328297) @@ -0,0 +1,16 @@ +--- prayertime/Makefile.orig 2013-09-25 23:35:59.000000000 +0800 ++++ prayertime/Makefile 2013-09-25 23:36:20.000000000 +0800 +@@ -10,10 +10,10 @@ demo_prayer: + + install: all + @echo "==> Installing prayertime component..." +- test -d $(PREFIX)/include/itl \ +- || install $(PREFIX)/include/itl \ ++ test -d $(DESTDIR)$(PREFIX)/include/itl \ ++ || install $(DESTDIR)$(PREFIX)/include/itl \ + || exit 1; +- install src/prayer.h $(PREFIX)/include/itl ++ install src/prayer.h $(DESTDIR)$(PREFIX)/include/itl + + uninstall: + @echo "==> Uninstalling prayertime component..." Modified: head/arabic/libitl/pkg-plist ============================================================================== --- head/arabic/libitl/pkg-plist Wed Sep 25 14:33:23 2013 (r328296) +++ head/arabic/libitl/pkg-plist Wed Sep 25 15:50:40 2013 (r328297) @@ -1,8 +1,8 @@ -lib/itl/libitl.so.0.0.7 -lib/itl/libitl.so.0 -lib/itl/libitl.so -lib/itl/libitl.a -include/itl/prayer.h include/itl/hijri.h +include/itl/prayer.h +lib/itl/libitl.a +lib/itl/libitl.so +lib/itl/libitl.so.0 +lib/itl/libitl.so.0.0.7 @dirrm lib/itl @dirrm include/itl