[Midnightbsd-cvs] mports: bsd.mport.mk: add is_interactive to the yaml description.

ctriv at midnightbsd.org ctriv at midnightbsd.org
Wed Oct 31 15:24:28 EDT 2007


Log Message:
-----------
add is_interactive to the yaml description.

Modified Files:
--------------
    mports/Mk:
        bsd.mport.mk (r1.70 -> r1.71)

-------------- next part --------------
Index: bsd.mport.mk
===================================================================
RCS file: /home/cvs/mports/Mk/bsd.mport.mk,v
retrieving revision 1.70
retrieving revision 1.71
diff -LMk/bsd.mport.mk -LMk/bsd.mport.mk -u -r1.70 -r1.71
--- Mk/bsd.mport.mk
+++ Mk/bsd.mport.mk
@@ -5187,12 +5187,13 @@
 	@perl -MYAML -e ' \
 		sub uniq (@) {  my %saw;  return grep(!$$saw{$$_}++, @_); } \
 		my %port = ( \
-			pkgname     => q(${PKGSUBNAME}), \
-			name        => q(${PKGORIGIN}), \
-			version     => q(${PKGVERSION}), \
-			description => qq(${COMMENT:S/'/\x27/g}), \
-			license     => q(${LICENSE}), \
-			categories  => [qw(${CATEGORIES})], \
+			pkgname        => q(${PKGSUBNAME}), \
+			name           => q(${PKGORIGIN}), \
+			version        => q(${PKGVERSION}), \
+			description    => qq(${COMMENT:S/'/\x27/g}), \
+			license        => q(${LICENSE}), \
+			categories     => [qw(${CATEGORIES})], \
+			is_interactive => q(${IS_INTERACTIVE}) ? 1 : 0, \
 		); \
 		$$port{license} ||= undef; \
 		my %depends; \


More information about the Midnightbsd-cvs mailing list