r65738 - in /trunk/libcgi-application-plugin-authentication-perl/debian: changelog components/config
periapt-guest at users.alioth.debian.org
periapt-guest at users.alioth.debian.org
Sat Dec 11 13:34:46 UTC 2010
Author: periapt-guest
Date: Sat Dec 11 13:34:38 2010
New Revision: 65738
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=65738
Log:
adding custom config build stage
Added:
trunk/libcgi-application-plugin-authentication-perl/debian/components/config (with props)
Modified:
trunk/libcgi-application-plugin-authentication-perl/debian/changelog
Modified: trunk/libcgi-application-plugin-authentication-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcgi-application-plugin-authentication-perl/debian/changelog?rev=65738&op=diff
==============================================================================
--- trunk/libcgi-application-plugin-authentication-perl/debian/changelog (original)
+++ trunk/libcgi-application-plugin-authentication-perl/debian/changelog Sat Dec 11 13:34:38 2010
@@ -1,4 +1,6 @@
libcgi-application-plugin-authentication-perl (0.19-1) UNRELEASED; urgency=low
+
+ WAITS-FOR: pkg-components (0.2)
* Initial Release. (Closes: #605530)
Added: trunk/libcgi-application-plugin-authentication-perl/debian/components/config
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcgi-application-plugin-authentication-perl/debian/components/config?rev=65738&op=file
==============================================================================
--- trunk/libcgi-application-plugin-authentication-perl/debian/components/config (added)
+++ trunk/libcgi-application-plugin-authentication-perl/debian/components/config Sat Dec 11 13:34:38 2010
@@ -1,0 +1,38 @@
+#!/bin/sh
+
+TDIR=COMPONENTS/${DH_COMPONENT}
+PERL5LIB="$DESTDIR/usr/share/perl5/"
+
+if [ -z ${PACKAGE} ]
+then
+ echo PACKAGE not set
+ exit 1
+fi
+PERL=$(which perl)
+
+if [ -z ${DH_COMPONENT} ]
+then
+ echo DH_COMPONENT not set
+ exit 1
+fi
+
+if [ ! -d ${TDIR} ]
+then
+ echo ${TDIR} not a directory
+ exit 1
+fi
+
+cd ${TDIR}
+
+if dh_auto_configure -D ${TDIR}
+then
+ EXIT_STATUS=0
+else
+ EXIT_STATUS=1
+fi
+
+cd ../../
+
+exit $EXIT_STATUS
+
+
Propchange: trunk/libcgi-application-plugin-authentication-perl/debian/components/config
------------------------------------------------------------------------------
svn:executable = *
More information about the Pkg-perl-cvs-commits
mailing list